diff --git a/hapi-deployable-pom/pom.xml b/hapi-deployable-pom/pom.xml index e7b4678dcaf..e70a9982ec0 100644 --- a/hapi-deployable-pom/pom.xml +++ b/hapi-deployable-pom/pom.xml @@ -4,7 +4,7 @@ ca.uhn.hapi.fhir hapi-fhir - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../pom.xml diff --git a/hapi-fhir-android/pom.xml b/hapi-fhir-android/pom.xml index 5080a741de5..fcc0073c6c9 100644 --- a/hapi-fhir-android/pom.xml +++ b/hapi-fhir-android/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-base/pom.xml b/hapi-fhir-base/pom.xml index cf2f5a9d5c8..4250734be2e 100644 --- a/hapi-fhir-base/pom.xml +++ b/hapi-fhir-base/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/ModelScanner.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/ModelScanner.java index a03d8d39414..e691c080d1c 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/ModelScanner.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/ModelScanner.java @@ -73,7 +73,6 @@ import static org.apache.commons.lang3.StringUtils.isBlank; class ModelScanner { private static final org.slf4j.Logger ourLog = org.slf4j.LoggerFactory.getLogger(ModelScanner.class); - private Map, BaseRuntimeElementDefinition> myClassToElementDefinitions = new HashMap<>(); private FhirContext myContext; private Map myIdToResourceDefinition = new HashMap<>(); @@ -90,6 +89,7 @@ class ModelScanner { @Nonnull Collection> theResourceTypes) throws ConfigurationException { myContext = theContext; myVersion = theVersion; + Set> toScan = new HashSet<>(theResourceTypes); init(theExistingDefinitions, toScan); } @@ -405,8 +405,8 @@ class ModelScanner { List components = null; if (paramType == RestSearchParameterTypeEnum.COMPOSITE) { components = new ArrayList<>(); - for (String next : searchParam.compositeOf()) { - String ref = "http://hl7.org/fhir/SearchParameter/" + theResourceDef.getName().toLowerCase() + "-" + next; + for (String name : searchParam.compositeOf()) { + String ref = toCanonicalSearchParameterUri(theResourceDef, name); components.add(new RuntimeSearchParam.Component(null, ref)); } } @@ -414,7 +414,8 @@ class ModelScanner { Collection base = Collections.singletonList(theResourceDef.getName()); String url = null; if (theResourceDef.isStandardType()) { - url = "http://hl7.org/fhir/SearchParameter/" + theResourceDef.getName().toLowerCase() + "-" + searchParam.name(); + String name = searchParam.name(); + url = toCanonicalSearchParameterUri(theResourceDef, name); } RuntimeSearchParam param = new RuntimeSearchParam(null, url, searchParam.name(), searchParam.description(), searchParam.path(), paramType, providesMembershipInCompartments, toTargetList(searchParam.target()), RuntimeSearchParamStatusEnum.ACTIVE, null, components, base); theResourceDef.addSearchParam(param); @@ -424,6 +425,10 @@ class ModelScanner { } + private String toCanonicalSearchParameterUri(RuntimeResourceDefinition theResourceDef, String theName) { + return "http://hl7.org/fhir/SearchParameter/" + theResourceDef.getName() + "-" + theName; + } + private Set toTargetList(Class[] theTarget) { HashSet retVal = new HashSet<>(); diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeSearchParam.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeSearchParam.java index 746deccd120..d1cb595f7d4 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeSearchParam.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/context/RuntimeSearchParam.java @@ -233,18 +233,7 @@ public class RuntimeSearchParam { } public List getPathsSplit() { - String path = getPath(); - if (path.indexOf('|') == -1) { - return Collections.singletonList(path); - } - - List retVal = new ArrayList<>(); - StringTokenizer tok = new StringTokenizer(path, "|"); - while (tok.hasMoreElements()) { - String nextPath = tok.nextToken().trim(); - retVal.add(nextPath.trim()); - } - return retVal; + return getPathsSplitForResourceType(null); } /** @@ -266,6 +255,41 @@ public class RuntimeSearchParam { return myPhoneticEncoder.encode(theString); } + public List getPathsSplitForResourceType(@Nullable String theResourceName) { + String path = getPath(); + if (path.indexOf('|') == -1) { + if (theResourceName != null && !pathMatchesResourceType(theResourceName, path)) { + return Collections.emptyList(); + } + return Collections.singletonList(path); + } + + List retVal = new ArrayList<>(); + StringTokenizer tok = new StringTokenizer(path, "|"); + while (tok.hasMoreElements()) { + String nextPath = tok.nextToken().trim(); + if (theResourceName != null && !pathMatchesResourceType(theResourceName, nextPath)) { + continue; + } + retVal.add(nextPath.trim()); + } + return retVal; + } + + private boolean pathMatchesResourceType(String theResourceName, String thePath) { + if (thePath.startsWith(theResourceName + ".")) { + return true; + } + if (thePath.startsWith("Resouce.") || thePath.startsWith("DomainResource.")) { + return true; + } + if (Character.isLowerCase(thePath.charAt(0))) { + return true; + } + + return false; + } + public enum RuntimeSearchParamStatusEnum { ACTIVE, DRAFT, diff --git a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IAnyResource.java b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IAnyResource.java index 105548d3d99..9fcacdc4ebd 100644 --- a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IAnyResource.java +++ b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IAnyResource.java @@ -28,13 +28,6 @@ import ca.uhn.fhir.rest.gclient.TokenClientParam; */ public interface IAnyResource extends IBaseResource { - /** - * Search parameter constant for _language - */ - @SearchParamDefinition(name="_language", path="", description="The language of the resource", type="string" ) - String SP_RES_LANGUAGE = "_language"; - - /** * Search parameter constant for _id */ diff --git a/hapi-fhir-bom/pom.xml b/hapi-fhir-bom/pom.xml index 5b83473d8bd..8fe5cf9a5b4 100644 --- a/hapi-fhir-bom/pom.xml +++ b/hapi-fhir-bom/pom.xml @@ -3,14 +3,14 @@ 4.0.0 ca.uhn.hapi.fhir hapi-fhir-bom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT pom HAPI FHIR BOM ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-cli/hapi-fhir-cli-api/pom.xml b/hapi-fhir-cli/hapi-fhir-cli-api/pom.xml index e75639496f0..c03744e91ea 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-api/pom.xml +++ b/hapi-fhir-cli/hapi-fhir-cli-api/pom.xml @@ -4,7 +4,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-cli/hapi-fhir-cli-app/pom.xml b/hapi-fhir-cli/hapi-fhir-cli-app/pom.xml index da95c8249b7..5e11c79536a 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-app/pom.xml +++ b/hapi-fhir-cli/hapi-fhir-cli-app/pom.xml @@ -6,7 +6,7 @@ ca.uhn.hapi.fhir hapi-fhir-cli - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../pom.xml diff --git a/hapi-fhir-cli/hapi-fhir-cli-jpaserver/pom.xml b/hapi-fhir-cli/hapi-fhir-cli-jpaserver/pom.xml index 39a65d2c304..a53adf1d7b4 100644 --- a/hapi-fhir-cli/hapi-fhir-cli-jpaserver/pom.xml +++ b/hapi-fhir-cli/hapi-fhir-cli-jpaserver/pom.xml @@ -6,7 +6,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../../hapi-deployable-pom diff --git a/hapi-fhir-cli/pom.xml b/hapi-fhir-cli/pom.xml index 918a356bcce..1944f4105b2 100644 --- a/hapi-fhir-cli/pom.xml +++ b/hapi-fhir-cli/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-fhir - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../pom.xml diff --git a/hapi-fhir-client-okhttp/pom.xml b/hapi-fhir-client-okhttp/pom.xml index fc1ff968610..b12089d304e 100644 --- a/hapi-fhir-client-okhttp/pom.xml +++ b/hapi-fhir-client-okhttp/pom.xml @@ -4,7 +4,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-client/pom.xml b/hapi-fhir-client/pom.xml index 22095a8b31e..50382d3feb9 100644 --- a/hapi-fhir-client/pom.xml +++ b/hapi-fhir-client/pom.xml @@ -4,7 +4,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-converter/pom.xml b/hapi-fhir-converter/pom.xml index 3edd8134ceb..ca9ac09d67d 100644 --- a/hapi-fhir-converter/pom.xml +++ b/hapi-fhir-converter/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-dist/pom.xml b/hapi-fhir-dist/pom.xml index 507cc110724..7bd546d13d0 100644 --- a/hapi-fhir-dist/pom.xml +++ b/hapi-fhir-dist/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-fhir - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../pom.xml diff --git a/hapi-fhir-docs/pom.xml b/hapi-fhir-docs/pom.xml index 9203c8fa4d2..5f99f8bd00b 100644 --- a/hapi-fhir-docs/pom.xml +++ b/hapi-fhir-docs/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/5_6_0/2790-correct-searchparameter-urls-in-jps.yaml b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/5_6_0/2790-correct-searchparameter-urls-in-jps.yaml new file mode 100644 index 00000000000..66a1517ac15 --- /dev/null +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/5_6_0/2790-correct-searchparameter-urls-in-jps.yaml @@ -0,0 +1,5 @@ +--- +type: fix +issue: 2790 +title: "The SearchParameter canonical URLs exported by the JPA server have been adjusted to match the URLs + specified in the FHIR specification." diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/5_6_0/2790-remove-language-from-jpa.yaml b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/5_6_0/2790-remove-language-from-jpa.yaml new file mode 100644 index 00000000000..d6ddb530e75 --- /dev/null +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/5_6_0/2790-remove-language-from-jpa.yaml @@ -0,0 +1,7 @@ +--- +type: change +issue: 2790 +title: "Support for the `_language` search parameter has been dropped from the JPA server. This search parameter + was specified in FHIR DSTU1 but was dropped in later versions. It is rarely used in practice and imposes + an indexing cost, so it has now been removed. A custom search parameter may be used in order to achieve + the same functionality if needed." diff --git a/hapi-fhir-jacoco/pom.xml b/hapi-fhir-jacoco/pom.xml index 8a4adc9ac2a..e9b53373037 100644 --- a/hapi-fhir-jacoco/pom.xml +++ b/hapi-fhir-jacoco/pom.xml @@ -11,7 +11,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-jaxrsserver-base/pom.xml b/hapi-fhir-jaxrsserver-base/pom.xml index 9679ed049c5..2887333a9c8 100644 --- a/hapi-fhir-jaxrsserver-base/pom.xml +++ b/hapi-fhir-jaxrsserver-base/pom.xml @@ -4,7 +4,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-jpaserver-api/pom.xml b/hapi-fhir-jpaserver-api/pom.xml index 4da1a0f45ee..4f709865c14 100644 --- a/hapi-fhir-jpaserver-api/pom.xml +++ b/hapi-fhir-jpaserver-api/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-jpaserver-base/pom.xml b/hapi-fhir-jpaserver-base/pom.xml index de3950d1860..1c6c860a492 100644 --- a/hapi-fhir-jpaserver-base/pom.xml +++ b/hapi-fhir-jpaserver-base/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseHapiFhirDao.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseHapiFhirDao.java index 4abd1899274..d612b88fe50 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseHapiFhirDao.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/BaseHapiFhirDao.java @@ -1228,12 +1228,6 @@ public abstract class BaseHapiFhirDao extends BaseStora } entity.setUpdated(theTransactionDetails.getTransactionDate()); - if (theResource instanceof IResource) { - entity.setLanguage(((IResource) theResource).getLanguage().getValue()); - } else { - entity.setLanguage(((IAnyResource) theResource).getLanguageElement().getValue()); - } - newParams.populateResourceTableSearchParamsPresentFlags(entity); entity.setIndexStatus(INDEX_STATUS_INDEXED); } diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/DaoFailureUtil.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/DaoFailureUtil.java index 03e389ce6f6..ad27290f96c 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/DaoFailureUtil.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/DaoFailureUtil.java @@ -1,5 +1,25 @@ package ca.uhn.fhir.jpa.dao; +/*- + * #%L + * HAPI FHIR JPA Server + * %% + * Copyright (C) 2014 - 2021 Smile CDR, Inc. + * %% + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * #L% + */ + import org.apache.commons.lang3.StringUtils; /** diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderReference.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderReference.java index 1eba216a54c..62ebba77afc 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderReference.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderReference.java @@ -559,11 +559,6 @@ class PredicateBuilderReference extends BasePredicateBuilder { myPredicateBuilder.addPredicateResourceId(theAndOrParams, theResourceName, theRequestPartitionId); break; - case IAnyResource.SP_RES_LANGUAGE: - addPredicateLanguage(theAndOrParams, - null); - break; - case Constants.PARAM_HAS: addPredicateHas(theResourceName, theAndOrParams, theRequest, theRequestPartitionId); break; @@ -733,9 +728,6 @@ class PredicateBuilderReference extends BasePredicateBuilder { null, theFilter.getValue()); return myPredicateBuilder.addPredicateResourceId(Collections.singletonList(Collections.singletonList(param)), myResourceName, theFilter.getOperation(), theRequestPartitionId); - } else if (theFilter.getParamPath().getName().equals(IAnyResource.SP_RES_LANGUAGE)) { - return addPredicateLanguage(Collections.singletonList(Collections.singletonList(new StringParam(theFilter.getValue()))), - theFilter.getOperation()); } RuntimeSearchParam searchParam = mySearchParamRegistry.getActiveSearchParam(theResourceName, theFilter.getParamPath().getName()); @@ -828,45 +820,6 @@ class PredicateBuilderReference extends BasePredicateBuilder { return qp; } - private Predicate addPredicateLanguage(List> theList, - SearchFilterParser.CompareOperation operation) { - for (List nextList : theList) { - - Set values = new HashSet<>(); - for (IQueryParameterType next : nextList) { - if (next instanceof StringParam) { - String nextValue = ((StringParam) next).getValue(); - if (isBlank(nextValue)) { - continue; - } - values.add(nextValue); - } else { - throw new InternalErrorException("Language parameter must be of type " + StringParam.class.getCanonicalName() + " - Got " + next.getClass().getCanonicalName()); - } - } - - if (values.isEmpty()) { - continue; - } - - Predicate predicate; - if ((operation == null) || - (operation == SearchFilterParser.CompareOperation.eq)) { - predicate = myQueryStack.get("myLanguage").as(String.class).in(values); - } else if (operation == SearchFilterParser.CompareOperation.ne) { - predicate = myQueryStack.get("myLanguage").as(String.class).in(values).not(); - } else { - throw new InvalidRequestException("Unsupported operator specified in language query, only \"eq\" and \"ne\" are supported"); - } - myQueryStack.addPredicate(predicate); - if (operation != null) { - return predicate; - } - } - - return null; - } - private void addPredicateSource(List> theAndOrParams, RequestDetails theRequest) { for (List nextAnd : theAndOrParams) { addPredicateSource(nextAnd, SearchFilterParser.CompareOperation.eq, theRequest); diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderToken.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderToken.java index bc5cccb736c..c98eb045a47 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderToken.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/predicate/PredicateBuilderToken.java @@ -261,6 +261,9 @@ class PredicateBuilderToken extends BasePredicateBuilder implements IPredicateBu if (theSearchParam != null) { Set valueSetUris = Sets.newHashSet(); for (String nextPath : theSearchParam.getPathsSplit()) { + if (!nextPath.startsWith(myResourceType + ".")) { + continue; + } BaseRuntimeChildDefinition def = myContext.newTerser().getDefinition(myResourceType, nextPath); if (def instanceof BaseRuntimeDeclaredChildDefinition) { String valueSet = ((BaseRuntimeDeclaredChildDefinition) def).getBindingValueSet(); diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoSearchParameterR4.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoSearchParameterR4.java index e6ef352724c..bf9277feb12 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoSearchParameterR4.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoSearchParameterR4.java @@ -92,8 +92,12 @@ public class FhirResourceDaoSearchParameterR4 extends BaseHapiFhirResourceDao nextBaseType : theResource.getBase()) { String nextBase = nextBaseType.getValueAsString(); RuntimeSearchParam existingSearchParam = theSearchParamRegistry.getActiveSearchParam(nextBase, theResource.getCode()); - if (existingSearchParam != null && existingSearchParam.getId() == null) { - throw new UnprocessableEntityException("Can not override built-in search parameter " + nextBase + ":" + theResource.getCode() + " because overriding is disabled on this server"); + if (existingSearchParam != null) { + boolean isBuiltIn = existingSearchParam.getId() == null; + isBuiltIn |= existingSearchParam.getUri().startsWith("http://hl7.org/fhir/SearchParameter/"); + if (isBuiltIn) { + throw new UnprocessableEntityException("Can not override built-in search parameter " + nextBase + ":" + theResource.getCode() + " because overriding is disabled on this server"); + } } } } diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/QueryStack.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/QueryStack.java index 03385f34fb7..82bf3d886fe 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/QueryStack.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/QueryStack.java @@ -434,9 +434,6 @@ public class QueryStack { param.setValueAsQueryToken(null, null, null, theFilter.getValue()); return theQueryStack3.createPredicateResourceId(null, Collections.singletonList(Collections.singletonList(param)), theResourceName, theFilter.getOperation(), theRequestPartitionId); } - case IAnyResource.SP_RES_LANGUAGE: { - return theQueryStack3.createPredicateLanguage(Collections.singletonList(Collections.singletonList(new StringParam(theFilter.getValue()))), theFilter.getOperation()); - } case Constants.PARAM_SOURCE: { TokenParam param = new TokenParam(); param.setValueAsQueryToken(null, null, null, theFilter.getValue()); @@ -579,44 +576,6 @@ public class QueryStack { return toAndPredicate(andPredicates); } - public Condition createPredicateLanguage(List> theList, Object theOperation) { - - ResourceTablePredicateBuilder rootTable = mySqlBuilder.getOrCreateResourceTablePredicateBuilder(); - - List predicates = new ArrayList<>(); - for (List nextList : theList) { - - Set values = new HashSet<>(); - for (IQueryParameterType next : nextList) { - if (next instanceof StringParam) { - String nextValue = ((StringParam) next).getValue(); - if (isBlank(nextValue)) { - continue; - } - values.add(nextValue); - } else { - throw new InternalErrorException("Language parameter must be of type " + StringParam.class.getCanonicalName() + " - Got " + next.getClass().getCanonicalName()); - } - } - - if (values.isEmpty()) { - continue; - } - - if ((theOperation == null) || - (theOperation == SearchFilterParser.CompareOperation.eq)) { - predicates.add(rootTable.createLanguagePredicate(values, false)); - } else if (theOperation == SearchFilterParser.CompareOperation.ne) { - predicates.add(rootTable.createLanguagePredicate(values, true)); - } else { - throw new InvalidRequestException("Unsupported operator specified in language query, only \"eq\" and \"ne\" are supported"); - } - - } - - return toAndPredicate(predicates); - } - public Condition createPredicateNumber(@Nullable DbColumn theSourceJoinColumn, String theResourceName, String theSpnamePrefix, RuntimeSearchParam theSearchParam, List theList, SearchFilterParser.CompareOperation theOperation, RequestPartitionId theRequestPartitionId) { @@ -1099,9 +1058,6 @@ public class QueryStack { case IAnyResource.SP_RES_ID: return createPredicateResourceId(theSourceJoinColumn, theAndOrParams, theResourceName, null, theRequestPartitionId); - case IAnyResource.SP_RES_LANGUAGE: - return createPredicateLanguage(theAndOrParams, null); - case Constants.PARAM_HAS: return createPredicateHas(theSourceJoinColumn, theResourceName, theAndOrParams, theRequest, theRequestPartitionId); diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/TokenPredicateBuilder.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/TokenPredicateBuilder.java index 87f8a02fcd6..704608e9784 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/TokenPredicateBuilder.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/search/builder/predicate/TokenPredicateBuilder.java @@ -222,7 +222,7 @@ public class TokenPredicateBuilder extends BaseSearchParamPredicateBuilder { if (retVal == null) { if (theSearchParam != null) { Set valueSetUris = Sets.newHashSet(); - for (String nextPath : theSearchParam.getPathsSplit()) { + for (String nextPath : theSearchParam.getPathsSplitForResourceType(getResourceType())) { Class type = getFhirContext().getResourceDefinition(getResourceType()).getImplementingClass(); BaseRuntimeChildDefinition def = getFhirContext().newTerser().getDefinition(type, nextPath); if (def instanceof BaseRuntimeDeclaredChildDefinition) { diff --git a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/dstu2/FhirResourceDaoDstu2SearchCustomSearchParamTest.java b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/dstu2/FhirResourceDaoDstu2SearchCustomSearchParamTest.java index 3d356be0e42..0047445b92c 100644 --- a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/dstu2/FhirResourceDaoDstu2SearchCustomSearchParamTest.java +++ b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/dstu2/FhirResourceDaoDstu2SearchCustomSearchParamTest.java @@ -1033,7 +1033,7 @@ public class FhirResourceDaoDstu2SearchCustomSearchParamTest extends BaseJpaDstu myPatientDao.search(map).size(); fail(); } catch (InvalidRequestException e) { - assertEquals("Unknown search parameter \"foo\" for resource type \"Patient\". Valid search parameters for this search are: [_id, _language, _lastUpdated, active, address, address-city, address-country, address-postalcode, address-state, address-use, animal-breed, animal-species, birthdate, careprovider, deathdate, deceased, email, family, gender, given, identifier, language, link, name, organization, phone, phonetic, telecom]", e.getMessage()); + assertEquals("Unknown search parameter \"foo\" for resource type \"Patient\". Valid search parameters for this search are: [_id, _lastUpdated, active, address, address-city, address-country, address-postalcode, address-state, address-use, animal-breed, animal-species, birthdate, careprovider, deathdate, deceased, email, family, gender, given, identifier, language, link, name, organization, phone, phonetic, telecom]", e.getMessage()); } } @@ -1070,7 +1070,7 @@ public class FhirResourceDaoDstu2SearchCustomSearchParamTest extends BaseJpaDstu myPatientDao.search(map).size(); fail(); } catch (InvalidRequestException e) { - assertEquals("Unknown search parameter \"foo\" for resource type \"Patient\". Valid search parameters for this search are: [_id, _language, _lastUpdated, active, address, address-city, address-country, address-postalcode, address-state, address-use, animal-breed, animal-species, birthdate, careprovider, deathdate, deceased, email, family, gender, given, identifier, language, link, name, organization, phone, phonetic, telecom]", e.getMessage()); + assertEquals("Unknown search parameter \"foo\" for resource type \"Patient\". Valid search parameters for this search are: [_id, _lastUpdated, active, address, address-city, address-country, address-postalcode, address-state, address-use, animal-breed, animal-species, birthdate, careprovider, deathdate, deceased, email, family, gender, given, identifier, language, link, name, organization, phone, phonetic, telecom]", e.getMessage()); } // Try with normal gender SP diff --git a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/dstu2/FhirResourceDaoDstu2SearchNoFtTest.java b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/dstu2/FhirResourceDaoDstu2SearchNoFtTest.java index c3de91cb14f..a1bfae57c0a 100644 --- a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/dstu2/FhirResourceDaoDstu2SearchNoFtTest.java +++ b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/dstu2/FhirResourceDaoDstu2SearchNoFtTest.java @@ -727,9 +727,6 @@ public class FhirResourceDaoDstu2SearchNoFtTest extends BaseJpaDstu2Test { params.add("_id", new StringDt("TEST")); assertEquals(1, toList(myPatientDao.search(params)).size()); - params.add("_language", new StringParam("TEST")); - assertEquals(1, toList(myPatientDao.search(params)).size()); - params.add(Patient.SP_IDENTIFIER, new TokenParam("TEST", "TEST")); assertEquals(1, toList(myPatientDao.search(params)).size()); @@ -744,9 +741,6 @@ public class FhirResourceDaoDstu2SearchNoFtTest extends BaseJpaDstu2Test { params.add("_id", new StringDt("TEST")); assertEquals(0, toList(myPatientDao.search(params)).size()); - params.add("_language", new StringParam("TEST")); - assertEquals(0, toList(myPatientDao.search(params)).size()); - params.add(Patient.SP_IDENTIFIER, new TokenParam("TEST", "TEST")); assertEquals(0, toList(myPatientDao.search(params)).size()); @@ -766,148 +760,6 @@ public class FhirResourceDaoDstu2SearchNoFtTest extends BaseJpaDstu2Test { } } - @Test - public void testSearchLanguageParam() { - IIdType id1; - { - Patient patient = new Patient(); - patient.getLanguage().setValue("en_CA"); - patient.addIdentifier().setSystem("urn:system").setValue("001"); - patient.addName().addFamily("testSearchLanguageParam").addGiven("Joe"); - id1 = myPatientDao.create(patient, mySrd).getId(); - } - IIdType id2; - { - Patient patient = new Patient(); - patient.getLanguage().setValue("en_US"); - patient.addIdentifier().setSystem("urn:system").setValue("002"); - patient.addName().addFamily("testSearchLanguageParam").addGiven("John"); - id2 = myPatientDao.create(patient, mySrd).getId(); - } - { - SearchParameterMap params = new SearchParameterMap(); - params.setLoadSynchronous(true); - params.add(BaseResource.SP_RES_LANGUAGE, new StringParam("en_CA")); - List patients = toList(myPatientDao.search(params)); - assertEquals(1, patients.size()); - assertEquals(id1.toUnqualifiedVersionless(), patients.get(0).getId().toUnqualifiedVersionless()); - } - { - SearchParameterMap params = new SearchParameterMap(); - params.setLoadSynchronous(true); - params.add(BaseResource.SP_RES_LANGUAGE, new StringParam("en_US")); - List patients = toList(myPatientDao.search(params)); - assertEquals(1, patients.size()); - assertEquals(id2.toUnqualifiedVersionless(), patients.get(0).getId().toUnqualifiedVersionless()); - } - { - SearchParameterMap params = new SearchParameterMap(); - params.setLoadSynchronous(true); - params.add(BaseResource.SP_RES_LANGUAGE, new StringParam("en_GB")); - List patients = toList(myPatientDao.search(params)); - assertEquals(0, patients.size()); - } - } - - @Test - public void testSearchLanguageParamAndOr() { - IIdType id1; - { - Patient patient = new Patient(); - patient.getLanguage().setValue("en_CA"); - patient.addIdentifier().setSystem("urn:system").setValue("001"); - patient.addName().addFamily("testSearchLanguageParam").addGiven("Joe"); - id1 = myPatientDao.create(patient, mySrd).getId().toUnqualifiedVersionless(); - } - - Date betweenTime = new Date(); - - IIdType id2; - { - Patient patient = new Patient(); - patient.getLanguage().setValue("en_US"); - patient.addIdentifier().setSystem("urn:system").setValue("002"); - patient.addName().addFamily("testSearchLanguageParam").addGiven("John"); - id2 = myPatientDao.create(patient, mySrd).getId().toUnqualifiedVersionless(); - } - { - SearchParameterMap params = new SearchParameterMap(); - params.setLoadSynchronous(true); - params.add(BaseResource.SP_RES_LANGUAGE, new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("en_US"))); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), containsInAnyOrder(id1, id2)); - } - { - SearchParameterMap params = new SearchParameterMap(); - params.setLoadSynchronous(true); - params.add(BaseResource.SP_RES_LANGUAGE, new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("en_US"))); - params.setLastUpdated(new DateRangeParam(betweenTime, null)); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), containsInAnyOrder(id2)); - } - { - SearchParameterMap params = new SearchParameterMap(); - params.setLoadSynchronous(true); - params.add(BaseResource.SP_RES_LANGUAGE, new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("ZZZZ"))); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), containsInAnyOrder(id1)); - } - { - SearchParameterMap params = new SearchParameterMap(); - params.setLoadSynchronous(true); - StringAndListParam and = new StringAndListParam(); - and.addAnd(new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("ZZZZ"))); - and.addAnd(new StringOrListParam().addOr(new StringParam("en_CA"))); - params.add(BaseResource.SP_RES_LANGUAGE, and); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), containsInAnyOrder(id1)); - } - { - SearchParameterMap params = new SearchParameterMap(); - params.setLoadSynchronous(true); - StringAndListParam and = new StringAndListParam(); - and.addAnd(new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("ZZZZ"))); - and.addAnd(new StringOrListParam().addOr(new StringParam("ZZZZZ"))); - params.add(BaseResource.SP_RES_LANGUAGE, and); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), empty()); - } - { - SearchParameterMap params = new SearchParameterMap(); - params.setLoadSynchronous(true); - StringAndListParam and = new StringAndListParam(); - and.addAnd(new StringOrListParam().addOr(new StringParam("ZZZZZ"))); - and.addAnd(new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("ZZZZ"))); - params.add(BaseResource.SP_RES_LANGUAGE, and); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), empty()); - } - { - SearchParameterMap params = new SearchParameterMap(); - params.setLoadSynchronous(true); - StringAndListParam and = new StringAndListParam(); - and.addAnd(new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("ZZZZ"))); - and.addAnd(new StringOrListParam().addOr(new StringParam("")).addOr(new StringParam(null))); - params.add(BaseResource.SP_RES_LANGUAGE, and); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), containsInAnyOrder(id1)); - } - { - SearchParameterMap params = new SearchParameterMap(); - params.setLoadSynchronous(true); - params.add("_id", new StringParam(id1.getIdPart())); - StringAndListParam and = new StringAndListParam(); - and.addAnd(new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("ZZZZ"))); - and.addAnd(new StringOrListParam().addOr(new StringParam("")).addOr(new StringParam(null))); - params.add(BaseResource.SP_RES_LANGUAGE, and); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), containsInAnyOrder(id1)); - } - { - SearchParameterMap params = new SearchParameterMap(); - params.setLoadSynchronous(true); - StringAndListParam and = new StringAndListParam(); - and.addAnd(new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("ZZZZ"))); - and.addAnd(new StringOrListParam().addOr(new StringParam("")).addOr(new StringParam(null))); - params.add(BaseResource.SP_RES_LANGUAGE, and); - params.add("_id", new StringParam(id1.getIdPart())); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), containsInAnyOrder(id1)); - } - - } - @Test public void testSearchLastUpdatedParam() throws InterruptedException { String methodName = "testSearchLastUpdatedParam"; diff --git a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/dstu2/FhirResourceDaoDstu2Test.java b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/dstu2/FhirResourceDaoDstu2Test.java index a301fbb49d0..71c2af076fc 100644 --- a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/dstu2/FhirResourceDaoDstu2Test.java +++ b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/dstu2/FhirResourceDaoDstu2Test.java @@ -224,7 +224,7 @@ public class FhirResourceDaoDstu2Test extends BaseJpaDstu2Test { } @Test - public void testCantSearchForDeletedResourceByLanguageOrTag() { + public void testCantSearchForDeletedResourceByTag() { String methodName = "testCantSearchForDeletedResourceByLanguageOrTag"; Organization org = new Organization(); org.setLanguage(new CodeDt("EN_ca")); @@ -236,9 +236,7 @@ public class FhirResourceDaoDstu2Test extends BaseJpaDstu2Test { IIdType orgId = myOrganizationDao.create(org, mySrd).getId().toUnqualifiedVersionless(); - SearchParameterMap map = new SearchParameterMap(); - map.add("_language", new StringParam("EN_ca")); - assertEquals(1, myOrganizationDao.search(map).size().intValue()); + SearchParameterMap map; map = new SearchParameterMap(); map.add("_tag", new TokenParam(methodName, methodName)); @@ -246,10 +244,6 @@ public class FhirResourceDaoDstu2Test extends BaseJpaDstu2Test { myOrganizationDao.delete(orgId, mySrd); - map = new SearchParameterMap(); - map.add("_language", new StringParam("EN_ca")); - assertEquals(0, myOrganizationDao.search(map).size().intValue()); - map = new SearchParameterMap(); map.add("_tag", new TokenParam(methodName, methodName)); assertEquals(0, myOrganizationDao.search(map).size().intValue()); @@ -1603,7 +1597,7 @@ public class FhirResourceDaoDstu2Test extends BaseJpaDstu2Test { found = toList(myPatientDao.search(new SearchParameterMap().setLoadSynchronous(true).add(Patient.SP_BIRTHDATE + "AAAA", new DateParam(ParamPrefixEnum.GREATERTHAN, "2000-01-01")))); assertEquals(0, found.size()); } catch (InvalidRequestException e) { - assertEquals("Unknown search parameter \"birthdateAAAA\" for resource type \"Patient\". Valid search parameters for this search are: [_id, _language, _lastUpdated, active, address, address-city, address-country, address-postalcode, address-state, address-use, animal-breed, animal-species, birthdate, careprovider, deathdate, deceased, email, family, gender, given, identifier, language, link, name, organization, phone, phonetic, telecom]", e.getMessage()); + assertEquals("Unknown search parameter \"birthdateAAAA\" for resource type \"Patient\". Valid search parameters for this search are: [_id, _lastUpdated, active, address, address-city, address-country, address-postalcode, address-state, address-use, animal-breed, animal-species, birthdate, careprovider, deathdate, deceased, email, family, gender, given, identifier, language, link, name, organization, phone, phonetic, telecom]", e.getMessage()); } } diff --git a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoDstu3SearchCustomSearchParamTest.java b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoDstu3SearchCustomSearchParamTest.java index b8159d4c533..f8f68a13526 100644 --- a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoDstu3SearchCustomSearchParamTest.java +++ b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoDstu3SearchCustomSearchParamTest.java @@ -1015,7 +1015,7 @@ public class FhirResourceDaoDstu3SearchCustomSearchParamTest extends BaseJpaDstu myPatientDao.search(map).size(); fail(); } catch (InvalidRequestException e) { - assertEquals("Unknown search parameter \"foo\" for resource type \"Patient\". Valid search parameters for this search are: [_id, _language, _lastUpdated, active, address, address-city, address-country, address-postalcode, address-state, address-use, animal-breed, animal-species, birthdate, death-date, deceased, email, family, gender, general-practitioner, given, identifier, language, link, name, organization, phone, phonetic, telecom]", e.getMessage()); + assertEquals("Unknown search parameter \"foo\" for resource type \"Patient\". Valid search parameters for this search are: [_id, _lastUpdated, active, address, address-city, address-country, address-postalcode, address-state, address-use, animal-breed, animal-species, birthdate, death-date, deceased, email, family, gender, general-practitioner, given, identifier, language, link, name, organization, phone, phonetic, telecom]", e.getMessage()); } } @@ -1053,7 +1053,7 @@ public class FhirResourceDaoDstu3SearchCustomSearchParamTest extends BaseJpaDstu myPatientDao.search(map).size(); fail(); } catch (InvalidRequestException e) { - assertEquals("Unknown search parameter \"foo\" for resource type \"Patient\". Valid search parameters for this search are: [_id, _language, _lastUpdated, active, address, address-city, address-country, address-postalcode, address-state, address-use, animal-breed, animal-species, birthdate, death-date, deceased, email, family, gender, general-practitioner, given, identifier, language, link, name, organization, phone, phonetic, telecom]", e.getMessage()); + assertEquals("Unknown search parameter \"foo\" for resource type \"Patient\". Valid search parameters for this search are: [_id, _lastUpdated, active, address, address-city, address-country, address-postalcode, address-state, address-use, animal-breed, animal-species, birthdate, death-date, deceased, email, family, gender, general-practitioner, given, identifier, language, link, name, organization, phone, phonetic, telecom]", e.getMessage()); } // Try with normal gender SP diff --git a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoDstu3SearchNoFtTest.java b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoDstu3SearchNoFtTest.java index ba988e02b70..9a544149148 100644 --- a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoDstu3SearchNoFtTest.java +++ b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoDstu3SearchNoFtTest.java @@ -1192,11 +1192,6 @@ public class FhirResourceDaoDstu3SearchNoFtTest extends BaseJpaDstu3Test { params.add("_id", new StringParam("TEST")); assertEquals(1, toList(myPatientDao.search(params)).size()); - params = new SearchParameterMap(); - params.setLoadSynchronous(true); - params.add("_language", new StringParam("TEST")); - assertEquals(1, toList(myPatientDao.search(params)).size()); - params = new SearchParameterMap(); params.setLoadSynchronous(true); params.add(Patient.SP_IDENTIFIER, new TokenParam("TEST", "TEST")); @@ -1214,11 +1209,6 @@ public class FhirResourceDaoDstu3SearchNoFtTest extends BaseJpaDstu3Test { params.add("_id", new StringParam("TEST")); assertEquals(0, toList(myPatientDao.search(params)).size()); - params = new SearchParameterMap(); - params.setLoadSynchronous(true); - params.add("_language", new StringParam("TEST")); - assertEquals(0, toList(myPatientDao.search(params)).size()); - params = new SearchParameterMap(); params.setLoadSynchronous(true); params.add(Patient.SP_IDENTIFIER, new TokenParam("TEST", "TEST")); @@ -1241,143 +1231,6 @@ public class FhirResourceDaoDstu3SearchNoFtTest extends BaseJpaDstu3Test { } } - @Test - public void testSearchLanguageParam() { - IIdType id1; - { - Patient patient = new Patient(); - patient.getLanguageElement().setValue("en_CA"); - patient.addIdentifier().setSystem("urn:system").setValue("001"); - patient.addName().setFamily("testSearchLanguageParam").addGiven("Joe"); - id1 = myPatientDao.create(patient, mySrd).getId(); - } - IIdType id2; - { - Patient patient = new Patient(); - patient.getLanguageElement().setValue("en_US"); - patient.addIdentifier().setSystem("urn:system").setValue("002"); - patient.addName().setFamily("testSearchLanguageParam").addGiven("John"); - id2 = myPatientDao.create(patient, mySrd).getId(); - } - SearchParameterMap params; - { - params = new SearchParameterMap(); - params.setLoadSynchronous(true); - - params.add(IAnyResource.SP_RES_LANGUAGE, new StringParam("en_CA")); - List patients = toList(myPatientDao.search(params)); - assertEquals(1, patients.size()); - assertEquals(id1.toUnqualifiedVersionless(), patients.get(0).getIdElement().toUnqualifiedVersionless()); - } - { - params = new SearchParameterMap(); - params.setLoadSynchronous(true); - - params.add(IAnyResource.SP_RES_LANGUAGE, new StringParam("en_US")); - List patients = toList(myPatientDao.search(params)); - assertEquals(1, patients.size()); - assertEquals(id2.toUnqualifiedVersionless(), patients.get(0).getIdElement().toUnqualifiedVersionless()); - } - { - params = new SearchParameterMap(); - params.setLoadSynchronous(true); - - params.add(IAnyResource.SP_RES_LANGUAGE, new StringParam("en_GB")); - List patients = toList(myPatientDao.search(params)); - assertEquals(0, patients.size()); - } - } - - @Test - public void testSearchLanguageParamAndOr() { - IIdType id1; - { - Patient patient = new Patient(); - patient.getLanguageElement().setValue("en_CA"); - patient.addIdentifier().setSystem("urn:system").setValue("001"); - patient.addName().setFamily("testSearchLanguageParam").addGiven("Joe"); - id1 = myPatientDao.create(patient, mySrd).getId().toUnqualifiedVersionless(); - } - TestUtil.sleepOneClick(); - Date betweenTime = new Date(); - - IIdType id2; - { - Patient patient = new Patient(); - patient.getLanguageElement().setValue("en_US"); - patient.addIdentifier().setSystem("urn:system").setValue("002"); - patient.addName().setFamily("testSearchLanguageParam").addGiven("John"); - id2 = myPatientDao.create(patient, mySrd).getId().toUnqualifiedVersionless(); - } - { - SearchParameterMap params = new SearchParameterMap(); - params.add(IAnyResource.SP_RES_LANGUAGE, new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("en_US"))); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), containsInAnyOrder(id1, id2)); - } - { - SearchParameterMap params = new SearchParameterMap(); - params.add(IAnyResource.SP_RES_LANGUAGE, new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("en_US"))); - params.setLastUpdated(new DateRangeParam(betweenTime, null)); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), containsInAnyOrder(id2)); - } - { - SearchParameterMap params = new SearchParameterMap(); - params.add(IAnyResource.SP_RES_LANGUAGE, new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("ZZZZ"))); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), containsInAnyOrder(id1)); - } - { - SearchParameterMap params = new SearchParameterMap(); - StringAndListParam and = new StringAndListParam(); - and.addAnd(new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("ZZZZ"))); - and.addAnd(new StringOrListParam().addOr(new StringParam("en_CA"))); - params.add(IAnyResource.SP_RES_LANGUAGE, and); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), containsInAnyOrder(id1)); - } - { - SearchParameterMap params = new SearchParameterMap(); - StringAndListParam and = new StringAndListParam(); - and.addAnd(new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("ZZZZ"))); - and.addAnd(new StringOrListParam().addOr(new StringParam("ZZZZZ"))); - params.add(IAnyResource.SP_RES_LANGUAGE, and); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), empty()); - } - { - SearchParameterMap params = new SearchParameterMap(); - StringAndListParam and = new StringAndListParam(); - and.addAnd(new StringOrListParam().addOr(new StringParam("ZZZZZ"))); - and.addAnd(new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("ZZZZ"))); - params.add(IAnyResource.SP_RES_LANGUAGE, and); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), empty()); - } - { - SearchParameterMap params = new SearchParameterMap(); - StringAndListParam and = new StringAndListParam(); - and.addAnd(new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("ZZZZ"))); - and.addAnd(new StringOrListParam().addOr(new StringParam("")).addOr(new StringParam(null))); - params.add(IAnyResource.SP_RES_LANGUAGE, and); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), containsInAnyOrder(id1)); - } - { - SearchParameterMap params = new SearchParameterMap(); - params.add("_id", new StringParam(id1.getIdPart())); - StringAndListParam and = new StringAndListParam(); - and.addAnd(new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("ZZZZ"))); - and.addAnd(new StringOrListParam().addOr(new StringParam("")).addOr(new StringParam(null))); - params.add(IAnyResource.SP_RES_LANGUAGE, and); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), containsInAnyOrder(id1)); - } - { - SearchParameterMap params = new SearchParameterMap(); - StringAndListParam and = new StringAndListParam(); - and.addAnd(new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("ZZZZ"))); - and.addAnd(new StringOrListParam().addOr(new StringParam("")).addOr(new StringParam(null))); - params.add(IAnyResource.SP_RES_LANGUAGE, and); - params.add("_id", new StringParam(id1.getIdPart())); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), containsInAnyOrder(id1)); - } - - } - @Test public void testSearchLastUpdatedParam() { String methodName = "testSearchLastUpdatedParam"; diff --git a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoDstu3Test.java b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoDstu3Test.java index e543d2310f7..7d8793dffe2 100644 --- a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoDstu3Test.java +++ b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/dstu3/FhirResourceDaoDstu3Test.java @@ -206,21 +206,12 @@ public class FhirResourceDaoDstu3Test extends BaseJpaDstu3Test { IIdType orgId = myOrganizationDao.create(org, mySrd).getId().toUnqualifiedVersionless(); SearchParameterMap map = new SearchParameterMap(); - map.add("_language", new StringParam("EN_ca")); - assertEquals(1, myOrganizationDao.search(map).size().intValue()); - - map = new SearchParameterMap(); map.setLoadSynchronous(true); map.add("_tag", new TokenParam(methodName, methodName)); assertEquals(1, myOrganizationDao.search(map).size().intValue()); myOrganizationDao.delete(orgId, mySrd); - map = new SearchParameterMap(); - map.setLoadSynchronous(true); - map.add("_language", new StringParam("EN_ca")); - assertEquals(0, myOrganizationDao.search(map).size().intValue()); - map = new SearchParameterMap(); map.setLoadSynchronous(true); map.add("_tag", new TokenParam(methodName, methodName)); @@ -2014,7 +2005,7 @@ public class FhirResourceDaoDstu3Test extends BaseJpaDstu3Test { found = toList(myPatientDao.search(new SearchParameterMap(Patient.SP_BIRTHDATE + "AAAA", new DateParam(ParamPrefixEnum.GREATERTHAN, "2000-01-01")).setLoadSynchronous(true))); assertEquals(0, found.size()); } catch (InvalidRequestException e) { - assertEquals("Unknown search parameter \"birthdateAAAA\" for resource type \"Patient\". Valid search parameters for this search are: [_id, _language, _lastUpdated, active, address, address-city, address-country, address-postalcode, address-state, address-use, animal-breed, animal-species, birthdate, death-date, deceased, email, family, gender, general-practitioner, given, identifier, language, link, name, organization, phone, phonetic, telecom]", e.getMessage()); + assertEquals("Unknown search parameter \"birthdateAAAA\" for resource type \"Patient\". Valid search parameters for this search are: [_id, _lastUpdated, active, address, address-city, address-country, address-postalcode, address-state, address-use, animal-breed, animal-species, birthdate, death-date, deceased, email, family, gender, general-practitioner, given, identifier, language, link, name, organization, phone, phonetic, telecom]", e.getMessage()); } } diff --git a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4CreateTest.java b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4CreateTest.java index 254600f7acb..7a1411fd99b 100644 --- a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4CreateTest.java +++ b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4CreateTest.java @@ -5,6 +5,7 @@ import ca.uhn.fhir.jpa.api.model.DaoMethodOutcome; import ca.uhn.fhir.jpa.model.entity.NormalizedQuantitySearchLevel; import ca.uhn.fhir.jpa.model.entity.ResourceIndexedSearchParamQuantity; import ca.uhn.fhir.jpa.model.entity.ResourceIndexedSearchParamQuantityNormalized; +import ca.uhn.fhir.jpa.model.entity.ResourceLink; import ca.uhn.fhir.jpa.model.util.UcumServiceUtil; import ca.uhn.fhir.jpa.partition.SystemRequestDetails; import ca.uhn.fhir.jpa.searchparam.SearchParameterMap; @@ -28,6 +29,7 @@ import org.hl7.fhir.r4.model.Observation; import org.hl7.fhir.r4.model.Organization; import org.hl7.fhir.r4.model.Patient; import org.hl7.fhir.r4.model.Quantity; +import org.hl7.fhir.r4.model.Reference; import org.hl7.fhir.r4.model.SampledData; import org.hl7.fhir.r4.model.SearchParameter; import org.junit.jupiter.api.AfterEach; @@ -63,6 +65,30 @@ public class FhirResourceDaoR4CreateTest extends BaseJpaR4Test { myModelConfig.setNormalizedQuantitySearchLevel(NormalizedQuantitySearchLevel.NORMALIZED_QUANTITY_SEARCH_NOT_SUPPORTED); } + + @Test + public void testCreateLinkCreatesAppropriatePaths() { + Patient p = new Patient(); + p.setId("Patient/A"); + p.setActive(true); + myPatientDao.update(p, mySrd); + + Observation obs = new Observation(); + obs.setSubject(new Reference("Patient/A")); + myObservationDao.create(obs, mySrd); + + runInTransaction(() ->{ + List allLinks = myResourceLinkDao.findAll(); + List paths = allLinks + .stream() + .map(t -> t.getSourcePath()) + .sorted() + .collect(Collectors.toList()); + assertThat(paths.toString(), paths, contains("Observation.subject", "Observation.subject.where(resolve() is Patient)")); + }); + } + + @Test public void testConditionalCreateWithPlusInUrl() { Observation obs = new Observation(); diff --git a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4FilterLegacySearchBuilderTest.java b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4FilterLegacySearchBuilderTest.java index fd6bb9fdab9..2fced929ab1 100644 --- a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4FilterLegacySearchBuilderTest.java +++ b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4FilterLegacySearchBuilderTest.java @@ -349,28 +349,6 @@ public class FhirResourceDaoR4FilterLegacySearchBuilderTest extends BaseJpaR4Tes } - @Test - public void testLanguageComparatorEq() { - - Patient p = new Patient(); - p.setLanguage("en"); - p.addName().setFamily("Smith").addGiven("John"); - p.setBirthDateElement(new DateType("1955-01-01")); - p.setActive(true); - String id1 = myPatientDao.create(p).getId().toUnqualifiedVersionless().getValue(); - - SearchParameterMap map; - List found; - - map = new SearchParameterMap(); - map.setLoadSynchronous(true); - map.add(Constants.PARAM_FILTER, new StringParam("_language eq en")); - found = toUnqualifiedVersionlessIdValues(myPatientDao.search(map)); - assertThat(found, containsInAnyOrder(id1)); - - } - - @Test public void testStringComparatorCo() { diff --git a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4FilterTest.java b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4FilterTest.java index eacf7d652e9..edcb41ca62b 100644 --- a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4FilterTest.java +++ b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4FilterTest.java @@ -347,28 +347,6 @@ public class FhirResourceDaoR4FilterTest extends BaseJpaR4Test { } - @Test - public void testLanguageComparatorEq() { - - Patient p = new Patient(); - p.setLanguage("en"); - p.addName().setFamily("Smith").addGiven("John"); - p.setBirthDateElement(new DateType("1955-01-01")); - p.setActive(true); - String id1 = myPatientDao.create(p).getId().toUnqualifiedVersionless().getValue(); - - SearchParameterMap map; - List found; - - map = new SearchParameterMap(); - map.setLoadSynchronous(true); - map.add(Constants.PARAM_FILTER, new StringParam("_language eq en")); - found = toUnqualifiedVersionlessIdValues(myPatientDao.search(map)); - assertThat(found, containsInAnyOrder(id1)); - - } - - @Test public void testStringComparatorCo() { @@ -1254,7 +1232,7 @@ public class FhirResourceDaoR4FilterTest extends BaseJpaR4Test { try { myPatientDao.search(map); } catch (InvalidRequestException e) { - assertEquals("Unknown search parameter \"foo\" for resource type \"Patient\". Valid search parameters for this search are: [_id, _language, _lastUpdated, active, address, address-city, address-country, address-postalcode, address-state, address-use, birthdate, death-date, deceased, email, family, gender, general-practitioner, given, identifier, language, link, name, organization, phone, phonetic, telecom]", e.getMessage()); + assertEquals("Unknown search parameter \"foo\" for resource type \"Patient\". Valid search parameters for this search are: [_content, _id, _lastUpdated, _profile, _security, _source, _tag, _text, active, address, address-city, address-country, address-postalcode, address-state, address-use, birthdate, death-date, deceased, email, family, gender, general-practitioner, given, identifier, language, link, name, organization, phone, phonetic, telecom]", e.getMessage()); } } diff --git a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4LegacySearchBuilderTest.java b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4LegacySearchBuilderTest.java index 7a18b4ed391..5366efa789c 100644 --- a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4LegacySearchBuilderTest.java +++ b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4LegacySearchBuilderTest.java @@ -2369,14 +2369,6 @@ public class FhirResourceDaoR4LegacySearchBuilderTest extends BaseJpaR4Test { params.add("_id", new StringParam("TEST")); assertEquals(1, toList(myPatientDao.search(params)).size()); - params = new SearchParameterMap(); - params.setLoadSynchronous(true); - params.add("_language", new StringParam("TEST")); - myCaptureQueriesListener.clear(); - result = toList(myPatientDao.search(params)); - myCaptureQueriesListener.logSelectQueriesForCurrentThread(0); - assertEquals(1, result.size()); - params = new SearchParameterMap(); params.setLoadSynchronous(true); params.add(Patient.SP_IDENTIFIER, new TokenParam("TEST", "TEST")); @@ -2394,11 +2386,6 @@ public class FhirResourceDaoR4LegacySearchBuilderTest extends BaseJpaR4Test { params.add("_id", new StringParam("TEST")); assertEquals(0, toList(myPatientDao.search(params)).size()); - params = new SearchParameterMap(); - params.setLoadSynchronous(true); - params.add("_language", new StringParam("TEST")); - assertEquals(0, toList(myPatientDao.search(params)).size()); - params = new SearchParameterMap(); params.setLoadSynchronous(true); params.add(Patient.SP_IDENTIFIER, new TokenParam("TEST", "TEST")); @@ -2421,149 +2408,6 @@ public class FhirResourceDaoR4LegacySearchBuilderTest extends BaseJpaR4Test { } } - @Test - public void testSearchLanguageParam() { - IIdType id1; - { - Patient patient = new Patient(); - patient.getLanguageElement().setValue("en_CA"); - patient.addIdentifier().setSystem("urn:system").setValue("001"); - patient.addName().setFamily("testSearchLanguageParam").addGiven("Joe"); - id1 = myPatientDao.create(patient, mySrd).getId(); - } - IIdType id2; - { - Patient patient = new Patient(); - patient.getLanguageElement().setValue("en_US"); - patient.addIdentifier().setSystem("urn:system").setValue("002"); - patient.addName().setFamily("testSearchLanguageParam").addGiven("John"); - id2 = myPatientDao.create(patient, mySrd).getId(); - } - SearchParameterMap params; - { - params = new SearchParameterMap(); - params.setLoadSynchronous(true); - - params.add(IAnyResource.SP_RES_LANGUAGE, new StringParam("en_CA")); - myCaptureQueriesListener.clear(); - List patients = toList(myPatientDao.search(params)); - myCaptureQueriesListener.logSelectQueriesForCurrentThread(0); - assertEquals(1, patients.size()); - assertEquals(id1.toUnqualifiedVersionless(), patients.get(0).getIdElement().toUnqualifiedVersionless()); - } - { - params = new SearchParameterMap(); - params.setLoadSynchronous(true); - - params.add(IAnyResource.SP_RES_LANGUAGE, new StringParam("en_US")); - List patients = toList(myPatientDao.search(params)); - assertEquals(1, patients.size()); - assertEquals(id2.toUnqualifiedVersionless(), patients.get(0).getIdElement().toUnqualifiedVersionless()); - } - { - params = new SearchParameterMap(); - params.setLoadSynchronous(true); - - params.add(IAnyResource.SP_RES_LANGUAGE, new StringParam("en_GB")); - List patients = toList(myPatientDao.search(params)); - assertEquals(0, patients.size()); - } - } - - @Test - public void testSearchLanguageParamAndOr() { - IIdType id1; - { - Patient patient = new Patient(); - patient.getLanguageElement().setValue("en_CA"); - patient.addIdentifier().setSystem("urn:system").setValue("001"); - patient.addName().setFamily("testSearchLanguageParam").addGiven("Joe"); - id1 = myPatientDao.create(patient, mySrd).getId().toUnqualifiedVersionless(); - } - - TestUtil.sleepOneClick(); - - Date betweenTime = new Date(); - - TestUtil.sleepOneClick(); - - IIdType id2; - { - Patient patient = new Patient(); - patient.getLanguageElement().setValue("en_US"); - patient.addIdentifier().setSystem("urn:system").setValue("002"); - patient.addName().setFamily("testSearchLanguageParam").addGiven("John"); - id2 = myPatientDao.create(patient, mySrd).getId().toUnqualifiedVersionless(); - } - { - SearchParameterMap params = new SearchParameterMap(); - params.add(IAnyResource.SP_RES_LANGUAGE, new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("en_US"))); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), containsInAnyOrder(id1, id2)); - } - { - SearchParameterMap params = new SearchParameterMap(); - params.add(IAnyResource.SP_RES_LANGUAGE, new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("en_US"))); - params.setLastUpdated(new DateRangeParam(betweenTime, null)); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), containsInAnyOrder(id2)); - } - { - SearchParameterMap params = new SearchParameterMap(); - params.add(IAnyResource.SP_RES_LANGUAGE, new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("ZZZZ"))); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), containsInAnyOrder(id1)); - } - { - SearchParameterMap params = new SearchParameterMap(); - StringAndListParam and = new StringAndListParam(); - and.addAnd(new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("ZZZZ"))); - and.addAnd(new StringOrListParam().addOr(new StringParam("en_CA"))); - params.add(IAnyResource.SP_RES_LANGUAGE, and); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), containsInAnyOrder(id1)); - } - { - SearchParameterMap params = new SearchParameterMap(); - StringAndListParam and = new StringAndListParam(); - and.addAnd(new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("ZZZZ"))); - and.addAnd(new StringOrListParam().addOr(new StringParam("ZZZZZ"))); - params.add(IAnyResource.SP_RES_LANGUAGE, and); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), empty()); - } - { - SearchParameterMap params = new SearchParameterMap(); - StringAndListParam and = new StringAndListParam(); - and.addAnd(new StringOrListParam().addOr(new StringParam("ZZZZZ"))); - and.addAnd(new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("ZZZZ"))); - params.add(IAnyResource.SP_RES_LANGUAGE, and); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), empty()); - } - { - SearchParameterMap params = new SearchParameterMap(); - StringAndListParam and = new StringAndListParam(); - and.addAnd(new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("ZZZZ"))); - and.addAnd(new StringOrListParam().addOr(new StringParam("")).addOr(new StringParam(null))); - params.add(IAnyResource.SP_RES_LANGUAGE, and); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), containsInAnyOrder(id1)); - } - { - SearchParameterMap params = new SearchParameterMap(); - params.add("_id", new StringParam(id1.getIdPart())); - StringAndListParam and = new StringAndListParam(); - and.addAnd(new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("ZZZZ"))); - and.addAnd(new StringOrListParam().addOr(new StringParam("")).addOr(new StringParam(null))); - params.add(IAnyResource.SP_RES_LANGUAGE, and); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), containsInAnyOrder(id1)); - } - { - SearchParameterMap params = new SearchParameterMap(); - StringAndListParam and = new StringAndListParam(); - and.addAnd(new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("ZZZZ"))); - and.addAnd(new StringOrListParam().addOr(new StringParam("")).addOr(new StringParam(null))); - params.add(IAnyResource.SP_RES_LANGUAGE, and); - params.add("_id", new StringParam(id1.getIdPart())); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), containsInAnyOrder(id1)); - } - - } - @Test public void testSearchLastUpdatedParam() { String methodName = "testSearchLastUpdatedParam"; diff --git a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4SearchCustomSearchParamTest.java b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4SearchCustomSearchParamTest.java index baa3a2d3a76..251945e4f61 100644 --- a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4SearchCustomSearchParamTest.java +++ b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4SearchCustomSearchParamTest.java @@ -1512,7 +1512,7 @@ public class FhirResourceDaoR4SearchCustomSearchParamTest extends BaseJpaR4Test myPatientDao.search(map).size(); fail(); } catch (InvalidRequestException e) { - assertEquals("Unknown search parameter \"foo\" for resource type \"Patient\". Valid search parameters for this search are: [_id, _language, _lastUpdated, active, address, address-city, address-country, address-postalcode, address-state, address-use, birthdate, death-date, deceased, email, family, gender, general-practitioner, given, identifier, language, link, name, organization, phone, phonetic, telecom]", e.getMessage()); + assertEquals("Unknown search parameter \"foo\" for resource type \"Patient\". Valid search parameters for this search are: [_content, _id, _lastUpdated, _profile, _security, _source, _tag, _text, active, address, address-city, address-country, address-postalcode, address-state, address-use, birthdate, death-date, deceased, email, family, gender, general-practitioner, given, identifier, language, link, name, organization, phone, phonetic, telecom]", e.getMessage()); } // Delete the param @@ -1528,7 +1528,7 @@ public class FhirResourceDaoR4SearchCustomSearchParamTest extends BaseJpaR4Test myPatientDao.search(map).size(); fail(); } catch (InvalidRequestException e) { - assertEquals("Unknown search parameter \"foo\" for resource type \"Patient\". Valid search parameters for this search are: [_id, _language, _lastUpdated, active, address, address-city, address-country, address-postalcode, address-state, address-use, birthdate, death-date, deceased, email, family, gender, general-practitioner, given, identifier, language, link, name, organization, phone, phonetic, telecom]", e.getMessage()); + assertEquals("Unknown search parameter \"foo\" for resource type \"Patient\". Valid search parameters for this search are: [_content, _id, _lastUpdated, _profile, _security, _source, _tag, _text, active, address, address-city, address-country, address-postalcode, address-state, address-use, birthdate, death-date, deceased, email, family, gender, general-practitioner, given, identifier, language, link, name, organization, phone, phonetic, telecom]", e.getMessage()); } } @@ -1605,7 +1605,7 @@ public class FhirResourceDaoR4SearchCustomSearchParamTest extends BaseJpaR4Test myPatientDao.search(map).size(); fail(); } catch (InvalidRequestException e) { - assertEquals("Unknown search parameter \"foo\" for resource type \"Patient\". Valid search parameters for this search are: [_id, _language, _lastUpdated, active, address, address-city, address-country, address-postalcode, address-state, address-use, birthdate, death-date, deceased, email, family, gender, general-practitioner, given, identifier, language, link, name, organization, phone, phonetic, telecom]", e.getMessage()); + assertEquals("Unknown search parameter \"foo\" for resource type \"Patient\". Valid search parameters for this search are: [_content, _id, _lastUpdated, _profile, _security, _source, _tag, _text, active, address, address-city, address-country, address-postalcode, address-state, address-use, birthdate, death-date, deceased, email, family, gender, general-practitioner, given, identifier, language, link, name, organization, phone, phonetic, telecom]", e.getMessage()); } // Try with normal gender SP diff --git a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4SearchNoFtTest.java b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4SearchNoFtTest.java index 71b3e7bcdc2..5ee19c00c8e 100644 --- a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4SearchNoFtTest.java +++ b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4SearchNoFtTest.java @@ -2464,14 +2464,6 @@ public class FhirResourceDaoR4SearchNoFtTest extends BaseJpaR4Test { params.add("_id", new StringParam("TEST")); assertEquals(1, toList(myPatientDao.search(params)).size()); - params = new SearchParameterMap(); - params.setLoadSynchronous(true); - params.add("_language", new StringParam("TEST")); - myCaptureQueriesListener.clear(); - result = toList(myPatientDao.search(params)); - myCaptureQueriesListener.logSelectQueriesForCurrentThread(0); - assertEquals(1, result.size()); - params = new SearchParameterMap(); params.setLoadSynchronous(true); params.add(Patient.SP_IDENTIFIER, new TokenParam("TEST", "TEST")); @@ -2489,11 +2481,6 @@ public class FhirResourceDaoR4SearchNoFtTest extends BaseJpaR4Test { params.add("_id", new StringParam("TEST")); assertEquals(0, toList(myPatientDao.search(params)).size()); - params = new SearchParameterMap(); - params.setLoadSynchronous(true); - params.add("_language", new StringParam("TEST")); - assertEquals(0, toList(myPatientDao.search(params)).size()); - params = new SearchParameterMap(); params.setLoadSynchronous(true); params.add(Patient.SP_IDENTIFIER, new TokenParam("TEST", "TEST")); @@ -2516,148 +2503,6 @@ public class FhirResourceDaoR4SearchNoFtTest extends BaseJpaR4Test { } } - @Test - public void testSearchLanguageParam() { - IIdType id1; - { - Patient patient = new Patient(); - patient.getLanguageElement().setValue("en_CA"); - patient.addIdentifier().setSystem("urn:system").setValue("001"); - patient.addName().setFamily("testSearchLanguageParam").addGiven("Joe"); - id1 = myPatientDao.create(patient, mySrd).getId(); - } - IIdType id2; - { - Patient patient = new Patient(); - patient.getLanguageElement().setValue("en_US"); - patient.addIdentifier().setSystem("urn:system").setValue("002"); - patient.addName().setFamily("testSearchLanguageParam").addGiven("John"); - id2 = myPatientDao.create(patient, mySrd).getId(); - } - SearchParameterMap params; - { - params = new SearchParameterMap(); - params.setLoadSynchronous(true); - - params.add(IAnyResource.SP_RES_LANGUAGE, new StringParam("en_CA")); - myCaptureQueriesListener.clear(); - List patients = toList(myPatientDao.search(params)); - myCaptureQueriesListener.logSelectQueriesForCurrentThread(0); - assertEquals(1, patients.size()); - assertEquals(id1.toUnqualifiedVersionless(), patients.get(0).getIdElement().toUnqualifiedVersionless()); - } - { - params = new SearchParameterMap(); - params.setLoadSynchronous(true); - - params.add(IAnyResource.SP_RES_LANGUAGE, new StringParam("en_US")); - List patients = toList(myPatientDao.search(params)); - assertEquals(1, patients.size()); - assertEquals(id2.toUnqualifiedVersionless(), patients.get(0).getIdElement().toUnqualifiedVersionless()); - } - { - params = new SearchParameterMap(); - params.setLoadSynchronous(true); - - params.add(IAnyResource.SP_RES_LANGUAGE, new StringParam("en_GB")); - List patients = toList(myPatientDao.search(params)); - assertEquals(0, patients.size()); - } - } - - @Test - public void testSearchLanguageParamAndOr() { - IIdType id1; - { - Patient patient = new Patient(); - patient.getLanguageElement().setValue("en_CA"); - patient.addIdentifier().setSystem("urn:system").setValue("001"); - patient.addName().setFamily("testSearchLanguageParam").addGiven("Joe"); - id1 = myPatientDao.create(patient, mySrd).getId().toUnqualifiedVersionless(); - } - - TestUtil.sleepOneClick(); - - Date betweenTime = new Date(); - - TestUtil.sleepOneClick(); - - IIdType id2; - { - Patient patient = new Patient(); - patient.getLanguageElement().setValue("en_US"); - patient.addIdentifier().setSystem("urn:system").setValue("002"); - patient.addName().setFamily("testSearchLanguageParam").addGiven("John"); - id2 = myPatientDao.create(patient, mySrd).getId().toUnqualifiedVersionless(); - } - { - SearchParameterMap params = new SearchParameterMap(); - params.add(IAnyResource.SP_RES_LANGUAGE, new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("en_US"))); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), containsInAnyOrder(id1, id2)); - } - { - SearchParameterMap params = new SearchParameterMap(); - params.add(IAnyResource.SP_RES_LANGUAGE, new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("en_US"))); - params.setLastUpdated(new DateRangeParam(betweenTime, null)); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), containsInAnyOrder(id2)); - } - { - SearchParameterMap params = new SearchParameterMap(); - params.add(IAnyResource.SP_RES_LANGUAGE, new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("ZZZZ"))); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), containsInAnyOrder(id1)); - } - { - SearchParameterMap params = new SearchParameterMap(); - StringAndListParam and = new StringAndListParam(); - and.addAnd(new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("ZZZZ"))); - and.addAnd(new StringOrListParam().addOr(new StringParam("en_CA"))); - params.add(IAnyResource.SP_RES_LANGUAGE, and); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), containsInAnyOrder(id1)); - } - { - SearchParameterMap params = new SearchParameterMap(); - StringAndListParam and = new StringAndListParam(); - and.addAnd(new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("ZZZZ"))); - and.addAnd(new StringOrListParam().addOr(new StringParam("ZZZZZ"))); - params.add(IAnyResource.SP_RES_LANGUAGE, and); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), empty()); - } - { - SearchParameterMap params = new SearchParameterMap(); - StringAndListParam and = new StringAndListParam(); - and.addAnd(new StringOrListParam().addOr(new StringParam("ZZZZZ"))); - and.addAnd(new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("ZZZZ"))); - params.add(IAnyResource.SP_RES_LANGUAGE, and); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), empty()); - } - { - SearchParameterMap params = new SearchParameterMap(); - StringAndListParam and = new StringAndListParam(); - and.addAnd(new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("ZZZZ"))); - and.addAnd(new StringOrListParam().addOr(new StringParam("")).addOr(new StringParam(null))); - params.add(IAnyResource.SP_RES_LANGUAGE, and); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), containsInAnyOrder(id1)); - } - { - SearchParameterMap params = new SearchParameterMap(); - params.add("_id", new StringParam(id1.getIdPart())); - StringAndListParam and = new StringAndListParam(); - and.addAnd(new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("ZZZZ"))); - and.addAnd(new StringOrListParam().addOr(new StringParam("")).addOr(new StringParam(null))); - params.add(IAnyResource.SP_RES_LANGUAGE, and); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), containsInAnyOrder(id1)); - } - { - SearchParameterMap params = new SearchParameterMap(); - StringAndListParam and = new StringAndListParam(); - and.addAnd(new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("ZZZZ"))); - and.addAnd(new StringOrListParam().addOr(new StringParam("")).addOr(new StringParam(null))); - params.add(IAnyResource.SP_RES_LANGUAGE, and); - params.add("_id", new StringParam(id1.getIdPart())); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), containsInAnyOrder(id1)); - } - - } @Test public void testSearchLastUpdatedParam() { diff --git a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4SearchNoHashesTest.java b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4SearchNoHashesTest.java index 475bf310a5d..86220f8281d 100644 --- a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4SearchNoHashesTest.java +++ b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4SearchNoHashesTest.java @@ -12,6 +12,7 @@ import ca.uhn.fhir.jpa.model.entity.ResourceIndexedSearchParamToken; import ca.uhn.fhir.jpa.model.entity.ResourceIndexedSearchParamUri; import ca.uhn.fhir.jpa.model.entity.ResourceLink; import ca.uhn.fhir.jpa.model.entity.ResourceTable; +import ca.uhn.fhir.jpa.model.util.UcumServiceUtil; import ca.uhn.fhir.jpa.searchparam.SearchParameterMap; import ca.uhn.fhir.jpa.searchparam.SearchParameterMap.EverythingModeEnum; import ca.uhn.fhir.jpa.util.TestUtil; @@ -43,8 +44,6 @@ import ca.uhn.fhir.rest.param.UriParam; import ca.uhn.fhir.rest.param.UriParamQualifierEnum; import ca.uhn.fhir.rest.server.exceptions.InvalidRequestException; import ca.uhn.fhir.rest.server.exceptions.MethodNotAllowedException; -import ca.uhn.fhir.jpa.model.util.UcumServiceUtil; - import org.apache.commons.io.IOUtils; import org.apache.commons.lang3.StringUtils; import org.hl7.fhir.instance.model.api.IAnyResource; @@ -144,8 +143,8 @@ public class FhirResourceDaoR4SearchNoHashesTest extends BaseJpaR4Test { myDaoConfig.setFetchSizeDefaultMaximum(new DaoConfig().getFetchSizeDefaultMaximum()); myDaoConfig.setAllowContainsSearches(new DaoConfig().isAllowContainsSearches()); myDaoConfig.setDisableHashBasedSearches(false); - myModelConfig.setNormalizedQuantitySearchLevel(NormalizedQuantitySearchLevel.NORMALIZED_QUANTITY_SEARCH_NOT_SUPPORTED); - } + myModelConfig.setNormalizedQuantitySearchLevel(NormalizedQuantitySearchLevel.NORMALIZED_QUANTITY_SEARCH_NOT_SUPPORTED); + } @BeforeEach public void beforeInitialize() { @@ -1201,8 +1200,8 @@ public class FhirResourceDaoR4SearchNoHashesTest extends BaseJpaR4Test { .setCode(new CodeableConcept().addCoding(new Coding().setSystem(UcumServiceUtil.UCUM_CODESYSTEM_URL).setCode("cm"))) .setValue(new Quantity().setSystem(UcumServiceUtil.UCUM_CODESYSTEM_URL).setCode("cm").setValue(1.2)); o1.addComponent() - .setCode(new CodeableConcept().addCoding(new Coding().setSystem(UcumServiceUtil.UCUM_CODESYSTEM_URL).setCode("m"))) - .setValue(new Quantity().setSystem(UcumServiceUtil.UCUM_CODESYSTEM_URL).setCode("mm").setValue(2)); + .setCode(new CodeableConcept().addCoding(new Coding().setSystem(UcumServiceUtil.UCUM_CODESYSTEM_URL).setCode("m"))) + .setValue(new Quantity().setSystem(UcumServiceUtil.UCUM_CODESYSTEM_URL).setCode("mm").setValue(2)); IIdType id1 = myObservationDao.create(o1, mySrd).getId().toUnqualifiedVersionless(); String param = Observation.SP_COMPONENT_VALUE_QUANTITY; @@ -1214,7 +1213,7 @@ public class FhirResourceDaoR4SearchNoHashesTest extends BaseJpaR4Test { assertThat("Got: " + toUnqualifiedVersionlessIdValues(result), toUnqualifiedVersionlessIdValues(result), containsInAnyOrder(id1.getValue())); } } - + @Test public void testComponentQuantityWithNormalizedQuantityStorageSupported() { @@ -1224,8 +1223,8 @@ public class FhirResourceDaoR4SearchNoHashesTest extends BaseJpaR4Test { .setCode(new CodeableConcept().addCoding(new Coding().setSystem(UcumServiceUtil.UCUM_CODESYSTEM_URL).setCode("cm"))) .setValue(new Quantity().setSystem(UcumServiceUtil.UCUM_CODESYSTEM_URL).setCode("cm").setValue(1.2)); o1.addComponent() - .setCode(new CodeableConcept().addCoding(new Coding().setSystem(UcumServiceUtil.UCUM_CODESYSTEM_URL).setCode("m"))) - .setValue(new Quantity().setSystem(UcumServiceUtil.UCUM_CODESYSTEM_URL).setCode("mm").setValue(2)); + .setCode(new CodeableConcept().addCoding(new Coding().setSystem(UcumServiceUtil.UCUM_CODESYSTEM_URL).setCode("m"))) + .setValue(new Quantity().setSystem(UcumServiceUtil.UCUM_CODESYSTEM_URL).setCode("mm").setValue(2)); IIdType id1 = myObservationDao.create(o1, mySrd).getId().toUnqualifiedVersionless(); String param = Observation.SP_COMPONENT_VALUE_QUANTITY; @@ -1237,7 +1236,7 @@ public class FhirResourceDaoR4SearchNoHashesTest extends BaseJpaR4Test { assertThat("Got: " + toUnqualifiedVersionlessIdValues(result), toUnqualifiedVersionlessIdValues(result), containsInAnyOrder(id1.getValue())); } } - + @Test public void testSearchCompositeParamQuantity() { Observation o1 = new Observation(); @@ -1344,9 +1343,9 @@ public class FhirResourceDaoR4SearchNoHashesTest extends BaseJpaR4Test { IBundleProvider result = myObservationDao.search(new SearchParameterMap().setLoadSynchronous(true).add(param, val)); assertThat(toUnqualifiedVersionlessIdValues(result), empty()); } - + } - + @Test public void testSearchDateWrongParam() { Patient p1 = new Patient(); @@ -1391,11 +1390,6 @@ public class FhirResourceDaoR4SearchNoHashesTest extends BaseJpaR4Test { params.add("_id", new StringParam("TEST")); assertEquals(1, toList(myPatientDao.search(params)).size()); - params = new SearchParameterMap(); - params.setLoadSynchronous(true); - params.add("_language", new StringParam("TEST")); - assertEquals(1, toList(myPatientDao.search(params)).size()); - params = new SearchParameterMap(); params.setLoadSynchronous(true); params.add(Patient.SP_IDENTIFIER, new TokenParam("TEST", "TEST")); @@ -1413,11 +1407,6 @@ public class FhirResourceDaoR4SearchNoHashesTest extends BaseJpaR4Test { params.add("_id", new StringParam("TEST")); assertEquals(0, toList(myPatientDao.search(params)).size()); - params = new SearchParameterMap(); - params.setLoadSynchronous(true); - params.add("_language", new StringParam("TEST")); - assertEquals(0, toList(myPatientDao.search(params)).size()); - params = new SearchParameterMap(); params.setLoadSynchronous(true); params.add(Patient.SP_IDENTIFIER, new TokenParam("TEST", "TEST")); @@ -1440,145 +1429,6 @@ public class FhirResourceDaoR4SearchNoHashesTest extends BaseJpaR4Test { } } - @Test - public void testSearchLanguageParam() { - IIdType id1; - { - Patient patient = new Patient(); - patient.getLanguageElement().setValue("en_CA"); - patient.addIdentifier().setSystem("urn:system").setValue("001"); - patient.addName().setFamily("testSearchLanguageParam").addGiven("Joe"); - id1 = myPatientDao.create(patient, mySrd).getId(); - } - IIdType id2; - { - Patient patient = new Patient(); - patient.getLanguageElement().setValue("en_US"); - patient.addIdentifier().setSystem("urn:system").setValue("002"); - patient.addName().setFamily("testSearchLanguageParam").addGiven("John"); - id2 = myPatientDao.create(patient, mySrd).getId(); - } - SearchParameterMap params; - { - params = new SearchParameterMap(); - params.setLoadSynchronous(true); - - params.add(IAnyResource.SP_RES_LANGUAGE, new StringParam("en_CA")); - List patients = toList(myPatientDao.search(params)); - assertEquals(1, patients.size()); - assertEquals(id1.toUnqualifiedVersionless(), patients.get(0).getIdElement().toUnqualifiedVersionless()); - } - { - params = new SearchParameterMap(); - params.setLoadSynchronous(true); - - params.add(IAnyResource.SP_RES_LANGUAGE, new StringParam("en_US")); - List patients = toList(myPatientDao.search(params)); - assertEquals(1, patients.size()); - assertEquals(id2.toUnqualifiedVersionless(), patients.get(0).getIdElement().toUnqualifiedVersionless()); - } - { - params = new SearchParameterMap(); - params.setLoadSynchronous(true); - - params.add(IAnyResource.SP_RES_LANGUAGE, new StringParam("en_GB")); - List patients = toList(myPatientDao.search(params)); - assertEquals(0, patients.size()); - } - } - - @Test - public void testSearchLanguageParamAndOr() { - IIdType id1; - { - Patient patient = new Patient(); - patient.getLanguageElement().setValue("en_CA"); - patient.addIdentifier().setSystem("urn:system").setValue("001"); - patient.addName().setFamily("testSearchLanguageParam").addGiven("Joe"); - id1 = myPatientDao.create(patient, mySrd).getId().toUnqualifiedVersionless(); - } - - TestUtil.sleepOneClick(); - - Date betweenTime = new Date(); - - IIdType id2; - { - Patient patient = new Patient(); - patient.getLanguageElement().setValue("en_US"); - patient.addIdentifier().setSystem("urn:system").setValue("002"); - patient.addName().setFamily("testSearchLanguageParam").addGiven("John"); - id2 = myPatientDao.create(patient, mySrd).getId().toUnqualifiedVersionless(); - } - { - SearchParameterMap params = new SearchParameterMap(); - params.add(IAnyResource.SP_RES_LANGUAGE, new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("en_US"))); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), containsInAnyOrder(id1, id2)); - } - { - SearchParameterMap params = new SearchParameterMap(); - params.add(IAnyResource.SP_RES_LANGUAGE, new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("en_US"))); - params.setLastUpdated(new DateRangeParam(betweenTime, null)); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), containsInAnyOrder(id2)); - } - { - SearchParameterMap params = new SearchParameterMap(); - params.add(IAnyResource.SP_RES_LANGUAGE, new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("ZZZZ"))); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), containsInAnyOrder(id1)); - } - { - SearchParameterMap params = new SearchParameterMap(); - StringAndListParam and = new StringAndListParam(); - and.addAnd(new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("ZZZZ"))); - and.addAnd(new StringOrListParam().addOr(new StringParam("en_CA"))); - params.add(IAnyResource.SP_RES_LANGUAGE, and); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), containsInAnyOrder(id1)); - } - { - SearchParameterMap params = new SearchParameterMap(); - StringAndListParam and = new StringAndListParam(); - and.addAnd(new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("ZZZZ"))); - and.addAnd(new StringOrListParam().addOr(new StringParam("ZZZZZ"))); - params.add(IAnyResource.SP_RES_LANGUAGE, and); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), empty()); - } - { - SearchParameterMap params = new SearchParameterMap(); - StringAndListParam and = new StringAndListParam(); - and.addAnd(new StringOrListParam().addOr(new StringParam("ZZZZZ"))); - and.addAnd(new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("ZZZZ"))); - params.add(IAnyResource.SP_RES_LANGUAGE, and); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), empty()); - } - { - SearchParameterMap params = new SearchParameterMap(); - StringAndListParam and = new StringAndListParam(); - and.addAnd(new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("ZZZZ"))); - and.addAnd(new StringOrListParam().addOr(new StringParam("")).addOr(new StringParam(null))); - params.add(IAnyResource.SP_RES_LANGUAGE, and); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), containsInAnyOrder(id1)); - } - { - SearchParameterMap params = new SearchParameterMap(); - params.add("_id", new StringParam(id1.getIdPart())); - StringAndListParam and = new StringAndListParam(); - and.addAnd(new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("ZZZZ"))); - and.addAnd(new StringOrListParam().addOr(new StringParam("")).addOr(new StringParam(null))); - params.add(IAnyResource.SP_RES_LANGUAGE, and); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), containsInAnyOrder(id1)); - } - { - SearchParameterMap params = new SearchParameterMap(); - StringAndListParam and = new StringAndListParam(); - and.addAnd(new StringOrListParam().addOr(new StringParam("en_CA")).addOr(new StringParam("ZZZZ"))); - and.addAnd(new StringOrListParam().addOr(new StringParam("")).addOr(new StringParam(null))); - params.add(IAnyResource.SP_RES_LANGUAGE, and); - params.add("_id", new StringParam(id1.getIdPart())); - assertThat(toUnqualifiedVersionlessIds(myPatientDao.search(params)), containsInAnyOrder(id1)); - } - - } - @Test public void testSearchLastUpdatedParam() { String methodName = "testSearchLastUpdatedParam"; diff --git a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4Test.java b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4Test.java index 969c47a30ce..e6794b6caea 100644 --- a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4Test.java +++ b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4Test.java @@ -422,9 +422,7 @@ public class FhirResourceDaoR4Test extends BaseJpaR4Test { IIdType orgId = myOrganizationDao.create(org, mySrd).getId().toUnqualifiedVersionless(); - SearchParameterMap map = new SearchParameterMap(); - map.add("_language", new StringParam("EN_ca")); - assertEquals(1, myOrganizationDao.search(map).size().intValue()); + SearchParameterMap map; map = new SearchParameterMap(); map.setLoadSynchronous(true); @@ -433,11 +431,6 @@ public class FhirResourceDaoR4Test extends BaseJpaR4Test { myOrganizationDao.delete(orgId, mySrd); - map = new SearchParameterMap(); - map.setLoadSynchronous(true); - map.add("_language", new StringParam("EN_ca")); - assertEquals(0, myOrganizationDao.search(map).size().intValue()); - map = new SearchParameterMap(); map.setLoadSynchronous(true); map.add("_tag", new TokenParam(methodName, methodName)); @@ -2576,7 +2569,7 @@ public class FhirResourceDaoR4Test extends BaseJpaR4Test { found = toList(myPatientDao.search(new SearchParameterMap(Patient.SP_BIRTHDATE + "AAAA", new DateParam(ParamPrefixEnum.GREATERTHAN, "2000-01-01")).setLoadSynchronous(true))); assertEquals(0, found.size()); } catch (InvalidRequestException e) { - assertEquals("Unknown search parameter \"birthdateAAAA\" for resource type \"Patient\". Valid search parameters for this search are: [_id, _language, _lastUpdated, active, address, address-city, address-country, address-postalcode, address-state, address-use, birthdate, death-date, deceased, email, family, gender, general-practitioner, given, identifier, language, link, name, organization, phone, phonetic, telecom]", e.getMessage()); + assertEquals("Unknown search parameter \"birthdateAAAA\" for resource type \"Patient\". Valid search parameters for this search are: [_content, _id, _lastUpdated, _profile, _security, _source, _tag, _text, active, address, address-city, address-country, address-postalcode, address-state, address-use, birthdate, death-date, deceased, email, family, gender, general-practitioner, given, identifier, language, link, name, organization, phone, phonetic, telecom]", e.getMessage()); } } @@ -3342,7 +3335,7 @@ public class FhirResourceDaoR4Test extends BaseJpaR4Test { myObservationDao.search(pm); fail(); } catch (InvalidRequestException e) { - assertEquals("Unknown _sort parameter value \"hello\" for resource type \"Observation\" (Note: sort parameters values must use a valid Search Parameter). Valid values for this search are: [_id, _language, _lastUpdated, based-on, category, code, code-value-concept, code-value-date, code-value-quantity, code-value-string, combo-code, combo-code-value-concept, combo-code-value-quantity, combo-data-absent-reason, combo-value-concept, combo-value-quantity, component-code, component-code-value-concept, component-code-value-quantity, component-data-absent-reason, component-value-concept, component-value-quantity, data-absent-reason, date, derived-from, device, encounter, focus, has-member, identifier, method, part-of, patient, performer, specimen, status, subject, value-concept, value-date, value-quantity, value-string]", e.getMessage()); + assertEquals("Unknown _sort parameter value \"hello\" for resource type \"Observation\" (Note: sort parameters values must use a valid Search Parameter). Valid values for this search are: [_content, _id, _lastUpdated, _profile, _security, _source, _tag, _text, based-on, category, code, code-value-concept, code-value-date, code-value-quantity, code-value-string, combo-code, combo-code-value-concept, combo-code-value-quantity, combo-data-absent-reason, combo-value-concept, combo-value-quantity, component-code, component-code-value-concept, component-code-value-quantity, component-data-absent-reason, component-value-concept, component-value-quantity, data-absent-reason, date, derived-from, device, encounter, focus, has-member, identifier, method, part-of, patient, performer, specimen, status, subject, value-concept, value-date, value-quantity, value-string]", e.getMessage()); } } diff --git a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoSearchParameterR4Test.java b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoSearchParameterR4Test.java index 85011502e58..78eb2ec76e4 100644 --- a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoSearchParameterR4Test.java +++ b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoSearchParameterR4Test.java @@ -50,9 +50,6 @@ public class FhirResourceDaoSearchParameterR4Test { if (nextp.getName().equals("_id")) { continue; } - if (nextp.getName().equals("_language")) { - continue; - } if (isBlank(nextp.getPath())) { continue; } diff --git a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/PartitioningSqlR4Test.java b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/PartitioningSqlR4Test.java index 7b635e56f1b..150e795a5be 100644 --- a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/PartitioningSqlR4Test.java +++ b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/PartitioningSqlR4Test.java @@ -79,6 +79,7 @@ import static org.hamcrest.Matchers.contains; import static org.hamcrest.Matchers.containsInAnyOrder; import static org.hamcrest.Matchers.containsString; import static org.hamcrest.Matchers.matchesPattern; +import static org.hamcrest.Matchers.not; import static org.hamcrest.Matchers.startsWith; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotEquals; @@ -409,7 +410,7 @@ public class PartitioningSqlR4Test extends BasePartitioningR4Test { // HFJ_SPIDX_STRING List strings = myResourceIndexedSearchParamStringDao.findAllForResourceId(patientId); ourLog.info("\n * {}", strings.stream().map(ResourceIndexedSearchParamString::toString).collect(Collectors.joining("\n * "))); - assertEquals(10, strings.size()); + assertEquals(9, strings.size()); assertEquals(myPartitionId, strings.get(0).getPartitionId().getPartitionId().intValue()); assertEquals(myPartitionDate, strings.get(0).getPartitionId().getPartitionDate()); @@ -492,8 +493,11 @@ public class PartitioningSqlR4Test extends BasePartitioningR4Test { // HFJ_SPIDX_STRING List strings = myResourceIndexedSearchParamStringDao.findAllForResourceId(patientId); - ourLog.info("\n * {}", strings.stream().map(ResourceIndexedSearchParamString::toString).collect(Collectors.joining("\n * "))); - assertEquals(10, strings.size()); + String stringsDesc = strings.stream().map(ResourceIndexedSearchParamString::toString).sorted().collect(Collectors.joining("\n * ")); + ourLog.info("\n * {}", stringsDesc); + assertThat(stringsDesc, not(containsString("_text"))); + assertThat(stringsDesc, not(containsString("_content"))); + assertEquals(9, strings.size(), stringsDesc); assertEquals(null, strings.get(0).getPartitionId().getPartitionId()); assertEquals(myPartitionDate, strings.get(0).getPartitionId().getPartitionDate()); @@ -701,7 +705,7 @@ public class PartitioningSqlR4Test extends BasePartitioningR4Test { // HFJ_SPIDX_STRING List strings = myResourceIndexedSearchParamStringDao.findAllForResourceId(patientId); ourLog.info("\n * {}", strings.stream().map(ResourceIndexedSearchParamString::toString).collect(Collectors.joining("\n * "))); - assertEquals(10, strings.size()); + assertEquals(9, strings.size()); assertEquals(myPartitionId, strings.get(0).getPartitionId().getPartitionId().intValue()); assertEquals(myPartitionDate, strings.get(0).getPartitionId().getPartitionDate()); diff --git a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/graphql/JpaStorageServicesTest.java b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/graphql/JpaStorageServicesTest.java index f0560139ff2..27d843abb58 100644 --- a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/graphql/JpaStorageServicesTest.java +++ b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/graphql/JpaStorageServicesTest.java @@ -106,7 +106,7 @@ public class JpaStorageServicesTest extends BaseJpaR4Test { mySvc.listResources(mySrd, "Appointment", Collections.singletonList(argument), result); fail(); } catch (InvalidRequestException e) { - assertEquals("Unknown GraphQL argument \"test\". Value GraphQL argument for this type are: [_id, _language, actor, appointment_type, based_on, date, identifier, location, part_status, patient, practitioner, reason_code, reason_reference, service_category, service_type, slot, specialty, status, supporting_info]", e.getMessage()); + assertEquals("Unknown GraphQL argument \"test\". Value GraphQL argument for this type are: [_content, _id, _lastUpdated, _profile, _security, _source, _tag, _text, actor, appointment_type, based_on, date, identifier, location, part_status, patient, practitioner, reason_code, reason_reference, service_category, service_type, slot, specialty, status, supporting_info]", e.getMessage()); } } diff --git a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/interceptor/SearchPreferHandlingInterceptorJpaTest.java b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/interceptor/SearchPreferHandlingInterceptorJpaTest.java index 925783d07da..247286c21f6 100644 --- a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/interceptor/SearchPreferHandlingInterceptorJpaTest.java +++ b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/interceptor/SearchPreferHandlingInterceptorJpaTest.java @@ -62,7 +62,7 @@ public class SearchPreferHandlingInterceptorJpaTest extends BaseResourceProvider .execute(); fail(); } catch (InvalidRequestException e) { - assertThat(e.getMessage(), containsString("Unknown search parameter \"foo\" for resource type \"Patient\". Valid search parameters for this search are: [_id, _language, active, address, address-city, address-country, address-postalcode, address-state, address-use, birthdate, death-date, deceased, email, family, gender, general-practitioner, given, identifier, language, link, name, organization, phone, phonetic, telecom]")); + assertThat(e.getMessage(), containsString("Unknown search parameter \"foo\" for resource type \"Patient\". Valid search parameters for this search are: [_content, _id, _lastUpdated, _profile, _security, _source, _tag, _text, active, address, address-city, address-country, address-postalcode, address-state, address-use, birthdate, death-date, deceased, email, family, gender, general-practitioner, given, identifier, language, link, name, organization, phone, phonetic, telecom]")); } } @@ -81,7 +81,7 @@ public class SearchPreferHandlingInterceptorJpaTest extends BaseResourceProvider .execute(); fail(); } catch (InvalidRequestException e) { - assertThat(e.getMessage(), containsString("Unknown search parameter \"foo\" for resource type \"Patient\". Valid search parameters for this search are: [_id, _language, active, address, address-city, address-country, address-postalcode, address-state, address-use, birthdate, death-date, deceased, email, family, gender, general-practitioner, given, identifier, language, link, name, organization, phone, phonetic, telecom]")); + assertThat(e.getMessage(), containsString("Unknown search parameter \"foo\" for resource type \"Patient\". Valid search parameters for this search are: [_content, _id, _lastUpdated, _profile, _security, _source, _tag, _text, active, address, address-city, address-country, address-postalcode, address-state, address-use, birthdate, death-date, deceased, email, family, gender, general-practitioner, given, identifier, language, link, name, organization, phone, phonetic, telecom]")); } } @@ -100,7 +100,7 @@ public class SearchPreferHandlingInterceptorJpaTest extends BaseResourceProvider .execute(); fail(); } catch (InvalidRequestException e) { - assertThat(e.getMessage(), containsString("Unknown search parameter \"foo\" for resource type \"Patient\". Valid search parameters for this search are: [_id, _language, active, address, address-city, address-country, address-postalcode, address-state, address-use, birthdate, death-date, deceased, email, family, gender, general-practitioner, given, identifier, language, link, name, organization, phone, phonetic, telecom]")); + assertThat(e.getMessage(), containsString("Unknown search parameter \"foo\" for resource type \"Patient\". Valid search parameters for this search are: [_content, _id, _lastUpdated, _profile, _security, _source, _tag, _text, active, address, address-city, address-country, address-postalcode, address-state, address-use, birthdate, death-date, deceased, email, family, gender, general-practitioner, given, identifier, language, link, name, organization, phone, phonetic, telecom]")); } } @@ -136,7 +136,7 @@ public class SearchPreferHandlingInterceptorJpaTest extends BaseResourceProvider .execute(); fail(); } catch (InvalidRequestException e) { - assertThat(e.getMessage(), containsString("Unknown search parameter \"foo\" for resource type \"Patient\". Valid search parameters for this search are: [_id, _language, active, address, address-city, address-country, address-postalcode, address-state, address-use, birthdate, death-date, deceased, email, family, gender, general-practitioner, given, identifier, language, link, name, organization, phone, phonetic, telecom]")); + assertThat(e.getMessage(), containsString("Unknown search parameter \"foo\" for resource type \"Patient\". Valid search parameters for this search are: [_content, _id, _lastUpdated, _profile, _security, _source, _tag, _text, active, address, address-city, address-country, address-postalcode, address-state, address-use, birthdate, death-date, deceased, email, family, gender, general-practitioner, given, identifier, language, link, name, organization, phone, phonetic, telecom]")); } } diff --git a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/provider/r4/ServerCapabilityStatementProviderJpaR4Test.java b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/provider/r4/ServerCapabilityStatementProviderJpaR4Test.java index f32eb24e324..920b5a14a7f 100644 --- a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/provider/r4/ServerCapabilityStatementProviderJpaR4Test.java +++ b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/provider/r4/ServerCapabilityStatementProviderJpaR4Test.java @@ -5,6 +5,10 @@ import ca.uhn.fhir.jpa.packages.PackageInstallationSpec; import ca.uhn.fhir.rest.api.CacheControlDirective; import ca.uhn.fhir.rest.api.Constants; import ca.uhn.fhir.rest.server.provider.ServerCapabilityStatementProvider; +import org.apache.commons.lang3.StringUtils; +import org.hl7.fhir.instance.model.api.IAnyResource; +import org.hl7.fhir.r4.model.Bundle; +import org.hamcrest.Matchers; import org.hl7.fhir.r4.model.CapabilityStatement; import org.hl7.fhir.r4.model.Enumerations; import org.hl7.fhir.r4.model.SearchParameter; @@ -17,8 +21,10 @@ import org.slf4j.LoggerFactory; import javax.annotation.Nonnull; import java.io.IOException; import java.util.List; +import java.util.Set; import java.util.stream.Collectors; +import static org.apache.commons.lang3.StringUtils.isNotBlank; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.containsInAnyOrder; import static org.hamcrest.Matchers.hasItem; @@ -26,11 +32,42 @@ import static org.hamcrest.Matchers.hasItems; import static org.hamcrest.Matchers.hasSize; import static org.hamcrest.Matchers.not; import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.fail; public class ServerCapabilityStatementProviderJpaR4Test extends BaseResourceProviderR4Test { private static final Logger ourLog = LoggerFactory.getLogger(ServerCapabilityStatementProviderJpaR4Test.class); + @Test + public void testBuiltInSearchParameters() { + CapabilityStatement cs = myClient.capabilities().ofType(CapabilityStatement.class).execute(); + CapabilityStatement.CapabilityStatementRestResourceComponent resource = cs.getRest().get(0).getResource().get(0); + List definitions = resource.getSearchParam() + .stream() + .filter(t -> isNotBlank(t.getDefinition())) + .map(t->t.getDefinition()) + .sorted() + .collect(Collectors.toList()); + assertThat(definitions.toString(), definitions, Matchers.contains( + "http://hl7.org/fhir/SearchParameter/Account-identifier", + "http://hl7.org/fhir/SearchParameter/Account-name", + "http://hl7.org/fhir/SearchParameter/Account-owner", + "http://hl7.org/fhir/SearchParameter/Account-patient", + "http://hl7.org/fhir/SearchParameter/Account-period", + "http://hl7.org/fhir/SearchParameter/Account-status", + "http://hl7.org/fhir/SearchParameter/Account-subject", + "http://hl7.org/fhir/SearchParameter/Account-type", + "http://hl7.org/fhir/SearchParameter/DomainResource-text", + "http://hl7.org/fhir/SearchParameter/Resource-content", + "http://hl7.org/fhir/SearchParameter/Resource-id", + "http://hl7.org/fhir/SearchParameter/Resource-lastUpdated", + "http://hl7.org/fhir/SearchParameter/Resource-profile", + "http://hl7.org/fhir/SearchParameter/Resource-security", + "http://hl7.org/fhir/SearchParameter/Resource-source", + "http://hl7.org/fhir/SearchParameter/Resource-tag" + )); + } + @Test public void testCorrectResourcesReflected() { CapabilityStatement cs = myClient.capabilities().ofType(CapabilityStatement.class).execute(); @@ -104,8 +141,8 @@ public class ServerCapabilityStatementProviderJpaR4Test extends BaseResourceProv List fooSearchParams = findSearchParams(cs, "Patient", "_lastUpdated"); assertEquals(1, fooSearchParams.size()); assertEquals("_lastUpdated", fooSearchParams.get(0).getName()); - assertEquals("http://localhost:" + ourPort + "/fhir/context/SearchParameter/Patient-_lastUpdated", fooSearchParams.get(0).getDefinition()); - assertEquals("Only return resources which were last updated as specified by the given range", fooSearchParams.get(0).getDocumentation()); + assertEquals("http://hl7.org/fhir/SearchParameter/Resource-lastUpdated", fooSearchParams.get(0).getDefinition()); + assertEquals("When the resource version last changed", fooSearchParams.get(0).getDocumentation()); assertEquals(Enumerations.SearchParamType.DATE, fooSearchParams.get(0).getType()); } @@ -265,6 +302,35 @@ public class ServerCapabilityStatementProviderJpaR4Test extends BaseResourceProv assertThat(findSearchParams(cs, "Patient", Constants.PARAM_FILTER), hasSize(0)); } + + @Test + public void testBuiltInParametersHaveAppropriateUrl() throws IOException { + Bundle allSearchParamBundle = loadResourceFromClasspath(Bundle.class, "org/hl7/fhir/r4/model/sp/search-parameters.json"); + Set allSearchParamUrls = allSearchParamBundle + .getEntry() + .stream() + .map(t -> (SearchParameter) t.getResource()) + .map(t -> t.getUrl()) + .filter(StringUtils::isNotBlank) + .collect(Collectors.toSet()); + + CapabilityStatement cs = myClient.capabilities().ofType(CapabilityStatement.class).execute(); + for (CapabilityStatement.CapabilityStatementRestResourceComponent nextResource : cs.getRestFirstRep().getResource()) { + for (CapabilityStatement.CapabilityStatementRestResourceSearchParamComponent nextSp : nextResource.getSearchParam()) { + if (nextSp.getName().equals("_has")) { + if (nextSp.getDefinition() == null) { + continue; + } + } + if (!allSearchParamUrls.contains(nextSp.getDefinition())) { + fail("Invalid search parameter: " + nextSp.getName() + " has definition URL: " + nextSp.getDefinition()); + } + } + } + } + + + @Nonnull private List findSupportedProfiles(CapabilityStatement theCapabilityStatement, String theResourceType) { assertEquals(1, theCapabilityStatement.getRest().size()); diff --git a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/stresstest/GiantTransactionPerfTest.java b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/stresstest/GiantTransactionPerfTest.java index 405e2302044..fb0bb5230dd 100644 --- a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/stresstest/GiantTransactionPerfTest.java +++ b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/stresstest/GiantTransactionPerfTest.java @@ -36,6 +36,7 @@ import ca.uhn.fhir.jpa.searchparam.extractor.SearchParamExtractorR4; import ca.uhn.fhir.jpa.searchparam.extractor.SearchParamExtractorService; import ca.uhn.fhir.jpa.searchparam.matcher.InMemoryResourceMatcher; import ca.uhn.fhir.jpa.searchparam.registry.SearchParamRegistryImpl; +import ca.uhn.fhir.jpa.searchparam.registry.SearchParameterCanonicalizer; import ca.uhn.fhir.jpa.sp.SearchParamPresenceSvcImpl; import ca.uhn.fhir.rest.api.server.RequestDetails; import ca.uhn.fhir.rest.server.servlet.ServletRequestDetails; @@ -218,6 +219,7 @@ public class GiantTransactionPerfTest { mySearchParamRegistry = new SearchParamRegistryImpl(); mySearchParamRegistry.setResourceChangeListenerRegistry(myResourceChangeListenerRegistry); + mySearchParamRegistry.setSearchParameterCanonicalizerForUnitTest(new SearchParameterCanonicalizer(myCtx)); mySearchParamRegistry.setFhirContext(myCtx); mySearchParamRegistry.setModelConfig(myDaoConfig.getModelConfig()); mySearchParamRegistry.registerListener(); diff --git a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/subscription/module/matcher/InMemorySubscriptionMatcherR4Test.java b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/subscription/module/matcher/InMemorySubscriptionMatcherR4Test.java index 7830b2b682f..da710f61202 100644 --- a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/subscription/module/matcher/InMemorySubscriptionMatcherR4Test.java +++ b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/subscription/module/matcher/InMemorySubscriptionMatcherR4Test.java @@ -338,18 +338,6 @@ public class InMemorySubscriptionMatcherR4Test { assertNotMatched(o1, params); } - @Test - public void testLanguageNotSupported() { - Patient patient = new Patient(); - patient.getLanguageElement().setValue("en_CA"); - patient.addIdentifier().setSystem("urn:system").setValue("001"); - patient.addName().setFamily("testSearchLanguageParam").addGiven("Joe"); - SearchParameterMap params; - params = new SearchParameterMap(); - params.add(IAnyResource.SP_RES_LANGUAGE, new StringParam("en_CA")); - assertUnsupported(patient, params); - } - @Test public void testLocationPositionNotSupported() { Location loc = new Location(); diff --git a/hapi-fhir-jpaserver-batch/pom.xml b/hapi-fhir-jpaserver-batch/pom.xml index 537dbf63a6d..cf0abe606d6 100644 --- a/hapi-fhir-jpaserver-batch/pom.xml +++ b/hapi-fhir-jpaserver-batch/pom.xml @@ -6,7 +6,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-jpaserver-cql/pom.xml b/hapi-fhir-jpaserver-cql/pom.xml index d35fc53d840..d08c19cfdca 100644 --- a/hapi-fhir-jpaserver-cql/pom.xml +++ b/hapi-fhir-jpaserver-cql/pom.xml @@ -7,7 +7,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-jpaserver-mdm/pom.xml b/hapi-fhir-jpaserver-mdm/pom.xml index b107b05524d..0ebb48c99dd 100644 --- a/hapi-fhir-jpaserver-mdm/pom.xml +++ b/hapi-fhir-jpaserver-mdm/pom.xml @@ -6,7 +6,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-jpaserver-migrate/pom.xml b/hapi-fhir-jpaserver-migrate/pom.xml index 51ad10f5afd..6381faf35c4 100644 --- a/hapi-fhir-jpaserver-migrate/pom.xml +++ b/hapi-fhir-jpaserver-migrate/pom.xml @@ -4,7 +4,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/HapiFhirJpaMigrationTasks.java b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/HapiFhirJpaMigrationTasks.java index dcd04dcad57..5cd1eb78135 100644 --- a/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/HapiFhirJpaMigrationTasks.java +++ b/hapi-fhir-jpaserver-migrate/src/main/java/ca/uhn/fhir/jpa/migrate/tasks/HapiFhirJpaMigrationTasks.java @@ -122,6 +122,12 @@ public class HapiFhirJpaMigrationTasks extends BaseMigrationTasks { cmbTokNuTable.addColumn("20210722.1", "PARTITION_ID").nullable().type(ColumnTypeEnum.INT); cmbTokNuTable.addColumn("20210722.2", "PARTITION_DATE").nullable().type(ColumnTypeEnum.DATE_ONLY); cmbTokNuTable.modifyColumn("20210722.3", "RES_ID").nullable().withType(ColumnTypeEnum.LONG); + + // Dropping index on the language column, as it's no longer in use. + // TODO: After 2 releases from 5.5.0, drop the column too + version.onTable("HFJ_RESOURCE") + .dropIndex("20210908.1", "IDX_RES_LANG"); + } private void init540() { diff --git a/hapi-fhir-jpaserver-model/pom.xml b/hapi-fhir-jpaserver-model/pom.xml index 99858b3966c..d37223e4c57 100644 --- a/hapi-fhir-jpaserver-model/pom.xml +++ b/hapi-fhir-jpaserver-model/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceTable.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceTable.java index 171694e4623..6ddd162e87f 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceTable.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/entity/ResourceTable.java @@ -55,7 +55,6 @@ import static org.apache.commons.lang3.StringUtils.defaultString; @Entity @Table(name = "HFJ_RESOURCE", uniqueConstraints = {}, indexes = { @Index(name = "IDX_RES_DATE", columnList = "RES_UPDATED"), - @Index(name = "IDX_RES_LANG", columnList = "RES_TYPE,RES_LANGUAGE"), @Index(name = "IDX_RES_TYPE", columnList = "RES_TYPE"), @Index(name = "IDX_INDEXSTATUS", columnList = "SP_INDEX_STATUS") }) @@ -100,6 +99,7 @@ public class ResourceTable extends BaseHasResource implements Serializable, IBas @OptimisticLock(excluded = true) private Long myIndexStatus; + // TODO: Removed in 5.5.0. Drop in a future release. @Column(name = "RES_LANGUAGE", length = MAX_LANGUAGE_LENGTH, nullable = true) @OptimisticLock(excluded = true) private String myLanguage; @@ -310,17 +310,6 @@ public class ResourceTable extends BaseHasResource implements Serializable, IBas myIndexStatus = theIndexStatus; } - public String getLanguage() { - return myLanguage; - } - - public void setLanguage(String theLanguage) { - if (defaultString(theLanguage).length() > MAX_LANGUAGE_LENGTH) { - throw new UnprocessableEntityException("Language exceeds maximum length of " + MAX_LANGUAGE_LENGTH + " chars: " + theLanguage); - } - myLanguage = theLanguage; - } - public Collection getParamsComboStringUnique() { if (myParamsComboStringUnique == null) { myParamsComboStringUnique = new ArrayList<>(); diff --git a/hapi-fhir-jpaserver-searchparam/pom.xml b/hapi-fhir-jpaserver-searchparam/pom.xml index a3057b5f43b..769c3156374 100755 --- a/hapi-fhir-jpaserver-searchparam/pom.xml +++ b/hapi-fhir-jpaserver-searchparam/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/ResourceMetaParams.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/ResourceMetaParams.java index fb11a890cb5..e274c69e505 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/ResourceMetaParams.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/ResourceMetaParams.java @@ -52,8 +52,6 @@ public class ResourceMetaParams { Map>> resourceMetaAndParams = new HashMap<>(); resourceMetaParams.put(IAnyResource.SP_RES_ID, StringParam.class); resourceMetaAndParams.put(IAnyResource.SP_RES_ID, StringAndListParam.class); - resourceMetaParams.put(IAnyResource.SP_RES_LANGUAGE, StringParam.class); - resourceMetaAndParams.put(IAnyResource.SP_RES_LANGUAGE, StringAndListParam.class); resourceMetaParams.put(Constants.PARAM_TAG, TokenParam.class); resourceMetaAndParams.put(Constants.PARAM_TAG, TokenAndListParam.class); resourceMetaParams.put(Constants.PARAM_PROFILE, UriParam.class); diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/ResourceIndexedSearchParams.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/ResourceIndexedSearchParams.java index 9416e13683b..503a7f97768 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/ResourceIndexedSearchParams.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/extractor/ResourceIndexedSearchParams.java @@ -225,7 +225,7 @@ public final class ResourceIndexedSearchParams { resourceParams = myDateParams; break; case REFERENCE: - return matchResourceLinks(theModelConfig, theResourceName, theParamName, value, theParamDef.getPath()); + return matchResourceLinks(theModelConfig, theResourceName, theParamName, value, theParamDef.getPathsSplitForResourceType(theResourceName)); case COMPOSITE: case HAS: case SPECIAL: @@ -256,6 +256,15 @@ public final class ResourceIndexedSearchParams { return matchResourceLinks(new ModelConfig(), theResourceName, theParamName, theParam, theParamPath); } + public boolean matchResourceLinks(ModelConfig theModelConfig, String theResourceName, String theParamName, IQueryParameterType theParam, List theParamPaths) { + for (String nextPath : theParamPaths) { + if (matchResourceLinks(theModelConfig, theResourceName, theParamName, theParam, nextPath)) { + return true; + } + } + return false; + } + // KHS This needs to be public as libraries outside of hapi call it directly public boolean matchResourceLinks(ModelConfig theModelConfig, String theResourceName, String theParamName, IQueryParameterType theParam, String theParamPath) { ReferenceParam reference = (ReferenceParam) theParam; @@ -331,6 +340,10 @@ public final class ResourceIndexedSearchParams { Collection paramCollection) { for (Map.Entry nextEntry : activeSearchParams) { String nextParamName = nextEntry.getKey(); + if (nextParamName == null || nextParamName.startsWith("_")) { + continue; + } + if (nextEntry.getValue().getParamType() == type) { boolean haveParam = false; for (BaseResourceIndexedSearchParam nextParam : paramCollection) { diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/matcher/InMemoryResourceMatcher.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/matcher/InMemoryResourceMatcher.java index f6d0027898f..86dbdd3047b 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/matcher/InMemoryResourceMatcher.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/matcher/InMemoryResourceMatcher.java @@ -164,7 +164,6 @@ public class InMemoryResourceMatcher { case IAnyResource.SP_RES_ID: return InMemoryMatchResult.fromBoolean(matchIdsAndOr(theAndOrParams, theResource)); - case IAnyResource.SP_RES_LANGUAGE: case Constants.PARAM_HAS: case Constants.PARAM_TAG: case Constants.PARAM_PROFILE: diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/ReadOnlySearchParamCache.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/ReadOnlySearchParamCache.java index 1b578384de2..58ea735f490 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/ReadOnlySearchParamCache.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/ReadOnlySearchParamCache.java @@ -21,10 +21,17 @@ package ca.uhn.fhir.jpa.searchparam.registry; */ import ca.uhn.fhir.context.FhirContext; +import ca.uhn.fhir.context.FhirVersionEnum; import ca.uhn.fhir.context.RuntimeResourceDefinition; import ca.uhn.fhir.context.RuntimeSearchParam; +import ca.uhn.fhir.util.BundleUtil; +import ca.uhn.fhir.util.ClasspathUtil; import com.google.common.annotations.VisibleForTesting; +import org.apache.commons.lang3.tuple.Pair; +import org.hl7.fhir.instance.model.api.IBaseBundle; +import org.hl7.fhir.instance.model.api.IBaseResource; +import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.Map; @@ -73,22 +80,42 @@ public class ReadOnlySearchParamCache { return myUrlToParam.get(theUrl); } - public static ReadOnlySearchParamCache fromFhirContext(FhirContext theFhirContext) { - ReadOnlySearchParamCache retval = new ReadOnlySearchParamCache(); + public static ReadOnlySearchParamCache fromFhirContext(FhirContext theFhirContext, SearchParameterCanonicalizer theCanonicalizer) { + assert theCanonicalizer != null; + + ReadOnlySearchParamCache retVal = new ReadOnlySearchParamCache(); Set resourceNames = theFhirContext.getResourceTypes(); + if (theFhirContext.getVersion().getVersion() == FhirVersionEnum.R4) { + IBaseBundle allSearchParameterBundle = (IBaseBundle) theFhirContext.newJsonParser().parseResource(ClasspathUtil.loadResourceAsStream("org/hl7/fhir/r4/model/sp/search-parameters.json")); + for (IBaseResource next : BundleUtil.toListOfResources(theFhirContext, allSearchParameterBundle)) { + RuntimeSearchParam nextCanonical = theCanonicalizer.canonicalizeSearchParameter(next); + if (nextCanonical != null) { + Collection base = nextCanonical.getBase(); + if (base.contains("Resource") || base.contains("DomainResource")) { + base = resourceNames; + } + + for (String nextBase : base) { + Map nameToParam = retVal.myResourceNameToSpNameToSp.computeIfAbsent(nextBase, t -> new HashMap<>()); + String nextName = nextCanonical.getName(); + nameToParam.putIfAbsent(nextName, nextCanonical); + } + } + } + } + for (String resourceName : resourceNames) { RuntimeResourceDefinition nextResDef = theFhirContext.getResourceDefinition(resourceName); String nextResourceName = nextResDef.getName(); - HashMap nameToParam = new HashMap<>(); - retval.myResourceNameToSpNameToSp.put(nextResourceName, nameToParam); + Map nameToParam = retVal.myResourceNameToSpNameToSp.computeIfAbsent(nextResourceName, t-> new HashMap<>()); for (RuntimeSearchParam nextSp : nextResDef.getSearchParams()) { - nameToParam.put(nextSp.getName(), nextSp); + nameToParam.putIfAbsent(nextSp.getName(), nextSp); } } - return retval; + return retVal; } public static ReadOnlySearchParamCache fromRuntimeSearchParamCache(RuntimeSearchParamCache theRuntimeSearchParamCache) { diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/SearchParamRegistryImpl.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/SearchParamRegistryImpl.java index d465608e66c..1cf5e6f1939 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/SearchParamRegistryImpl.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/SearchParamRegistryImpl.java @@ -167,7 +167,7 @@ public class SearchParamRegistryImpl implements ISearchParamRegistry, IResourceC private ReadOnlySearchParamCache getBuiltInSearchParams() { if (myBuiltInSearchParams == null) { - myBuiltInSearchParams = ReadOnlySearchParamCache.fromFhirContext(myFhirContext); + myBuiltInSearchParams = ReadOnlySearchParamCache.fromFhirContext(myFhirContext, mySearchParameterCanonicalizer); } return myBuiltInSearchParams; } @@ -314,4 +314,9 @@ public class SearchParamRegistryImpl implements ISearchParamRegistry, IResourceC handleInit(Collections.emptyList()); } + @VisibleForTesting + public void setSearchParameterCanonicalizerForUnitTest(SearchParameterCanonicalizer theSearchParameterCanonicalizerForUnitTest) { + mySearchParameterCanonicalizer = theSearchParameterCanonicalizerForUnitTest; + } + } diff --git a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/SearchParameterCanonicalizer.java b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/SearchParameterCanonicalizer.java index da2b3b9a587..e9e679c4050 100644 --- a/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/SearchParameterCanonicalizer.java +++ b/hapi-fhir-jpaserver-searchparam/src/main/java/ca/uhn/fhir/jpa/searchparam/registry/SearchParameterCanonicalizer.java @@ -87,7 +87,11 @@ public class SearchParameterCanonicalizer { default: throw new InternalErrorException("SearchParameter canonicalization not supported for FHIR version" + myFhirContext.getVersion().getVersion()); } - extractExtensions(theSearchParameter, retVal); + + if (retVal != null) { + extractExtensions(theSearchParameter, retVal); + } + return retVal; } @@ -309,7 +313,9 @@ public class SearchParameterCanonicalizer { Set targets = terser.getValues(theNextSp, "target", IPrimitiveType.class).stream().map(t -> t.getValueAsString()).collect(Collectors.toSet()); if (isBlank(name) || isBlank(path) || paramType == null) { - if (paramType != RestSearchParameterTypeEnum.COMPOSITE) { + if ("_text".equals(name) || "_content".equals(name)) { + // ok + } else if (paramType != RestSearchParameterTypeEnum.COMPOSITE) { return null; } } diff --git a/hapi-fhir-jpaserver-searchparam/src/test/java/ca/uhn/fhir/jpa/searchparam/registry/SearchParamRegistryImplTest.java b/hapi-fhir-jpaserver-searchparam/src/test/java/ca/uhn/fhir/jpa/searchparam/registry/SearchParamRegistryImplTest.java index 7c02e9b71db..a8e46ee64a2 100644 --- a/hapi-fhir-jpaserver-searchparam/src/test/java/ca/uhn/fhir/jpa/searchparam/registry/SearchParamRegistryImplTest.java +++ b/hapi-fhir-jpaserver-searchparam/src/test/java/ca/uhn/fhir/jpa/searchparam/registry/SearchParamRegistryImplTest.java @@ -63,7 +63,7 @@ import static org.mockito.Mockito.when; @ExtendWith(SpringExtension.class) public class SearchParamRegistryImplTest { private static final FhirContext ourFhirContext = FhirContext.forR4(); - private static final ReadOnlySearchParamCache ourBuiltInSearchParams = ReadOnlySearchParamCache.fromFhirContext(ourFhirContext); + private static final ReadOnlySearchParamCache ourBuiltInSearchParams = ReadOnlySearchParamCache.fromFhirContext(ourFhirContext, new SearchParameterCanonicalizer(ourFhirContext)); public static final int TEST_SEARCH_PARAMS = 3; private static final List ourEntities; @@ -77,7 +77,7 @@ public class SearchParamRegistryImplTest { ourEntities.add(createEntity(ourLastId, 1)); } ourResourceVersionMap = ResourceVersionMap.fromResourceTableEntities(ourEntities); - ourBuiltinPatientSearchParamCount = ReadOnlySearchParamCache.fromFhirContext(ourFhirContext).getSearchParamMap("Patient").size(); + ourBuiltinPatientSearchParamCount = ReadOnlySearchParamCache.fromFhirContext(ourFhirContext, new SearchParameterCanonicalizer(ourFhirContext)).getSearchParamMap("Patient").size(); } @Autowired @@ -178,7 +178,7 @@ public class SearchParamRegistryImplTest { @Test void handleInit() { - assertEquals(25, mySearchParamRegistry.getActiveSearchParams("Patient").size()); + assertEquals(31, mySearchParamRegistry.getActiveSearchParams("Patient").size()); IdDt idBad = new IdDt("SearchParameter/bad"); when(mySearchParamProvider.read(idBad)).thenThrow(new ResourceNotFoundException("id bad")); @@ -191,7 +191,7 @@ public class SearchParamRegistryImplTest { idList.add(idBad); idList.add(idGood); mySearchParamRegistry.handleInit(idList); - assertEquals(26, mySearchParamRegistry.getActiveSearchParams("Patient").size()); + assertEquals(32, mySearchParamRegistry.getActiveSearchParams("Patient").size()); } @Test diff --git a/hapi-fhir-jpaserver-subscription/pom.xml b/hapi-fhir-jpaserver-subscription/pom.xml index ec5d4f3dbfb..e82047b9a84 100644 --- a/hapi-fhir-jpaserver-subscription/pom.xml +++ b/hapi-fhir-jpaserver-subscription/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-jpaserver-test-utilities/pom.xml b/hapi-fhir-jpaserver-test-utilities/pom.xml index cd6c3fadfcc..ed0446ecb7c 100644 --- a/hapi-fhir-jpaserver-test-utilities/pom.xml +++ b/hapi-fhir-jpaserver-test-utilities/pom.xml @@ -6,7 +6,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-jpaserver-uhnfhirtest/pom.xml b/hapi-fhir-jpaserver-uhnfhirtest/pom.xml index b044e150afd..102099628b9 100644 --- a/hapi-fhir-jpaserver-uhnfhirtest/pom.xml +++ b/hapi-fhir-jpaserver-uhnfhirtest/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-fhir - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../pom.xml diff --git a/hapi-fhir-server-mdm/pom.xml b/hapi-fhir-server-mdm/pom.xml index 6bce8a8a03a..c4b363475e5 100644 --- a/hapi-fhir-server-mdm/pom.xml +++ b/hapi-fhir-server-mdm/pom.xml @@ -7,7 +7,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-server-openapi/pom.xml b/hapi-fhir-server-openapi/pom.xml index fa6e5acf538..a7a0f5b62e4 100644 --- a/hapi-fhir-server-openapi/pom.xml +++ b/hapi-fhir-server-openapi/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-server/pom.xml b/hapi-fhir-server/pom.xml index df1d48956cb..9e939a8b842 100644 --- a/hapi-fhir-server/pom.xml +++ b/hapi-fhir-server/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/SearchMethodBinding.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/SearchMethodBinding.java index 233414fcabc..47141ac21b8 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/SearchMethodBinding.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/method/SearchMethodBinding.java @@ -59,7 +59,6 @@ public class SearchMethodBinding extends BaseResourceReturningMethodBinding { static { HashSet specialSearchParams = new HashSet<>(); specialSearchParams.add(IAnyResource.SP_RES_ID); - specialSearchParams.add(IAnyResource.SP_RES_LANGUAGE); specialSearchParams.add(Constants.PARAM_INCLUDE); specialSearchParams.add(Constants.PARAM_REVINCLUDE); SPECIAL_SEARCH_PARAMS = Collections.unmodifiableSet(specialSearchParams); diff --git a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/ServerCapabilityStatementProvider.java b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/ServerCapabilityStatementProvider.java index 923bc8f5519..408b8baa10c 100644 --- a/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/ServerCapabilityStatementProvider.java +++ b/hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/provider/ServerCapabilityStatementProvider.java @@ -411,15 +411,7 @@ public class ServerCapabilityStatementProvider implements IServerConformanceProv } String spUri = next.getUri(); - if (isBlank(spUri) && servletRequest != null) { - String id; - if (next.getId() != null) { - id = next.getId().toUnqualifiedVersionless().getValue(); - } else { - id = resourceName + "-" + next.getName(); - } - spUri = configuration.getServerAddressStrategy().determineServerBase(servletRequest.getServletContext(), servletRequest) + "/" + id; - } + if (isNotBlank(spUri)) { terser.addElement(searchParam, "definition", spUri); } diff --git a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-autoconfigure/pom.xml b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-autoconfigure/pom.xml index 806c163b4a0..53e0d08a968 100644 --- a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-autoconfigure/pom.xml +++ b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-autoconfigure/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-client-apache/pom.xml b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-client-apache/pom.xml index 20d4de90f0b..1bc5de61f40 100644 --- a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-client-apache/pom.xml +++ b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-client-apache/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-fhir-spring-boot-samples - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT hapi-fhir-spring-boot-sample-client-apache diff --git a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-client-okhttp/pom.xml b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-client-okhttp/pom.xml index 42703201b87..7e30b65d2b7 100644 --- a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-client-okhttp/pom.xml +++ b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-client-okhttp/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-fhir-spring-boot-samples - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT hapi-fhir-spring-boot-sample-client-okhttp diff --git a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-server-jersey/pom.xml b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-server-jersey/pom.xml index da89e1a588e..a76318684c6 100644 --- a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-server-jersey/pom.xml +++ b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/hapi-fhir-spring-boot-sample-server-jersey/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-fhir-spring-boot-samples - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT hapi-fhir-spring-boot-sample-server-jersey diff --git a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/pom.xml b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/pom.xml index eed71fc788b..4f824c60db2 100644 --- a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/pom.xml +++ b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-samples/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-fhir-spring-boot - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT hapi-fhir-spring-boot-samples diff --git a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-starter/pom.xml b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-starter/pom.xml index c85465c39c1..d0d3f5e065f 100644 --- a/hapi-fhir-spring-boot/hapi-fhir-spring-boot-starter/pom.xml +++ b/hapi-fhir-spring-boot/hapi-fhir-spring-boot-starter/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-spring-boot/pom.xml b/hapi-fhir-spring-boot/pom.xml index 3153f3339c5..04d9e96e88d 100644 --- a/hapi-fhir-spring-boot/pom.xml +++ b/hapi-fhir-spring-boot/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-fhir - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../pom.xml diff --git a/hapi-fhir-structures-dstu/src/main/java/ca/uhn/fhir/model/dstu/resource/BaseResource.java b/hapi-fhir-structures-dstu/src/main/java/ca/uhn/fhir/model/dstu/resource/BaseResource.java index 40ddf538aa4..5c0a967eede 100644 --- a/hapi-fhir-structures-dstu/src/main/java/ca/uhn/fhir/model/dstu/resource/BaseResource.java +++ b/hapi-fhir-structures-dstu/src/main/java/ca/uhn/fhir/model/dstu/resource/BaseResource.java @@ -72,18 +72,9 @@ public abstract class BaseResource extends BaseElement implements IResource { @SearchParamDefinition(name="_id", path="", description="The ID of the resource", type="string" ) public static final String SP_RES_ID = "_id"; - /** - * Search parameter constant for _language - */ - @SearchParamDefinition(name="_language", path="", description="The language of the resource", type="string" ) - public static final String SP_RES_LANGUAGE = "_language"; - - - @Child(name = "contained", order = 2, min = 0, max = 1) private ContainedDt myContained; - private IdDt myId; @Child(name = "language", order = 0, min = 0, max = 1) diff --git a/hapi-fhir-structures-dstu/src/test/java/ca/uhn/fhir/context/NameChanges.java b/hapi-fhir-structures-dstu/src/test/java/ca/uhn/fhir/context/NameChanges.java index 981616ce838..1e76f5aef99 100644 --- a/hapi-fhir-structures-dstu/src/test/java/ca/uhn/fhir/context/NameChanges.java +++ b/hapi-fhir-structures-dstu/src/test/java/ca/uhn/fhir/context/NameChanges.java @@ -42,7 +42,7 @@ public class NameChanges { } if (name.startsWith("_")) { - continue; // _id and _language + continue; // _id } String path = nextParam.getPath(); diff --git a/hapi-fhir-structures-dstu/src/test/java/ca/uhn/fhir/context/copy/NameChanges.java b/hapi-fhir-structures-dstu/src/test/java/ca/uhn/fhir/context/copy/NameChanges.java index d8e2ec91a98..4ef90922f1d 100644 --- a/hapi-fhir-structures-dstu/src/test/java/ca/uhn/fhir/context/copy/NameChanges.java +++ b/hapi-fhir-structures-dstu/src/test/java/ca/uhn/fhir/context/copy/NameChanges.java @@ -42,7 +42,7 @@ public class NameChanges { } if (name.startsWith("_")) { - continue; // _id and _language + continue; // _id } String path = nextParam.getPath(); diff --git a/hapi-fhir-structures-dstu/src/test/resources/alert.profile.json b/hapi-fhir-structures-dstu/src/test/resources/alert.profile.json index d2466f49221..4495f27dd94 100644 --- a/hapi-fhir-structures-dstu/src/test/resources/alert.profile.json +++ b/hapi-fhir-structures-dstu/src/test/resources/alert.profile.json @@ -277,11 +277,6 @@ "type": "token", "documentation": "The logical resource id associated with the resource (must be supported by all servers)" }, - { - "name": "_language", - "type": "token", - "documentation": "The language of the resource" - }, { "name": "subject", "type": "reference", @@ -291,4 +286,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/hapi-fhir-structures-dstu/src/test/resources/patient.profile.json b/hapi-fhir-structures-dstu/src/test/resources/patient.profile.json index 2ad4938e7f4..377618894c5 100644 --- a/hapi-fhir-structures-dstu/src/test/resources/patient.profile.json +++ b/hapi-fhir-structures-dstu/src/test/resources/patient.profile.json @@ -1021,11 +1021,6 @@ "type": "token", "documentation": "The logical resource id associated with the resource (must be supported by all servers)" }, - { - "name": "_language", - "type": "token", - "documentation": "The language of the resource" - }, { "name": "active", "type": "token", @@ -1118,4 +1113,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/hapi-fhir-structures-dstu2.1/pom.xml b/hapi-fhir-structures-dstu2.1/pom.xml index 985c794b0b0..203d9759eb9 100644 --- a/hapi-fhir-structures-dstu2.1/pom.xml +++ b/hapi-fhir-structures-dstu2.1/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-structures-dstu2/pom.xml b/hapi-fhir-structures-dstu2/pom.xml index bea02731f16..6545402f181 100644 --- a/hapi-fhir-structures-dstu2/pom.xml +++ b/hapi-fhir-structures-dstu2/pom.xml @@ -4,7 +4,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/resource/BaseResource.java b/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/resource/BaseResource.java index 67df821c05f..e4e72f5310b 100644 --- a/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/resource/BaseResource.java +++ b/hapi-fhir-structures-dstu2/src/main/java/ca/uhn/fhir/model/dstu2/resource/BaseResource.java @@ -69,13 +69,6 @@ public abstract class BaseResource extends BaseElement implements IResource { @SearchParamDefinition(name="_id", path="", description="The ID of the resource", type="string" ) public static final String SP_RES_ID = "_id"; - - /** - * Search parameter constant for _language - */ - @SearchParamDefinition(name="_language", path="", description="The language of the resource", type="string" ) - public static final String SP_RES_LANGUAGE = "_language"; - @Child(name = "contained", order = 2, min = 0, max = 1) private ContainedDt myContained; @@ -127,7 +120,7 @@ public abstract class BaseResource extends BaseElement implements IResource { @Override public IBaseMetaType addProfile(String theProfile) { - ArrayList newTagList = new ArrayList(); + ArrayList newTagList = new ArrayList<>(); List existingTagList = ResourceMetadataKeyEnum.PROFILES.get(BaseResource.this); if (existingTagList != null) { newTagList.addAll(existingTagList); diff --git a/hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/rest/server/PatientResourceProvider.java b/hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/rest/server/PatientResourceProvider.java index 72ba6d6eeb8..07079f0e3e2 100644 --- a/hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/rest/server/PatientResourceProvider.java +++ b/hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/rest/server/PatientResourceProvider.java @@ -33,10 +33,6 @@ public class PatientResourceProvider implements IResourceProvider @OptionalParam(name="_id") StringAndListParam theId, - @Description(shortDefinition="The resource language") - @OptionalParam(name="_language") - StringAndListParam theResourceLanguage, - @Description(shortDefinition="Search the contents of the resource's data using a fulltext search") @OptionalParam(name=Constants.PARAM_CONTENT) StringAndListParam theFtContent, diff --git a/hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/rest/server/ServerConformanceProviderDstu2Test.java b/hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/rest/server/ServerConformanceProviderDstu2Test.java index 1d6bf3f7930..c627b4d54b9 100644 --- a/hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/rest/server/ServerConformanceProviderDstu2Test.java +++ b/hapi-fhir-structures-dstu2/src/test/java/ca/uhn/fhir/rest/server/ServerConformanceProviderDstu2Test.java @@ -501,7 +501,7 @@ public class ServerConformanceProviderDstu2Test { if (resourceBinding.getResourceName().equals("Patient")) { List> methodBindings = resourceBinding.getMethodBindings(); SearchMethodBinding binding = (SearchMethodBinding) methodBindings.get(0); - SearchParameter param = (SearchParameter) binding.getParameters().get(25); + SearchParameter param = (SearchParameter) binding.getParameters().get(24); assertEquals("The organization at which this person is a patient", param.getDescription()); found = true; } diff --git a/hapi-fhir-structures-dstu3/pom.xml b/hapi-fhir-structures-dstu3/pom.xml index 75e68f16c5b..d9856c320b0 100644 --- a/hapi-fhir-structures-dstu3/pom.xml +++ b/hapi-fhir-structures-dstu3/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-structures-dstu3/src/test/java/ca/uhn/fhir/context/FhirContextDstu3Test.java b/hapi-fhir-structures-dstu3/src/test/java/ca/uhn/fhir/context/FhirContextDstu3Test.java index ff8b4ce7cbf..ef4d4b0468b 100644 --- a/hapi-fhir-structures-dstu3/src/test/java/ca/uhn/fhir/context/FhirContextDstu3Test.java +++ b/hapi-fhir-structures-dstu3/src/test/java/ca/uhn/fhir/context/FhirContextDstu3Test.java @@ -49,7 +49,7 @@ public class FhirContextDstu3Test { @Test public void testRuntimeSearchParamToString() { String val = ourCtx.getResourceDefinition("Patient").getSearchParam("gender").toString(); - assertEquals("RuntimeSearchParam[base=[Patient],name=gender,path=Patient.gender,id=,uri=http://hl7.org/fhir/SearchParameter/patient-gender]", val); + assertEquals("RuntimeSearchParam[base=[Patient],name=gender,path=Patient.gender,id=,uri=http://hl7.org/fhir/SearchParameter/Patient-gender]", val); } @Test diff --git a/hapi-fhir-structures-hl7org-dstu2/pom.xml b/hapi-fhir-structures-hl7org-dstu2/pom.xml index ce80fb38faa..9821181f70c 100644 --- a/hapi-fhir-structures-hl7org-dstu2/pom.xml +++ b/hapi-fhir-structures-hl7org-dstu2/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-structures-r4/pom.xml b/hapi-fhir-structures-r4/pom.xml index 6c7ed34d4a1..d026c82c568 100644 --- a/hapi-fhir-structures-r4/pom.xml +++ b/hapi-fhir-structures-r4/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-structures-r5/pom.xml b/hapi-fhir-structures-r5/pom.xml index 318e07cdd9d..54c8261c98e 100644 --- a/hapi-fhir-structures-r5/pom.xml +++ b/hapi-fhir-structures-r5/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-structures-r5/src/test/java/ca/uhn/fhir/rest/server/PatientResourceProvider.java b/hapi-fhir-structures-r5/src/test/java/ca/uhn/fhir/rest/server/PatientResourceProvider.java index beb1db24d64..bca7548cacb 100644 --- a/hapi-fhir-structures-r5/src/test/java/ca/uhn/fhir/rest/server/PatientResourceProvider.java +++ b/hapi-fhir-structures-r5/src/test/java/ca/uhn/fhir/rest/server/PatientResourceProvider.java @@ -35,10 +35,6 @@ public class PatientResourceProvider implements IResourceProvider @OptionalParam(name="_id") StringAndListParam theId, - @Description(shortDefinition="The resource language") - @OptionalParam(name="_language") - StringAndListParam theResourceLanguage, - @Description(shortDefinition="Search the contents of the resource's data using a fulltext search") @OptionalParam(name=Constants.PARAM_CONTENT) StringAndListParam theFtContent, 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 d1940e3649f..baa2c7758fa 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 @@ -479,7 +479,8 @@ public class ServerCapabilityStatementProviderR5Test { List> methodBindings = resourceBinding.getMethodBindings(); SearchMethodBinding binding = (SearchMethodBinding) methodBindings.get(0); SearchParameter param = (SearchParameter) binding.getParameters().get(25); - assertEquals("The organization at which this person is a patient", param.getDescription()); + assertEquals("careprovider", param.getName()); + assertEquals("Patient's nominated care provider, could be a care manager, not the organization that manages the record", param.getDescription()); found = true; } } diff --git a/hapi-fhir-test-utilities/pom.xml b/hapi-fhir-test-utilities/pom.xml index a542bb6ed6b..fe8822ed4cd 100644 --- a/hapi-fhir-test-utilities/pom.xml +++ b/hapi-fhir-test-utilities/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-testpage-overlay/pom.xml b/hapi-fhir-testpage-overlay/pom.xml index 6b85577acd9..466f37f72e3 100644 --- a/hapi-fhir-testpage-overlay/pom.xml +++ b/hapi-fhir-testpage-overlay/pom.xml @@ -4,7 +4,7 @@ ca.uhn.hapi.fhir hapi-fhir - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../pom.xml diff --git a/hapi-fhir-validation-resources-dstu2.1/pom.xml b/hapi-fhir-validation-resources-dstu2.1/pom.xml index 51d1172c750..9be7e6175f5 100644 --- a/hapi-fhir-validation-resources-dstu2.1/pom.xml +++ b/hapi-fhir-validation-resources-dstu2.1/pom.xml @@ -4,7 +4,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-validation-resources-dstu2/pom.xml b/hapi-fhir-validation-resources-dstu2/pom.xml index b65d94a559c..312012590ee 100644 --- a/hapi-fhir-validation-resources-dstu2/pom.xml +++ b/hapi-fhir-validation-resources-dstu2/pom.xml @@ -4,7 +4,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-validation-resources-dstu3/pom.xml b/hapi-fhir-validation-resources-dstu3/pom.xml index c2c456377c7..9e4259aa765 100644 --- a/hapi-fhir-validation-resources-dstu3/pom.xml +++ b/hapi-fhir-validation-resources-dstu3/pom.xml @@ -4,7 +4,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-validation-resources-r4/pom.xml b/hapi-fhir-validation-resources-r4/pom.xml index 48f48396833..670e3eb55c9 100644 --- a/hapi-fhir-validation-resources-r4/pom.xml +++ b/hapi-fhir-validation-resources-r4/pom.xml @@ -4,7 +4,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-validation-resources-r4/src/main/resources/org/hl7/fhir/r4/model/sp/search-parameters.json b/hapi-fhir-validation-resources-r4/src/main/resources/org/hl7/fhir/r4/model/sp/search-parameters.json new file mode 100644 index 00000000000..3941bb8757d --- /dev/null +++ b/hapi-fhir-validation-resources-r4/src/main/resources/org/hl7/fhir/r4/model/sp/search-parameters.json @@ -0,0 +1,49075 @@ +{ +"resourceType": "Bundle", +"id": "searchParams", +"meta": { + "lastUpdated": "2019-11-01T09:29:23.356+11:00" +}, +"type": "collection", +"entry": [ { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DomainResource-text", + "resource": { + "resourceType": "SearchParameter", + "id": "DomainResource-text", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DomainResource-text", + "version": "4.0.1", + "name": "_text", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Search on the narrative of the resource", + "code": "_text", + "base": [ "DomainResource" ], + "type": "string", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Resource-content", + "resource": { + "resourceType": "SearchParameter", + "id": "Resource-content", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Resource-content", + "version": "4.0.1", + "name": "_content", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Search on the entire content of the resource", + "code": "_content", + "base": [ "Resource" ], + "type": "string", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Resource-id", + "resource": { + "resourceType": "SearchParameter", + "id": "Resource-id", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Resource-id", + "version": "4.0.1", + "name": "_id", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Logical id of this artifact", + "code": "_id", + "base": [ "Resource" ], + "type": "token", + "expression": "Resource.id", + "xpath": "f:Resource/f:id", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Resource-lastUpdated", + "resource": { + "resourceType": "SearchParameter", + "id": "Resource-lastUpdated", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Resource-lastUpdated", + "version": "4.0.1", + "name": "_lastUpdated", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "When the resource version last changed", + "code": "_lastUpdated", + "base": [ "Resource" ], + "type": "date", + "expression": "Resource.meta.lastUpdated", + "xpath": "f:Resource/f:meta/f:lastUpdated", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Resource-profile", + "resource": { + "resourceType": "SearchParameter", + "id": "Resource-profile", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Resource-profile", + "version": "4.0.1", + "name": "_profile", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Profiles this resource claims to conform to", + "code": "_profile", + "base": [ "Resource" ], + "type": "uri", + "expression": "Resource.meta.profile", + "xpath": "f:Resource/f:meta/f:profile", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Resource-query", + "resource": { + "resourceType": "SearchParameter", + "id": "Resource-query", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Resource-query", + "version": "4.0.1", + "name": "_query", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "A custom search profile that describes a specific defined query operation", + "code": "_query", + "base": [ "Resource" ], + "type": "token", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Resource-security", + "resource": { + "resourceType": "SearchParameter", + "id": "Resource-security", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Resource-security", + "version": "4.0.1", + "name": "_security", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Security Labels applied to this resource", + "code": "_security", + "base": [ "Resource" ], + "type": "token", + "expression": "Resource.meta.security", + "xpath": "f:Resource/f:meta/f:security", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Resource-source", + "resource": { + "resourceType": "SearchParameter", + "id": "Resource-source", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Resource-source", + "version": "4.0.1", + "name": "_source", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Identifies where the resource comes from", + "code": "_source", + "base": [ "Resource" ], + "type": "uri", + "expression": "Resource.meta.source", + "xpath": "f:Resource/f:meta/f:source", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Resource-tag", + "resource": { + "resourceType": "SearchParameter", + "id": "Resource-tag", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Resource-tag", + "version": "4.0.1", + "name": "_tag", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Tags applied to this resource", + "code": "_tag", + "base": [ "Resource" ], + "type": "token", + "expression": "Resource.meta.tag", + "xpath": "f:Resource/f:meta/f:tag", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Account-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "Account-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Account-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Account number", + "code": "identifier", + "base": [ "Account" ], + "type": "token", + "expression": "Account.identifier", + "xpath": "f:Account/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Account-name", + "resource": { + "resourceType": "SearchParameter", + "id": "Account-name", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Account-name", + "version": "4.0.1", + "name": "name", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Human-readable label", + "code": "name", + "base": [ "Account" ], + "type": "string", + "expression": "Account.name", + "xpath": "f:Account/f:name", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Account-owner", + "resource": { + "resourceType": "SearchParameter", + "id": "Account-owner", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Account-owner", + "version": "4.0.1", + "name": "owner", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Entity managing the Account", + "code": "owner", + "base": [ "Account" ], + "type": "reference", + "expression": "Account.owner", + "xpath": "f:Account/f:owner", + "xpathUsage": "normal", + "target": [ "Organization" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Account-patient", + "resource": { + "resourceType": "SearchParameter", + "id": "Account-patient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Account-patient", + "version": "4.0.1", + "name": "patient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The entity that caused the expenses", + "code": "patient", + "base": [ "Account" ], + "type": "reference", + "expression": "Account.subject.where(resolve() is Patient)", + "xpath": "f:Account/f:subject", + "xpathUsage": "normal", + "target": [ "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Account-period", + "resource": { + "resourceType": "SearchParameter", + "id": "Account-period", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Account-period", + "version": "4.0.1", + "name": "period", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Transaction window", + "code": "period", + "base": [ "Account" ], + "type": "date", + "expression": "Account.servicePeriod", + "xpath": "f:Account/f:servicePeriod", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Account-status", + "resource": { + "resourceType": "SearchParameter", + "id": "Account-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Account-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "active | inactive | entered-in-error | on-hold | unknown", + "code": "status", + "base": [ "Account" ], + "type": "token", + "expression": "Account.status", + "xpath": "f:Account/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Account-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "Account-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Account-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The entity that caused the expenses", + "code": "subject", + "base": [ "Account" ], + "type": "reference", + "expression": "Account.subject", + "xpath": "f:Account/f:subject", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "Device", "Patient", "HealthcareService", "PractitionerRole", "Location" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Account-type", + "resource": { + "resourceType": "SearchParameter", + "id": "Account-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Account-type", + "version": "4.0.1", + "name": "type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "E.g. patient, expense, depreciation", + "code": "type", + "base": [ "Account" ], + "type": "token", + "expression": "Account.type", + "xpath": "f:Account/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-composed-of", + "resource": { + "resourceType": "SearchParameter", + "id": "ActivityDefinition-composed-of", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-composed-of", + "version": "4.0.1", + "name": "composed-of", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "composed-of", + "base": [ "ActivityDefinition" ], + "type": "reference", + "expression": "ActivityDefinition.relatedArtifact.where(type='composed-of').resource", + "xpath": "f:ActivityDefinition/f:relatedArtifact[f:type/@value='composed-of']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-context", + "resource": { + "resourceType": "SearchParameter", + "id": "ActivityDefinition-context", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-context", + "version": "4.0.1", + "name": "context", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A use context assigned to the activity definition", + "code": "context", + "base": [ "ActivityDefinition" ], + "type": "token", + "expression": "(ActivityDefinition.useContext.value as CodeableConcept)", + "xpath": "f:ActivityDefinition/f:useContext/f:valueCodeableConcept", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-context-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "ActivityDefinition-context-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-context-quantity", + "version": "4.0.1", + "name": "context-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A quantity- or range-valued use context assigned to the activity definition", + "code": "context-quantity", + "base": [ "ActivityDefinition" ], + "type": "quantity", + "expression": "(ActivityDefinition.useContext.value as Quantity) | (ActivityDefinition.useContext.value as Range)", + "xpath": "f:ActivityDefinition/f:useContext/f:valueQuantity | f:ActivityDefinition/f:useContext/f:valueRange", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-context-type", + "resource": { + "resourceType": "SearchParameter", + "id": "ActivityDefinition-context-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-context-type", + "version": "4.0.1", + "name": "context-type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A type of use context assigned to the activity definition", + "code": "context-type", + "base": [ "ActivityDefinition" ], + "type": "token", + "expression": "ActivityDefinition.useContext.code", + "xpath": "f:ActivityDefinition/f:useContext/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-date", + "resource": { + "resourceType": "SearchParameter", + "id": "ActivityDefinition-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-date", + "version": "4.0.1", + "name": "date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The activity definition publication date", + "code": "date", + "base": [ "ActivityDefinition" ], + "type": "date", + "expression": "ActivityDefinition.date", + "xpath": "f:ActivityDefinition/f:date", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-depends-on", + "resource": { + "resourceType": "SearchParameter", + "id": "ActivityDefinition-depends-on", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-depends-on", + "version": "4.0.1", + "name": "depends-on", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "depends-on", + "base": [ "ActivityDefinition" ], + "type": "reference", + "expression": "ActivityDefinition.relatedArtifact.where(type='depends-on').resource | ActivityDefinition.library", + "xpath": "f:ActivityDefinition/f:relatedArtifact[f:type/@value='depends-on']/f:resource | f:ActivityDefinition/f:library", + "xpathUsage": "normal", + "target": [ "Library", "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-derived-from", + "resource": { + "resourceType": "SearchParameter", + "id": "ActivityDefinition-derived-from", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-derived-from", + "version": "4.0.1", + "name": "derived-from", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "derived-from", + "base": [ "ActivityDefinition" ], + "type": "reference", + "expression": "ActivityDefinition.relatedArtifact.where(type='derived-from').resource", + "xpath": "f:ActivityDefinition/f:relatedArtifact[f:type/@value='derived-from']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-description", + "resource": { + "resourceType": "SearchParameter", + "id": "ActivityDefinition-description", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-description", + "version": "4.0.1", + "name": "description", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The description of the activity definition", + "code": "description", + "base": [ "ActivityDefinition" ], + "type": "string", + "expression": "ActivityDefinition.description", + "xpath": "f:ActivityDefinition/f:description", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-effective", + "resource": { + "resourceType": "SearchParameter", + "id": "ActivityDefinition-effective", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-effective", + "version": "4.0.1", + "name": "effective", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The time during which the activity definition is intended to be in use", + "code": "effective", + "base": [ "ActivityDefinition" ], + "type": "date", + "expression": "ActivityDefinition.effectivePeriod", + "xpath": "f:ActivityDefinition/f:effectivePeriod", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "ActivityDefinition-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "External identifier for the activity definition", + "code": "identifier", + "base": [ "ActivityDefinition" ], + "type": "token", + "expression": "ActivityDefinition.identifier", + "xpath": "f:ActivityDefinition/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-jurisdiction", + "resource": { + "resourceType": "SearchParameter", + "id": "ActivityDefinition-jurisdiction", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-jurisdiction", + "version": "4.0.1", + "name": "jurisdiction", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Intended jurisdiction for the activity definition", + "code": "jurisdiction", + "base": [ "ActivityDefinition" ], + "type": "token", + "expression": "ActivityDefinition.jurisdiction", + "xpath": "f:ActivityDefinition/f:jurisdiction", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-name", + "resource": { + "resourceType": "SearchParameter", + "id": "ActivityDefinition-name", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-name", + "version": "4.0.1", + "name": "name", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Computationally friendly name of the activity definition", + "code": "name", + "base": [ "ActivityDefinition" ], + "type": "string", + "expression": "ActivityDefinition.name", + "xpath": "f:ActivityDefinition/f:name", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-predecessor", + "resource": { + "resourceType": "SearchParameter", + "id": "ActivityDefinition-predecessor", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-predecessor", + "version": "4.0.1", + "name": "predecessor", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "predecessor", + "base": [ "ActivityDefinition" ], + "type": "reference", + "expression": "ActivityDefinition.relatedArtifact.where(type='predecessor').resource", + "xpath": "f:ActivityDefinition/f:relatedArtifact[f:type/@value='predecessor']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-publisher", + "resource": { + "resourceType": "SearchParameter", + "id": "ActivityDefinition-publisher", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-publisher", + "version": "4.0.1", + "name": "publisher", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Name of the publisher of the activity definition", + "code": "publisher", + "base": [ "ActivityDefinition" ], + "type": "string", + "expression": "ActivityDefinition.publisher", + "xpath": "f:ActivityDefinition/f:publisher", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-status", + "resource": { + "resourceType": "SearchParameter", + "id": "ActivityDefinition-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The current status of the activity definition", + "code": "status", + "base": [ "ActivityDefinition" ], + "type": "token", + "expression": "ActivityDefinition.status", + "xpath": "f:ActivityDefinition/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-successor", + "resource": { + "resourceType": "SearchParameter", + "id": "ActivityDefinition-successor", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-successor", + "version": "4.0.1", + "name": "successor", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "successor", + "base": [ "ActivityDefinition" ], + "type": "reference", + "expression": "ActivityDefinition.relatedArtifact.where(type='successor').resource", + "xpath": "f:ActivityDefinition/f:relatedArtifact[f:type/@value='successor']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-title", + "resource": { + "resourceType": "SearchParameter", + "id": "ActivityDefinition-title", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-title", + "version": "4.0.1", + "name": "title", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The human-friendly name of the activity definition", + "code": "title", + "base": [ "ActivityDefinition" ], + "type": "string", + "expression": "ActivityDefinition.title", + "xpath": "f:ActivityDefinition/f:title", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-topic", + "resource": { + "resourceType": "SearchParameter", + "id": "ActivityDefinition-topic", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-topic", + "version": "4.0.1", + "name": "topic", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Topics associated with the module", + "code": "topic", + "base": [ "ActivityDefinition" ], + "type": "token", + "expression": "ActivityDefinition.topic", + "xpath": "f:ActivityDefinition/f:topic", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-url", + "resource": { + "resourceType": "SearchParameter", + "id": "ActivityDefinition-url", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-url", + "version": "4.0.1", + "name": "url", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The uri that identifies the activity definition", + "code": "url", + "base": [ "ActivityDefinition" ], + "type": "uri", + "expression": "ActivityDefinition.url", + "xpath": "f:ActivityDefinition/f:url", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-version", + "resource": { + "resourceType": "SearchParameter", + "id": "ActivityDefinition-version", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-version", + "version": "4.0.1", + "name": "version", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The business version of the activity definition", + "code": "version", + "base": [ "ActivityDefinition" ], + "type": "token", + "expression": "ActivityDefinition.version", + "xpath": "f:ActivityDefinition/f:version", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-context-type-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "ActivityDefinition-context-type-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-context-type-quantity", + "version": "4.0.1", + "name": "context-type-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A use context type and quantity- or range-based value assigned to the activity definition", + "code": "context-type-quantity", + "base": [ "ActivityDefinition" ], + "type": "composite", + "expression": "ActivityDefinition.useContext", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-context-type", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-context-quantity", + "expression": "value.as(Quantity) | value.as(Range)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-context-type-value", + "resource": { + "resourceType": "SearchParameter", + "id": "ActivityDefinition-context-type-value", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-context-type-value", + "version": "4.0.1", + "name": "context-type-value", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A use context type and value assigned to the activity definition", + "code": "context-type-value", + "base": [ "ActivityDefinition" ], + "type": "composite", + "expression": "ActivityDefinition.useContext", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-context-type", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/ActivityDefinition-context", + "expression": "value.as(CodeableConcept)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AdverseEvent-actuality", + "resource": { + "resourceType": "SearchParameter", + "id": "AdverseEvent-actuality", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AdverseEvent-actuality", + "version": "4.0.1", + "name": "actuality", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "actual | potential", + "code": "actuality", + "base": [ "AdverseEvent" ], + "type": "token", + "expression": "AdverseEvent.actuality", + "xpath": "f:AdverseEvent/f:actuality", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AdverseEvent-category", + "resource": { + "resourceType": "SearchParameter", + "id": "AdverseEvent-category", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AdverseEvent-category", + "version": "4.0.1", + "name": "category", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "product-problem | product-quality | product-use-error | wrong-dose | incorrect-prescribing-information | wrong-technique | wrong-route-of-administration | wrong-rate | wrong-duration | wrong-time | expired-drug | medical-device-use-error | problem-different-manufacturer | unsafe-physical-environment", + "code": "category", + "base": [ "AdverseEvent" ], + "type": "token", + "expression": "AdverseEvent.category", + "xpath": "f:AdverseEvent/f:category", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AdverseEvent-date", + "resource": { + "resourceType": "SearchParameter", + "id": "AdverseEvent-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AdverseEvent-date", + "version": "4.0.1", + "name": "date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "When the event occurred", + "code": "date", + "base": [ "AdverseEvent" ], + "type": "date", + "expression": "AdverseEvent.date", + "xpath": "f:AdverseEvent/f:date", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AdverseEvent-event", + "resource": { + "resourceType": "SearchParameter", + "id": "AdverseEvent-event", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AdverseEvent-event", + "version": "4.0.1", + "name": "event", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Type of the event itself in relation to the subject", + "code": "event", + "base": [ "AdverseEvent" ], + "type": "token", + "expression": "AdverseEvent.event", + "xpath": "f:AdverseEvent/f:event", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AdverseEvent-location", + "resource": { + "resourceType": "SearchParameter", + "id": "AdverseEvent-location", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AdverseEvent-location", + "version": "4.0.1", + "name": "location", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Location where adverse event occurred", + "code": "location", + "base": [ "AdverseEvent" ], + "type": "reference", + "expression": "AdverseEvent.location", + "xpath": "f:AdverseEvent/f:location", + "xpathUsage": "normal", + "target": [ "Location" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AdverseEvent-recorder", + "resource": { + "resourceType": "SearchParameter", + "id": "AdverseEvent-recorder", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AdverseEvent-recorder", + "version": "4.0.1", + "name": "recorder", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Who recorded the adverse event", + "code": "recorder", + "base": [ "AdverseEvent" ], + "type": "reference", + "expression": "AdverseEvent.recorder", + "xpath": "f:AdverseEvent/f:recorder", + "xpathUsage": "normal", + "target": [ "Practitioner", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AdverseEvent-resultingcondition", + "resource": { + "resourceType": "SearchParameter", + "id": "AdverseEvent-resultingcondition", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AdverseEvent-resultingcondition", + "version": "4.0.1", + "name": "resultingcondition", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Effect on the subject due to this event", + "code": "resultingcondition", + "base": [ "AdverseEvent" ], + "type": "reference", + "expression": "AdverseEvent.resultingCondition", + "xpath": "f:AdverseEvent/f:resultingCondition", + "xpathUsage": "normal", + "target": [ "Condition" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AdverseEvent-seriousness", + "resource": { + "resourceType": "SearchParameter", + "id": "AdverseEvent-seriousness", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AdverseEvent-seriousness", + "version": "4.0.1", + "name": "seriousness", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Seriousness of the event", + "code": "seriousness", + "base": [ "AdverseEvent" ], + "type": "token", + "expression": "AdverseEvent.seriousness", + "xpath": "f:AdverseEvent/f:seriousness", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AdverseEvent-severity", + "resource": { + "resourceType": "SearchParameter", + "id": "AdverseEvent-severity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AdverseEvent-severity", + "version": "4.0.1", + "name": "severity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "mild | moderate | severe", + "code": "severity", + "base": [ "AdverseEvent" ], + "type": "token", + "expression": "AdverseEvent.severity", + "xpath": "f:AdverseEvent/f:severity", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AdverseEvent-study", + "resource": { + "resourceType": "SearchParameter", + "id": "AdverseEvent-study", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AdverseEvent-study", + "version": "4.0.1", + "name": "study", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "AdverseEvent.study", + "code": "study", + "base": [ "AdverseEvent" ], + "type": "reference", + "expression": "AdverseEvent.study", + "xpath": "f:AdverseEvent/f:study", + "xpathUsage": "normal", + "target": [ "ResearchStudy" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AdverseEvent-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "AdverseEvent-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AdverseEvent-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Subject impacted by event", + "code": "subject", + "base": [ "AdverseEvent" ], + "type": "reference", + "expression": "AdverseEvent.subject", + "xpath": "f:AdverseEvent/f:subject", + "xpathUsage": "normal", + "target": [ "Practitioner", "Group", "Patient", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AdverseEvent-substance", + "resource": { + "resourceType": "SearchParameter", + "id": "AdverseEvent-substance", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AdverseEvent-substance", + "version": "4.0.1", + "name": "substance", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Refers to the specific entity that caused the adverse event", + "code": "substance", + "base": [ "AdverseEvent" ], + "type": "reference", + "expression": "AdverseEvent.suspectEntity.instance", + "xpath": "f:AdverseEvent/f:suspectEntity/f:instance", + "xpathUsage": "normal", + "target": [ "Immunization", "Device", "Medication", "Procedure", "Substance", "MedicationAdministration", "MedicationStatement" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AllergyIntolerance-asserter", + "resource": { + "resourceType": "SearchParameter", + "id": "AllergyIntolerance-asserter", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AllergyIntolerance-asserter", + "version": "4.0.1", + "name": "asserter", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Source of the information about the allergy", + "code": "asserter", + "base": [ "AllergyIntolerance" ], + "type": "reference", + "expression": "AllergyIntolerance.asserter", + "xpath": "f:AllergyIntolerance/f:asserter", + "xpathUsage": "normal", + "target": [ "Practitioner", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AllergyIntolerance-category", + "resource": { + "resourceType": "SearchParameter", + "id": "AllergyIntolerance-category", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AllergyIntolerance-category", + "version": "4.0.1", + "name": "category", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "food | medication | environment | biologic", + "code": "category", + "base": [ "AllergyIntolerance" ], + "type": "token", + "expression": "AllergyIntolerance.category", + "xpath": "f:AllergyIntolerance/f:category", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AllergyIntolerance-clinical-status", + "resource": { + "resourceType": "SearchParameter", + "id": "AllergyIntolerance-clinical-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AllergyIntolerance-clinical-status", + "version": "4.0.1", + "name": "clinical-status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "active | inactive | resolved", + "code": "clinical-status", + "base": [ "AllergyIntolerance" ], + "type": "token", + "expression": "AllergyIntolerance.clinicalStatus", + "xpath": "f:AllergyIntolerance/f:clinicalStatus", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/clinical-code", + "resource": { + "resourceType": "SearchParameter", + "id": "clinical-code", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/clinical-code", + "version": "4.0.1", + "name": "code", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [AllergyIntolerance](allergyintolerance.html): Code that identifies the allergy or intolerance\r\n* [Condition](condition.html): Code for the condition\r\n* [DeviceRequest](devicerequest.html): Code for what is being requested/ordered\r\n* [DiagnosticReport](diagnosticreport.html): The code for the report, as opposed to codes for the atomic results, which are the names on the observation resource referred to from the result\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a condition code\r\n* [List](list.html): What the purpose of this list is\r\n* [Medication](medication.html): Returns medications for a specific code\r\n* [MedicationAdministration](medicationadministration.html): Return administrations of this medication code\r\n* [MedicationDispense](medicationdispense.html): Returns dispenses of this medicine code\r\n* [MedicationRequest](medicationrequest.html): Return prescriptions of this medication code\r\n* [MedicationStatement](medicationstatement.html): Return statements of this medication code\r\n* [Observation](observation.html): The code of the observation type\r\n* [Procedure](procedure.html): A code to identify a procedure\r\n* [ServiceRequest](servicerequest.html): What is being requested/ordered\r\n", + "code": "code", + "base": [ "AllergyIntolerance", "Condition", "DeviceRequest", "DiagnosticReport", "FamilyMemberHistory", "List", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationRequest", "MedicationStatement", "Observation", "Procedure", "ServiceRequest" ], + "type": "token", + "expression": "AllergyIntolerance.code | AllergyIntolerance.reaction.substance | Condition.code | (DeviceRequest.code as CodeableConcept) | DiagnosticReport.code | FamilyMemberHistory.condition.code | List.code | Medication.code | (MedicationAdministration.medication as CodeableConcept) | (MedicationDispense.medication as CodeableConcept) | (MedicationRequest.medication as CodeableConcept) | (MedicationStatement.medication as CodeableConcept) | Observation.code | Procedure.code | ServiceRequest.code", + "xpath": "f:AllergyIntolerance/f:code | f:AllergyIntolerance/f:reaction/f:substance | f:Condition/f:code | f:DeviceRequest/f:codeCodeableConcept | f:DiagnosticReport/f:code | f:FamilyMemberHistory/f:condition/f:code | f:List/f:code | f:Medication/f:code | f:MedicationAdministration/f:medicationCodeableConcept | f:MedicationDispense/f:medicationCodeableConcept | f:MedicationRequest/f:medicationCodeableConcept | f:MedicationStatement/f:medicationCodeableConcept | f:Observation/f:code | f:Procedure/f:code | f:ServiceRequest/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AllergyIntolerance-criticality", + "resource": { + "resourceType": "SearchParameter", + "id": "AllergyIntolerance-criticality", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AllergyIntolerance-criticality", + "version": "4.0.1", + "name": "criticality", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "low | high | unable-to-assess", + "code": "criticality", + "base": [ "AllergyIntolerance" ], + "type": "token", + "expression": "AllergyIntolerance.criticality", + "xpath": "f:AllergyIntolerance/f:criticality", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/clinical-date", + "resource": { + "resourceType": "SearchParameter", + "id": "clinical-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/clinical-date", + "version": "4.0.1", + "name": "date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [AllergyIntolerance](allergyintolerance.html): Date first version of the resource instance was recorded\r\n* [CarePlan](careplan.html): Time period plan covers\r\n* [CareTeam](careteam.html): Time period team covers\r\n* [ClinicalImpression](clinicalimpression.html): When the assessment was documented\r\n* [Composition](composition.html): Composition editing time\r\n* [Consent](consent.html): When this Consent was created or indexed\r\n* [DiagnosticReport](diagnosticreport.html): The clinically relevant time of the report\r\n* [Encounter](encounter.html): A date within the period the Encounter lasted\r\n* [EpisodeOfCare](episodeofcare.html): The provided date search value falls within the episode of care's period\r\n* [FamilyMemberHistory](familymemberhistory.html): When history was recorded or last updated\r\n* [Flag](flag.html): Time period when flag is active\r\n* [Immunization](immunization.html): Vaccination (non)-Administration Date\r\n* [List](list.html): When the list was prepared\r\n* [Observation](observation.html): Obtained date/time. If the obtained element is a period, a date that falls in the period\r\n* [Procedure](procedure.html): When the procedure was performed\r\n* [RiskAssessment](riskassessment.html): When was assessment made?\r\n* [SupplyRequest](supplyrequest.html): When the request was made\r\n", + "code": "date", + "base": [ "AllergyIntolerance", "CarePlan", "CareTeam", "ClinicalImpression", "Composition", "Consent", "DiagnosticReport", "Encounter", "EpisodeOfCare", "FamilyMemberHistory", "Flag", "Immunization", "List", "Observation", "Procedure", "RiskAssessment", "SupplyRequest" ], + "type": "date", + "expression": "AllergyIntolerance.recordedDate | CarePlan.period | CareTeam.period | ClinicalImpression.date | Composition.date | Consent.dateTime | DiagnosticReport.effective | Encounter.period | EpisodeOfCare.period | FamilyMemberHistory.date | Flag.period | Immunization.occurrence | List.date | Observation.effective | Procedure.performed | (RiskAssessment.occurrence as dateTime) | SupplyRequest.authoredOn", + "xpath": "f:AllergyIntolerance/f:recordedDate | f:CarePlan/f:period | f:CareTeam/f:period | f:ClinicalImpression/f:date | f:Composition/f:date | f:Consent/f:dateTime | f:DiagnosticReport/f:effectiveDateTime | f:DiagnosticReport/f:effectivePeriod | f:Encounter/f:period | f:EpisodeOfCare/f:period | f:FamilyMemberHistory/f:date | f:Flag/f:period | f:Immunization/f:occurrenceDateTime | f:Immunization/f:occurrenceString | f:List/f:date | f:Observation/f:effectiveDateTime | f:Observation/f:effectivePeriod | f:Observation/f:effectiveTiming | f:Observation/f:effectiveInstant | f:Procedure/f:performedDateTime | f:Procedure/f:performedPeriod | f:Procedure/f:performedString | f:Procedure/f:performedAge | f:Procedure/f:performedRange | f:RiskAssessment/f:occurrenceDateTime | f:SupplyRequest/f:authoredOn", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/clinical-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "clinical-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/clinical-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [AllergyIntolerance](allergyintolerance.html): External ids for this item\r\n* [CarePlan](careplan.html): External Ids for this plan\r\n* [CareTeam](careteam.html): External Ids for this team\r\n* [Composition](composition.html): Version-independent identifier for the Composition\r\n* [Condition](condition.html): A unique identifier of the condition record\r\n* [Consent](consent.html): Identifier for this record (external references)\r\n* [DetectedIssue](detectedissue.html): Unique id for the detected issue\r\n* [DeviceRequest](devicerequest.html): Business identifier for request/order\r\n* [DiagnosticReport](diagnosticreport.html): An identifier for the report\r\n* [DocumentManifest](documentmanifest.html): Unique Identifier for the set of documents\r\n* [DocumentReference](documentreference.html): Master Version Specific Identifier\r\n* [Encounter](encounter.html): Identifier(s) by which this encounter is known\r\n* [EpisodeOfCare](episodeofcare.html): Business Identifier(s) relevant for this EpisodeOfCare\r\n* [FamilyMemberHistory](familymemberhistory.html): A search by a record identifier\r\n* [Goal](goal.html): External Ids for this goal\r\n* [ImagingStudy](imagingstudy.html): Identifiers for the Study, such as DICOM Study Instance UID and Accession number\r\n* [Immunization](immunization.html): Business identifier\r\n* [List](list.html): Business identifier\r\n* [MedicationAdministration](medicationadministration.html): Return administrations with this external identifier\r\n* [MedicationDispense](medicationdispense.html): Returns dispenses with this external identifier\r\n* [MedicationRequest](medicationrequest.html): Return prescriptions with this external identifier\r\n* [MedicationStatement](medicationstatement.html): Return statements with this external identifier\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this external identifier\r\n* [Observation](observation.html): The unique id for a particular observation\r\n* [Procedure](procedure.html): A unique identifier for a procedure\r\n* [RiskAssessment](riskassessment.html): Unique identifier for the assessment\r\n* [ServiceRequest](servicerequest.html): Identifiers assigned to this order\r\n* [SupplyDelivery](supplydelivery.html): External identifier\r\n* [SupplyRequest](supplyrequest.html): Business Identifier for SupplyRequest\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this external identifier\r\n", + "code": "identifier", + "base": [ "AllergyIntolerance", "CarePlan", "CareTeam", "Composition", "Condition", "Consent", "DetectedIssue", "DeviceRequest", "DiagnosticReport", "DocumentManifest", "DocumentReference", "Encounter", "EpisodeOfCare", "FamilyMemberHistory", "Goal", "ImagingStudy", "Immunization", "List", "MedicationAdministration", "MedicationDispense", "MedicationRequest", "MedicationStatement", "NutritionOrder", "Observation", "Procedure", "RiskAssessment", "ServiceRequest", "SupplyDelivery", "SupplyRequest", "VisionPrescription" ], + "type": "token", + "expression": "AllergyIntolerance.identifier | CarePlan.identifier | CareTeam.identifier | Composition.identifier | Condition.identifier | Consent.identifier | DetectedIssue.identifier | DeviceRequest.identifier | DiagnosticReport.identifier | DocumentManifest.masterIdentifier | DocumentManifest.identifier | DocumentReference.masterIdentifier | DocumentReference.identifier | Encounter.identifier | EpisodeOfCare.identifier | FamilyMemberHistory.identifier | Goal.identifier | ImagingStudy.identifier | Immunization.identifier | List.identifier | MedicationAdministration.identifier | MedicationDispense.identifier | MedicationRequest.identifier | MedicationStatement.identifier | NutritionOrder.identifier | Observation.identifier | Procedure.identifier | RiskAssessment.identifier | ServiceRequest.identifier | SupplyDelivery.identifier | SupplyRequest.identifier | VisionPrescription.identifier", + "xpath": "f:AllergyIntolerance/f:identifier | f:CarePlan/f:identifier | f:CareTeam/f:identifier | f:Composition/f:identifier | f:Condition/f:identifier | f:Consent/f:identifier | f:DetectedIssue/f:identifier | f:DeviceRequest/f:identifier | f:DiagnosticReport/f:identifier | f:DocumentManifest/f:masterIdentifier | f:DocumentManifest/f:identifier | f:DocumentReference/f:masterIdentifier | f:DocumentReference/f:identifier | f:Encounter/f:identifier | f:EpisodeOfCare/f:identifier | f:FamilyMemberHistory/f:identifier | f:Goal/f:identifier | f:ImagingStudy/f:identifier | f:Immunization/f:identifier | f:List/f:identifier | f:MedicationAdministration/f:identifier | f:MedicationDispense/f:identifier | f:MedicationRequest/f:identifier | f:MedicationStatement/f:identifier | f:NutritionOrder/f:identifier | f:Observation/f:identifier | f:Procedure/f:identifier | f:RiskAssessment/f:identifier | f:ServiceRequest/f:identifier | f:SupplyDelivery/f:identifier | f:SupplyRequest/f:identifier | f:VisionPrescription/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AllergyIntolerance-last-date", + "resource": { + "resourceType": "SearchParameter", + "id": "AllergyIntolerance-last-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AllergyIntolerance-last-date", + "version": "4.0.1", + "name": "last-date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Date(/time) of last known occurrence of a reaction", + "code": "last-date", + "base": [ "AllergyIntolerance" ], + "type": "date", + "expression": "AllergyIntolerance.lastOccurrence", + "xpath": "f:AllergyIntolerance/f:lastOccurrence", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AllergyIntolerance-manifestation", + "resource": { + "resourceType": "SearchParameter", + "id": "AllergyIntolerance-manifestation", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AllergyIntolerance-manifestation", + "version": "4.0.1", + "name": "manifestation", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Clinical symptoms/signs associated with the Event", + "code": "manifestation", + "base": [ "AllergyIntolerance" ], + "type": "token", + "expression": "AllergyIntolerance.reaction.manifestation", + "xpath": "f:AllergyIntolerance/f:reaction/f:manifestation", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AllergyIntolerance-onset", + "resource": { + "resourceType": "SearchParameter", + "id": "AllergyIntolerance-onset", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AllergyIntolerance-onset", + "version": "4.0.1", + "name": "onset", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Date(/time) when manifestations showed", + "code": "onset", + "base": [ "AllergyIntolerance" ], + "type": "date", + "expression": "AllergyIntolerance.reaction.onset", + "xpath": "f:AllergyIntolerance/f:reaction/f:onset", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/clinical-patient", + "resource": { + "resourceType": "SearchParameter", + "id": "clinical-patient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/clinical-patient", + "version": "4.0.1", + "name": "patient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [AllergyIntolerance](allergyintolerance.html): Who the sensitivity is for\r\n* [CarePlan](careplan.html): Who the care plan is for\r\n* [CareTeam](careteam.html): Who care team is for\r\n* [ClinicalImpression](clinicalimpression.html): Patient or group assessed\r\n* [Composition](composition.html): Who and/or what the composition is about\r\n* [Condition](condition.html): Who has the condition?\r\n* [Consent](consent.html): Who the consent applies to\r\n* [DetectedIssue](detectedissue.html): Associated patient\r\n* [DeviceRequest](devicerequest.html): Individual the service is ordered for\r\n* [DeviceUseStatement](deviceusestatement.html): Search by subject - a patient\r\n* [DiagnosticReport](diagnosticreport.html): The subject of the report if a patient\r\n* [DocumentManifest](documentmanifest.html): The subject of the set of documents\r\n* [DocumentReference](documentreference.html): Who/what is the subject of the document\r\n* [Encounter](encounter.html): The patient or group present at the encounter\r\n* [EpisodeOfCare](episodeofcare.html): The patient who is the focus of this episode of care\r\n* [FamilyMemberHistory](familymemberhistory.html): The identity of a subject to list family member history items for\r\n* [Flag](flag.html): The identity of a subject to list flags for\r\n* [Goal](goal.html): Who this goal is intended for\r\n* [ImagingStudy](imagingstudy.html): Who the study is about\r\n* [Immunization](immunization.html): The patient for the vaccination record\r\n* [List](list.html): If all resources have the same subject\r\n* [MedicationAdministration](medicationadministration.html): The identity of a patient to list administrations for\r\n* [MedicationDispense](medicationdispense.html): The identity of a patient to list dispenses for\r\n* [MedicationRequest](medicationrequest.html): Returns prescriptions for a specific patient\r\n* [MedicationStatement](medicationstatement.html): Returns statements for a specific patient.\r\n* [NutritionOrder](nutritionorder.html): The identity of the person who requires the diet, formula or nutritional supplement\r\n* [Observation](observation.html): The subject that the observation is about (if patient)\r\n* [Procedure](procedure.html): Search by subject - a patient\r\n* [RiskAssessment](riskassessment.html): Who/what does assessment apply to?\r\n* [ServiceRequest](servicerequest.html): Search by subject - a patient\r\n* [SupplyDelivery](supplydelivery.html): Patient for whom the item is supplied\r\n* [VisionPrescription](visionprescription.html): The identity of a patient to list dispenses for\r\n", + "code": "patient", + "base": [ "AllergyIntolerance", "CarePlan", "CareTeam", "ClinicalImpression", "Composition", "Condition", "Consent", "DetectedIssue", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "Encounter", "EpisodeOfCare", "FamilyMemberHistory", "Flag", "Goal", "ImagingStudy", "Immunization", "List", "MedicationAdministration", "MedicationDispense", "MedicationRequest", "MedicationStatement", "NutritionOrder", "Observation", "Procedure", "RiskAssessment", "ServiceRequest", "SupplyDelivery", "VisionPrescription" ], + "type": "reference", + "expression": "AllergyIntolerance.patient | CarePlan.subject.where(resolve() is Patient) | CareTeam.subject.where(resolve() is Patient) | ClinicalImpression.subject.where(resolve() is Patient) | Composition.subject.where(resolve() is Patient) | Condition.subject.where(resolve() is Patient) | Consent.patient | DetectedIssue.patient | DeviceRequest.subject.where(resolve() is Patient) | DeviceUseStatement.subject | DiagnosticReport.subject.where(resolve() is Patient) | DocumentManifest.subject.where(resolve() is Patient) | DocumentReference.subject.where(resolve() is Patient) | Encounter.subject.where(resolve() is Patient) | EpisodeOfCare.patient | FamilyMemberHistory.patient | Flag.subject.where(resolve() is Patient) | Goal.subject.where(resolve() is Patient) | ImagingStudy.subject.where(resolve() is Patient) | Immunization.patient | List.subject.where(resolve() is Patient) | MedicationAdministration.subject.where(resolve() is Patient) | MedicationDispense.subject.where(resolve() is Patient) | MedicationRequest.subject.where(resolve() is Patient) | MedicationStatement.subject.where(resolve() is Patient) | NutritionOrder.patient | Observation.subject.where(resolve() is Patient) | Procedure.subject.where(resolve() is Patient) | RiskAssessment.subject.where(resolve() is Patient) | ServiceRequest.subject.where(resolve() is Patient) | SupplyDelivery.patient | VisionPrescription.patient", + "xpath": "f:AllergyIntolerance/f:patient | f:CarePlan/f:subject | f:CareTeam/f:subject | f:ClinicalImpression/f:subject | f:Composition/f:subject | f:Condition/f:subject | f:Consent/f:patient | f:DetectedIssue/f:patient | f:DeviceRequest/f:subject | f:DeviceUseStatement/f:subject | f:DiagnosticReport/f:subject | f:DocumentManifest/f:subject | f:DocumentReference/f:subject | f:Encounter/f:subject | f:EpisodeOfCare/f:patient | f:FamilyMemberHistory/f:patient | f:Flag/f:subject | f:Goal/f:subject | f:ImagingStudy/f:subject | f:Immunization/f:patient | f:List/f:subject | f:MedicationAdministration/f:subject | f:MedicationDispense/f:subject | f:MedicationRequest/f:subject | f:MedicationStatement/f:subject | f:NutritionOrder/f:patient | f:Observation/f:subject | f:Procedure/f:subject | f:RiskAssessment/f:subject | f:ServiceRequest/f:subject | f:SupplyDelivery/f:patient | f:VisionPrescription/f:patient", + "xpathUsage": "normal", + "target": [ "Patient", "Group" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AllergyIntolerance-recorder", + "resource": { + "resourceType": "SearchParameter", + "id": "AllergyIntolerance-recorder", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AllergyIntolerance-recorder", + "version": "4.0.1", + "name": "recorder", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Who recorded the sensitivity", + "code": "recorder", + "base": [ "AllergyIntolerance" ], + "type": "reference", + "expression": "AllergyIntolerance.recorder", + "xpath": "f:AllergyIntolerance/f:recorder", + "xpathUsage": "normal", + "target": [ "Practitioner", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AllergyIntolerance-route", + "resource": { + "resourceType": "SearchParameter", + "id": "AllergyIntolerance-route", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AllergyIntolerance-route", + "version": "4.0.1", + "name": "route", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "How the subject was exposed to the substance", + "code": "route", + "base": [ "AllergyIntolerance" ], + "type": "token", + "expression": "AllergyIntolerance.reaction.exposureRoute", + "xpath": "f:AllergyIntolerance/f:reaction/f:exposureRoute", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AllergyIntolerance-severity", + "resource": { + "resourceType": "SearchParameter", + "id": "AllergyIntolerance-severity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AllergyIntolerance-severity", + "version": "4.0.1", + "name": "severity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "mild | moderate | severe (of event as a whole)", + "code": "severity", + "base": [ "AllergyIntolerance" ], + "type": "token", + "expression": "AllergyIntolerance.reaction.severity", + "xpath": "f:AllergyIntolerance/f:reaction/f:severity", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/clinical-type", + "resource": { + "resourceType": "SearchParameter", + "id": "clinical-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/clinical-type", + "version": "4.0.1", + "name": "type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [AllergyIntolerance](allergyintolerance.html): allergy | intolerance - Underlying mechanism (if known)\r\n* [Composition](composition.html): Kind of composition (LOINC if possible)\r\n* [DocumentManifest](documentmanifest.html): Kind of document set\r\n* [DocumentReference](documentreference.html): Kind of document (LOINC if possible)\r\n* [Encounter](encounter.html): Specific type of encounter\r\n* [EpisodeOfCare](episodeofcare.html): Type/class - e.g. specialist referral, disease management\r\n", + "code": "type", + "base": [ "AllergyIntolerance", "Composition", "DocumentManifest", "DocumentReference", "Encounter", "EpisodeOfCare" ], + "type": "token", + "expression": "AllergyIntolerance.type | Composition.type | DocumentManifest.type | DocumentReference.type | Encounter.type | EpisodeOfCare.type", + "xpath": "f:AllergyIntolerance/f:type | f:Composition/f:type | f:DocumentManifest/f:type | f:DocumentReference/f:type | f:Encounter/f:type | f:EpisodeOfCare/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AllergyIntolerance-verification-status", + "resource": { + "resourceType": "SearchParameter", + "id": "AllergyIntolerance-verification-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AllergyIntolerance-verification-status", + "version": "4.0.1", + "name": "verification-status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "unconfirmed | confirmed | refuted | entered-in-error", + "code": "verification-status", + "base": [ "AllergyIntolerance" ], + "type": "token", + "expression": "AllergyIntolerance.verificationStatus", + "xpath": "f:AllergyIntolerance/f:verificationStatus", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Appointment-actor", + "resource": { + "resourceType": "SearchParameter", + "id": "Appointment-actor", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Appointment-actor", + "version": "4.0.1", + "name": "actor", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Any one of the individuals participating in the appointment", + "code": "actor", + "base": [ "Appointment" ], + "type": "reference", + "expression": "Appointment.participant.actor", + "xpath": "f:Appointment/f:participant/f:actor", + "xpathUsage": "normal", + "target": [ "Practitioner", "Device", "Patient", "HealthcareService", "PractitionerRole", "RelatedPerson", "Location" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Appointment-appointment-type", + "resource": { + "resourceType": "SearchParameter", + "id": "Appointment-appointment-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Appointment-appointment-type", + "version": "4.0.1", + "name": "appointment-type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The style of appointment or patient that has been booked in the slot (not service type)", + "code": "appointment-type", + "base": [ "Appointment" ], + "type": "token", + "expression": "Appointment.appointmentType", + "xpath": "f:Appointment/f:appointmentType", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Appointment-based-on", + "resource": { + "resourceType": "SearchParameter", + "id": "Appointment-based-on", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Appointment-based-on", + "version": "4.0.1", + "name": "based-on", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The service request this appointment is allocated to assess", + "code": "based-on", + "base": [ "Appointment" ], + "type": "reference", + "expression": "Appointment.basedOn", + "xpath": "f:Appointment/f:basedOn", + "xpathUsage": "normal", + "target": [ "ServiceRequest" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Appointment-date", + "resource": { + "resourceType": "SearchParameter", + "id": "Appointment-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Appointment-date", + "version": "4.0.1", + "name": "date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Appointment date/time.", + "code": "date", + "base": [ "Appointment" ], + "type": "date", + "expression": "Appointment.start", + "xpath": "f:Appointment/f:start", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Appointment-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "Appointment-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Appointment-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "An Identifier of the Appointment", + "code": "identifier", + "base": [ "Appointment" ], + "type": "token", + "expression": "Appointment.identifier", + "xpath": "f:Appointment/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Appointment-location", + "resource": { + "resourceType": "SearchParameter", + "id": "Appointment-location", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Appointment-location", + "version": "4.0.1", + "name": "location", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "This location is listed in the participants of the appointment", + "code": "location", + "base": [ "Appointment" ], + "type": "reference", + "expression": "Appointment.participant.actor.where(resolve() is Location)", + "xpath": "f:Appointment/f:participant/f:actor", + "xpathUsage": "normal", + "target": [ "Location" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Appointment-part-status", + "resource": { + "resourceType": "SearchParameter", + "id": "Appointment-part-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Appointment-part-status", + "version": "4.0.1", + "name": "part-status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The Participation status of the subject, or other participant on the appointment. Can be used to locate participants that have not responded to meeting requests.", + "code": "part-status", + "base": [ "Appointment" ], + "type": "token", + "expression": "Appointment.participant.status", + "xpath": "f:Appointment/f:participant/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Appointment-patient", + "resource": { + "resourceType": "SearchParameter", + "id": "Appointment-patient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Appointment-patient", + "version": "4.0.1", + "name": "patient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "One of the individuals of the appointment is this patient", + "code": "patient", + "base": [ "Appointment" ], + "type": "reference", + "expression": "Appointment.participant.actor.where(resolve() is Patient)", + "xpath": "f:Appointment/f:participant/f:actor", + "xpathUsage": "normal", + "target": [ "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Appointment-practitioner", + "resource": { + "resourceType": "SearchParameter", + "id": "Appointment-practitioner", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Appointment-practitioner", + "version": "4.0.1", + "name": "practitioner", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "One of the individuals of the appointment is this practitioner", + "code": "practitioner", + "base": [ "Appointment" ], + "type": "reference", + "expression": "Appointment.participant.actor.where(resolve() is Practitioner)", + "xpath": "f:Appointment/f:participant/f:actor", + "xpathUsage": "normal", + "target": [ "Practitioner" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Appointment-reason-code", + "resource": { + "resourceType": "SearchParameter", + "id": "Appointment-reason-code", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Appointment-reason-code", + "version": "4.0.1", + "name": "reason-code", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Coded reason this appointment is scheduled", + "code": "reason-code", + "base": [ "Appointment" ], + "type": "token", + "expression": "Appointment.reasonCode", + "xpath": "f:Appointment/f:reasonCode", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Appointment-reason-reference", + "resource": { + "resourceType": "SearchParameter", + "id": "Appointment-reason-reference", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Appointment-reason-reference", + "version": "4.0.1", + "name": "reason-reference", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Reason the appointment is to take place (resource)", + "code": "reason-reference", + "base": [ "Appointment" ], + "type": "reference", + "expression": "Appointment.reasonReference", + "xpath": "f:Appointment/f:reasonReference", + "xpathUsage": "normal", + "target": [ "Condition", "Observation", "Procedure", "ImmunizationRecommendation" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Appointment-service-category", + "resource": { + "resourceType": "SearchParameter", + "id": "Appointment-service-category", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Appointment-service-category", + "version": "4.0.1", + "name": "service-category", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A broad categorization of the service that is to be performed during this appointment", + "code": "service-category", + "base": [ "Appointment" ], + "type": "token", + "expression": "Appointment.serviceCategory", + "xpath": "f:Appointment/f:serviceCategory", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Appointment-service-type", + "resource": { + "resourceType": "SearchParameter", + "id": "Appointment-service-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Appointment-service-type", + "version": "4.0.1", + "name": "service-type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The specific service that is to be performed during this appointment", + "code": "service-type", + "base": [ "Appointment" ], + "type": "token", + "expression": "Appointment.serviceType", + "xpath": "f:Appointment/f:serviceType", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Appointment-slot", + "resource": { + "resourceType": "SearchParameter", + "id": "Appointment-slot", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Appointment-slot", + "version": "4.0.1", + "name": "slot", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The slots that this appointment is filling", + "code": "slot", + "base": [ "Appointment" ], + "type": "reference", + "expression": "Appointment.slot", + "xpath": "f:Appointment/f:slot", + "xpathUsage": "normal", + "target": [ "Slot" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Appointment-specialty", + "resource": { + "resourceType": "SearchParameter", + "id": "Appointment-specialty", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Appointment-specialty", + "version": "4.0.1", + "name": "specialty", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The specialty of a practitioner that would be required to perform the service requested in this appointment", + "code": "specialty", + "base": [ "Appointment" ], + "type": "token", + "expression": "Appointment.specialty", + "xpath": "f:Appointment/f:specialty", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Appointment-status", + "resource": { + "resourceType": "SearchParameter", + "id": "Appointment-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Appointment-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The overall status of the appointment", + "code": "status", + "base": [ "Appointment" ], + "type": "token", + "expression": "Appointment.status", + "xpath": "f:Appointment/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Appointment-supporting-info", + "resource": { + "resourceType": "SearchParameter", + "id": "Appointment-supporting-info", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Appointment-supporting-info", + "version": "4.0.1", + "name": "supporting-info", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Additional information to support the appointment", + "code": "supporting-info", + "base": [ "Appointment" ], + "type": "reference", + "expression": "Appointment.supportingInformation", + "xpath": "f:Appointment/f:supportingInformation", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AppointmentResponse-actor", + "resource": { + "resourceType": "SearchParameter", + "id": "AppointmentResponse-actor", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AppointmentResponse-actor", + "version": "4.0.1", + "name": "actor", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The Person, Location/HealthcareService or Device that this appointment response replies for", + "code": "actor", + "base": [ "AppointmentResponse" ], + "type": "reference", + "expression": "AppointmentResponse.actor", + "xpath": "f:AppointmentResponse/f:actor", + "xpathUsage": "normal", + "target": [ "Practitioner", "Device", "Patient", "HealthcareService", "PractitionerRole", "RelatedPerson", "Location" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AppointmentResponse-appointment", + "resource": { + "resourceType": "SearchParameter", + "id": "AppointmentResponse-appointment", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AppointmentResponse-appointment", + "version": "4.0.1", + "name": "appointment", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The appointment that the response is attached to", + "code": "appointment", + "base": [ "AppointmentResponse" ], + "type": "reference", + "expression": "AppointmentResponse.appointment", + "xpath": "f:AppointmentResponse/f:appointment", + "xpathUsage": "normal", + "target": [ "Appointment" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AppointmentResponse-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "AppointmentResponse-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AppointmentResponse-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "An Identifier in this appointment response", + "code": "identifier", + "base": [ "AppointmentResponse" ], + "type": "token", + "expression": "AppointmentResponse.identifier", + "xpath": "f:AppointmentResponse/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AppointmentResponse-location", + "resource": { + "resourceType": "SearchParameter", + "id": "AppointmentResponse-location", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AppointmentResponse-location", + "version": "4.0.1", + "name": "location", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "This Response is for this Location", + "code": "location", + "base": [ "AppointmentResponse" ], + "type": "reference", + "expression": "AppointmentResponse.actor.where(resolve() is Location)", + "xpath": "f:AppointmentResponse/f:actor", + "xpathUsage": "normal", + "target": [ "Location" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AppointmentResponse-part-status", + "resource": { + "resourceType": "SearchParameter", + "id": "AppointmentResponse-part-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AppointmentResponse-part-status", + "version": "4.0.1", + "name": "part-status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The participants acceptance status for this appointment", + "code": "part-status", + "base": [ "AppointmentResponse" ], + "type": "token", + "expression": "AppointmentResponse.participantStatus", + "xpath": "f:AppointmentResponse/f:participantStatus", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AppointmentResponse-patient", + "resource": { + "resourceType": "SearchParameter", + "id": "AppointmentResponse-patient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AppointmentResponse-patient", + "version": "4.0.1", + "name": "patient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "This Response is for this Patient", + "code": "patient", + "base": [ "AppointmentResponse" ], + "type": "reference", + "expression": "AppointmentResponse.actor.where(resolve() is Patient)", + "xpath": "f:AppointmentResponse/f:actor", + "xpathUsage": "normal", + "target": [ "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AppointmentResponse-practitioner", + "resource": { + "resourceType": "SearchParameter", + "id": "AppointmentResponse-practitioner", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AppointmentResponse-practitioner", + "version": "4.0.1", + "name": "practitioner", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "This Response is for this Practitioner", + "code": "practitioner", + "base": [ "AppointmentResponse" ], + "type": "reference", + "expression": "AppointmentResponse.actor.where(resolve() is Practitioner)", + "xpath": "f:AppointmentResponse/f:actor", + "xpathUsage": "normal", + "target": [ "Practitioner" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AuditEvent-action", + "resource": { + "resourceType": "SearchParameter", + "id": "AuditEvent-action", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AuditEvent-action", + "version": "4.0.1", + "name": "action", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Security)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/secure/index.cfm" + } ] + } ], + "description": "Type of action performed during the event", + "code": "action", + "base": [ "AuditEvent" ], + "type": "token", + "expression": "AuditEvent.action", + "xpath": "f:AuditEvent/f:action", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AuditEvent-address", + "resource": { + "resourceType": "SearchParameter", + "id": "AuditEvent-address", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AuditEvent-address", + "version": "4.0.1", + "name": "address", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Security)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/secure/index.cfm" + } ] + } ], + "description": "Identifier for the network access point of the user device", + "code": "address", + "base": [ "AuditEvent" ], + "type": "string", + "expression": "AuditEvent.agent.network.address", + "xpath": "f:AuditEvent/f:agent/f:network/f:address", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AuditEvent-agent", + "resource": { + "resourceType": "SearchParameter", + "id": "AuditEvent-agent", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AuditEvent-agent", + "version": "4.0.1", + "name": "agent", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Security)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/secure/index.cfm" + } ] + } ], + "description": "Identifier of who", + "code": "agent", + "base": [ "AuditEvent" ], + "type": "reference", + "expression": "AuditEvent.agent.who", + "xpath": "f:AuditEvent/f:agent/f:who", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "Device", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AuditEvent-agent-name", + "resource": { + "resourceType": "SearchParameter", + "id": "AuditEvent-agent-name", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AuditEvent-agent-name", + "version": "4.0.1", + "name": "agent-name", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Security)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/secure/index.cfm" + } ] + } ], + "description": "Human friendly name for the agent", + "code": "agent-name", + "base": [ "AuditEvent" ], + "type": "string", + "expression": "AuditEvent.agent.name", + "xpath": "f:AuditEvent/f:agent/f:name", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AuditEvent-agent-role", + "resource": { + "resourceType": "SearchParameter", + "id": "AuditEvent-agent-role", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AuditEvent-agent-role", + "version": "4.0.1", + "name": "agent-role", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Security)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/secure/index.cfm" + } ] + } ], + "description": "Agent role in the event", + "code": "agent-role", + "base": [ "AuditEvent" ], + "type": "token", + "expression": "AuditEvent.agent.role", + "xpath": "f:AuditEvent/f:agent/f:role", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AuditEvent-altid", + "resource": { + "resourceType": "SearchParameter", + "id": "AuditEvent-altid", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AuditEvent-altid", + "version": "4.0.1", + "name": "altid", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Security)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/secure/index.cfm" + } ] + } ], + "description": "Alternative User identity", + "code": "altid", + "base": [ "AuditEvent" ], + "type": "token", + "expression": "AuditEvent.agent.altId", + "xpath": "f:AuditEvent/f:agent/f:altId", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AuditEvent-date", + "resource": { + "resourceType": "SearchParameter", + "id": "AuditEvent-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AuditEvent-date", + "version": "4.0.1", + "name": "date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Security)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/secure/index.cfm" + } ] + } ], + "description": "Time when the event was recorded", + "code": "date", + "base": [ "AuditEvent" ], + "type": "date", + "expression": "AuditEvent.recorded", + "xpath": "f:AuditEvent/f:recorded", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AuditEvent-entity", + "resource": { + "resourceType": "SearchParameter", + "id": "AuditEvent-entity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AuditEvent-entity", + "version": "4.0.1", + "name": "entity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Security)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/secure/index.cfm" + } ] + } ], + "description": "Specific instance of resource", + "code": "entity", + "base": [ "AuditEvent" ], + "type": "reference", + "expression": "AuditEvent.entity.what", + "xpath": "f:AuditEvent/f:entity/f:what", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AuditEvent-entity-name", + "resource": { + "resourceType": "SearchParameter", + "id": "AuditEvent-entity-name", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AuditEvent-entity-name", + "version": "4.0.1", + "name": "entity-name", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Security)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/secure/index.cfm" + } ] + } ], + "description": "Descriptor for entity", + "code": "entity-name", + "base": [ "AuditEvent" ], + "type": "string", + "expression": "AuditEvent.entity.name", + "xpath": "f:AuditEvent/f:entity/f:name", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AuditEvent-entity-role", + "resource": { + "resourceType": "SearchParameter", + "id": "AuditEvent-entity-role", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AuditEvent-entity-role", + "version": "4.0.1", + "name": "entity-role", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Security)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/secure/index.cfm" + } ] + } ], + "description": "What role the entity played", + "code": "entity-role", + "base": [ "AuditEvent" ], + "type": "token", + "expression": "AuditEvent.entity.role", + "xpath": "f:AuditEvent/f:entity/f:role", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AuditEvent-entity-type", + "resource": { + "resourceType": "SearchParameter", + "id": "AuditEvent-entity-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AuditEvent-entity-type", + "version": "4.0.1", + "name": "entity-type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Security)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/secure/index.cfm" + } ] + } ], + "description": "Type of entity involved", + "code": "entity-type", + "base": [ "AuditEvent" ], + "type": "token", + "expression": "AuditEvent.entity.type", + "xpath": "f:AuditEvent/f:entity/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AuditEvent-outcome", + "resource": { + "resourceType": "SearchParameter", + "id": "AuditEvent-outcome", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AuditEvent-outcome", + "version": "4.0.1", + "name": "outcome", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Security)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/secure/index.cfm" + } ] + } ], + "description": "Whether the event succeeded or failed", + "code": "outcome", + "base": [ "AuditEvent" ], + "type": "token", + "expression": "AuditEvent.outcome", + "xpath": "f:AuditEvent/f:outcome", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AuditEvent-patient", + "resource": { + "resourceType": "SearchParameter", + "id": "AuditEvent-patient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AuditEvent-patient", + "version": "4.0.1", + "name": "patient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Security)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/secure/index.cfm" + } ] + } ], + "description": "Identifier of who", + "code": "patient", + "base": [ "AuditEvent" ], + "type": "reference", + "expression": "AuditEvent.agent.who.where(resolve() is Patient) | AuditEvent.entity.what.where(resolve() is Patient)", + "xpath": "f:AuditEvent/f:agent/f:who | f:AuditEvent/f:entity/f:what", + "xpathUsage": "normal", + "target": [ "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AuditEvent-policy", + "resource": { + "resourceType": "SearchParameter", + "id": "AuditEvent-policy", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AuditEvent-policy", + "version": "4.0.1", + "name": "policy", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Security)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/secure/index.cfm" + } ] + } ], + "description": "Policy that authorized event", + "code": "policy", + "base": [ "AuditEvent" ], + "type": "uri", + "expression": "AuditEvent.agent.policy", + "xpath": "f:AuditEvent/f:agent/f:policy", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AuditEvent-site", + "resource": { + "resourceType": "SearchParameter", + "id": "AuditEvent-site", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AuditEvent-site", + "version": "4.0.1", + "name": "site", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Security)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/secure/index.cfm" + } ] + } ], + "description": "Logical source location within the enterprise", + "code": "site", + "base": [ "AuditEvent" ], + "type": "token", + "expression": "AuditEvent.source.site", + "xpath": "f:AuditEvent/f:source/f:site", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AuditEvent-source", + "resource": { + "resourceType": "SearchParameter", + "id": "AuditEvent-source", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AuditEvent-source", + "version": "4.0.1", + "name": "source", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Security)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/secure/index.cfm" + } ] + } ], + "description": "The identity of source detecting the event", + "code": "source", + "base": [ "AuditEvent" ], + "type": "reference", + "expression": "AuditEvent.source.observer", + "xpath": "f:AuditEvent/f:source/f:observer", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "Device", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AuditEvent-subtype", + "resource": { + "resourceType": "SearchParameter", + "id": "AuditEvent-subtype", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AuditEvent-subtype", + "version": "4.0.1", + "name": "subtype", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Security)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/secure/index.cfm" + } ] + } ], + "description": "More specific type/id for the event", + "code": "subtype", + "base": [ "AuditEvent" ], + "type": "token", + "expression": "AuditEvent.subtype", + "xpath": "f:AuditEvent/f:subtype", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/AuditEvent-type", + "resource": { + "resourceType": "SearchParameter", + "id": "AuditEvent-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/AuditEvent-type", + "version": "4.0.1", + "name": "type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Security)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/secure/index.cfm" + } ] + } ], + "description": "Type/identifier of event", + "code": "type", + "base": [ "AuditEvent" ], + "type": "token", + "expression": "AuditEvent.type", + "xpath": "f:AuditEvent/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Basic-author", + "resource": { + "resourceType": "SearchParameter", + "id": "Basic-author", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Basic-author", + "version": "4.0.1", + "name": "author", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Who created", + "code": "author", + "base": [ "Basic" ], + "type": "reference", + "expression": "Basic.author", + "xpath": "f:Basic/f:author", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Basic-code", + "resource": { + "resourceType": "SearchParameter", + "id": "Basic-code", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Basic-code", + "version": "4.0.1", + "name": "code", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Kind of Resource", + "code": "code", + "base": [ "Basic" ], + "type": "token", + "expression": "Basic.code", + "xpath": "f:Basic/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Basic-created", + "resource": { + "resourceType": "SearchParameter", + "id": "Basic-created", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Basic-created", + "version": "4.0.1", + "name": "created", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "When created", + "code": "created", + "base": [ "Basic" ], + "type": "date", + "expression": "Basic.created", + "xpath": "f:Basic/f:created", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Basic-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "Basic-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Basic-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Business identifier", + "code": "identifier", + "base": [ "Basic" ], + "type": "token", + "expression": "Basic.identifier", + "xpath": "f:Basic/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Basic-patient", + "resource": { + "resourceType": "SearchParameter", + "id": "Basic-patient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Basic-patient", + "version": "4.0.1", + "name": "patient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Identifies the focus of this resource", + "code": "patient", + "base": [ "Basic" ], + "type": "reference", + "expression": "Basic.subject.where(resolve() is Patient)", + "xpath": "f:Basic/f:subject", + "xpathUsage": "normal", + "target": [ "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Basic-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "Basic-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Basic-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Identifies the focus of this resource", + "code": "subject", + "base": [ "Basic" ], + "type": "reference", + "expression": "Basic.subject", + "xpath": "f:Basic/f:subject", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/BodyStructure-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "BodyStructure-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/BodyStructure-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Bodystructure identifier", + "code": "identifier", + "base": [ "BodyStructure" ], + "type": "token", + "expression": "BodyStructure.identifier", + "xpath": "f:BodyStructure/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/BodyStructure-location", + "resource": { + "resourceType": "SearchParameter", + "id": "BodyStructure-location", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/BodyStructure-location", + "version": "4.0.1", + "name": "location", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Body site", + "code": "location", + "base": [ "BodyStructure" ], + "type": "token", + "expression": "BodyStructure.location", + "xpath": "f:BodyStructure/f:location", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/BodyStructure-morphology", + "resource": { + "resourceType": "SearchParameter", + "id": "BodyStructure-morphology", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/BodyStructure-morphology", + "version": "4.0.1", + "name": "morphology", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Kind of Structure", + "code": "morphology", + "base": [ "BodyStructure" ], + "type": "token", + "expression": "BodyStructure.morphology", + "xpath": "f:BodyStructure/f:morphology", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/BodyStructure-patient", + "resource": { + "resourceType": "SearchParameter", + "id": "BodyStructure-patient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/BodyStructure-patient", + "version": "4.0.1", + "name": "patient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Who this is about", + "code": "patient", + "base": [ "BodyStructure" ], + "type": "reference", + "expression": "BodyStructure.patient", + "xpath": "f:BodyStructure/f:patient", + "xpathUsage": "normal", + "target": [ "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Bundle-composition", + "resource": { + "resourceType": "SearchParameter", + "id": "Bundle-composition", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Bundle-composition", + "version": "4.0.1", + "name": "composition", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The first resource in the bundle, if the bundle type is \"document\" - this is a composition, and this parameter provides access to search its contents", + "code": "composition", + "base": [ "Bundle" ], + "type": "reference", + "expression": "Bundle.entry[0].resource", + "xpath": "f:Bundle/f:entry[0]/f:resource", + "xpathUsage": "normal", + "target": [ "Composition" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Bundle-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "Bundle-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Bundle-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Persistent identifier for the bundle", + "code": "identifier", + "base": [ "Bundle" ], + "type": "token", + "expression": "Bundle.identifier", + "xpath": "f:Bundle/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Bundle-message", + "resource": { + "resourceType": "SearchParameter", + "id": "Bundle-message", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Bundle-message", + "version": "4.0.1", + "name": "message", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The first resource in the bundle, if the bundle type is \"message\" - this is a message header, and this parameter provides access to search its contents", + "code": "message", + "base": [ "Bundle" ], + "type": "reference", + "expression": "Bundle.entry[0].resource", + "xpath": "f:Bundle/f:entry[0]/f:resource", + "xpathUsage": "normal", + "target": [ "MessageHeader" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Bundle-timestamp", + "resource": { + "resourceType": "SearchParameter", + "id": "Bundle-timestamp", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Bundle-timestamp", + "version": "4.0.1", + "name": "timestamp", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "When the bundle was assembled", + "code": "timestamp", + "base": [ "Bundle" ], + "type": "date", + "expression": "Bundle.timestamp", + "xpath": "f:Bundle/f:timestamp", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Bundle-type", + "resource": { + "resourceType": "SearchParameter", + "id": "Bundle-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Bundle-type", + "version": "4.0.1", + "name": "type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "document | message | transaction | transaction-response | batch | batch-response | history | searchset | collection", + "code": "type", + "base": [ "Bundle" ], + "type": "token", + "expression": "Bundle.type", + "xpath": "f:Bundle/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/conformance-context", + "resource": { + "resourceType": "SearchParameter", + "id": "conformance-context", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/conformance-context", + "version": "4.0.1", + "name": "context", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [CapabilityStatement](capabilitystatement.html): A use context assigned to the capability statement\r\n* [CodeSystem](codesystem.html): A use context assigned to the code system\r\n* [CompartmentDefinition](compartmentdefinition.html): A use context assigned to the compartment definition\r\n* [ConceptMap](conceptmap.html): A use context assigned to the concept map\r\n* [GraphDefinition](graphdefinition.html): A use context assigned to the graph definition\r\n* [ImplementationGuide](implementationguide.html): A use context assigned to the implementation guide\r\n* [MessageDefinition](messagedefinition.html): A use context assigned to the message definition\r\n* [NamingSystem](namingsystem.html): A use context assigned to the naming system\r\n* [OperationDefinition](operationdefinition.html): A use context assigned to the operation definition\r\n* [SearchParameter](searchparameter.html): A use context assigned to the search parameter\r\n* [StructureDefinition](structuredefinition.html): A use context assigned to the structure definition\r\n* [StructureMap](structuremap.html): A use context assigned to the structure map\r\n* [TerminologyCapabilities](terminologycapabilities.html): A use context assigned to the terminology capabilities\r\n* [ValueSet](valueset.html): A use context assigned to the value set\r\n", + "code": "context", + "base": [ "CapabilityStatement", "CodeSystem", "CompartmentDefinition", "ConceptMap", "GraphDefinition", "ImplementationGuide", "MessageDefinition", "NamingSystem", "OperationDefinition", "SearchParameter", "StructureDefinition", "StructureMap", "TerminologyCapabilities", "ValueSet" ], + "type": "token", + "expression": "(CapabilityStatement.useContext.value as CodeableConcept) | (CodeSystem.useContext.value as CodeableConcept) | (CompartmentDefinition.useContext.value as CodeableConcept) | (ConceptMap.useContext.value as CodeableConcept) | (GraphDefinition.useContext.value as CodeableConcept) | (ImplementationGuide.useContext.value as CodeableConcept) | (MessageDefinition.useContext.value as CodeableConcept) | (NamingSystem.useContext.value as CodeableConcept) | (OperationDefinition.useContext.value as CodeableConcept) | (SearchParameter.useContext.value as CodeableConcept) | (StructureDefinition.useContext.value as CodeableConcept) | (StructureMap.useContext.value as CodeableConcept) | (TerminologyCapabilities.useContext.value as CodeableConcept) | (ValueSet.useContext.value as CodeableConcept)", + "xpath": "f:CapabilityStatement/f:useContext/f:valueCodeableConcept | f:CodeSystem/f:useContext/f:valueCodeableConcept | f:CompartmentDefinition/f:useContext/f:valueCodeableConcept | f:ConceptMap/f:useContext/f:valueCodeableConcept | f:GraphDefinition/f:useContext/f:valueCodeableConcept | f:ImplementationGuide/f:useContext/f:valueCodeableConcept | f:MessageDefinition/f:useContext/f:valueCodeableConcept | f:NamingSystem/f:useContext/f:valueCodeableConcept | f:OperationDefinition/f:useContext/f:valueCodeableConcept | f:SearchParameter/f:useContext/f:valueCodeableConcept | f:StructureDefinition/f:useContext/f:valueCodeableConcept | f:StructureMap/f:useContext/f:valueCodeableConcept | f:TerminologyCapabilities/f:useContext/f:valueCodeableConcept | f:ValueSet/f:useContext/f:valueCodeableConcept", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/conformance-context-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "conformance-context-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/conformance-context-quantity", + "version": "4.0.1", + "name": "context-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [CapabilityStatement](capabilitystatement.html): A quantity- or range-valued use context assigned to the capability statement\r\n* [CodeSystem](codesystem.html): A quantity- or range-valued use context assigned to the code system\r\n* [CompartmentDefinition](compartmentdefinition.html): A quantity- or range-valued use context assigned to the compartment definition\r\n* [ConceptMap](conceptmap.html): A quantity- or range-valued use context assigned to the concept map\r\n* [GraphDefinition](graphdefinition.html): A quantity- or range-valued use context assigned to the graph definition\r\n* [ImplementationGuide](implementationguide.html): A quantity- or range-valued use context assigned to the implementation guide\r\n* [MessageDefinition](messagedefinition.html): A quantity- or range-valued use context assigned to the message definition\r\n* [NamingSystem](namingsystem.html): A quantity- or range-valued use context assigned to the naming system\r\n* [OperationDefinition](operationdefinition.html): A quantity- or range-valued use context assigned to the operation definition\r\n* [SearchParameter](searchparameter.html): A quantity- or range-valued use context assigned to the search parameter\r\n* [StructureDefinition](structuredefinition.html): A quantity- or range-valued use context assigned to the structure definition\r\n* [StructureMap](structuremap.html): A quantity- or range-valued use context assigned to the structure map\r\n* [TerminologyCapabilities](terminologycapabilities.html): A quantity- or range-valued use context assigned to the terminology capabilities\r\n* [ValueSet](valueset.html): A quantity- or range-valued use context assigned to the value set\r\n", + "code": "context-quantity", + "base": [ "CapabilityStatement", "CodeSystem", "CompartmentDefinition", "ConceptMap", "GraphDefinition", "ImplementationGuide", "MessageDefinition", "NamingSystem", "OperationDefinition", "SearchParameter", "StructureDefinition", "StructureMap", "TerminologyCapabilities", "ValueSet" ], + "type": "quantity", + "expression": "(CapabilityStatement.useContext.value as Quantity) | (CapabilityStatement.useContext.value as Range) | (CodeSystem.useContext.value as Quantity) | (CodeSystem.useContext.value as Range) | (CompartmentDefinition.useContext.value as Quantity) | (CompartmentDefinition.useContext.value as Range) | (ConceptMap.useContext.value as Quantity) | (ConceptMap.useContext.value as Range) | (GraphDefinition.useContext.value as Quantity) | (GraphDefinition.useContext.value as Range) | (ImplementationGuide.useContext.value as Quantity) | (ImplementationGuide.useContext.value as Range) | (MessageDefinition.useContext.value as Quantity) | (MessageDefinition.useContext.value as Range) | (NamingSystem.useContext.value as Quantity) | (NamingSystem.useContext.value as Range) | (OperationDefinition.useContext.value as Quantity) | (OperationDefinition.useContext.value as Range) | (SearchParameter.useContext.value as Quantity) | (SearchParameter.useContext.value as Range) | (StructureDefinition.useContext.value as Quantity) | (StructureDefinition.useContext.value as Range) | (StructureMap.useContext.value as Quantity) | (StructureMap.useContext.value as Range) | (TerminologyCapabilities.useContext.value as Quantity) | (TerminologyCapabilities.useContext.value as Range) | (ValueSet.useContext.value as Quantity) | (ValueSet.useContext.value as Range)", + "xpath": "f:CapabilityStatement/f:useContext/f:valueQuantity | f:CapabilityStatement/f:useContext/f:valueRange | f:CodeSystem/f:useContext/f:valueQuantity | f:CodeSystem/f:useContext/f:valueRange | f:CompartmentDefinition/f:useContext/f:valueQuantity | f:CompartmentDefinition/f:useContext/f:valueRange | f:ConceptMap/f:useContext/f:valueQuantity | f:ConceptMap/f:useContext/f:valueRange | f:GraphDefinition/f:useContext/f:valueQuantity | f:GraphDefinition/f:useContext/f:valueRange | f:ImplementationGuide/f:useContext/f:valueQuantity | f:ImplementationGuide/f:useContext/f:valueRange | f:MessageDefinition/f:useContext/f:valueQuantity | f:MessageDefinition/f:useContext/f:valueRange | f:NamingSystem/f:useContext/f:valueQuantity | f:NamingSystem/f:useContext/f:valueRange | f:OperationDefinition/f:useContext/f:valueQuantity | f:OperationDefinition/f:useContext/f:valueRange | f:SearchParameter/f:useContext/f:valueQuantity | f:SearchParameter/f:useContext/f:valueRange | f:StructureDefinition/f:useContext/f:valueQuantity | f:StructureDefinition/f:useContext/f:valueRange | f:StructureMap/f:useContext/f:valueQuantity | f:StructureMap/f:useContext/f:valueRange | f:TerminologyCapabilities/f:useContext/f:valueQuantity | f:TerminologyCapabilities/f:useContext/f:valueRange | f:ValueSet/f:useContext/f:valueQuantity | f:ValueSet/f:useContext/f:valueRange", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/conformance-context-type", + "resource": { + "resourceType": "SearchParameter", + "id": "conformance-context-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/conformance-context-type", + "version": "4.0.1", + "name": "context-type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [CapabilityStatement](capabilitystatement.html): A type of use context assigned to the capability statement\r\n* [CodeSystem](codesystem.html): A type of use context assigned to the code system\r\n* [CompartmentDefinition](compartmentdefinition.html): A type of use context assigned to the compartment definition\r\n* [ConceptMap](conceptmap.html): A type of use context assigned to the concept map\r\n* [GraphDefinition](graphdefinition.html): A type of use context assigned to the graph definition\r\n* [ImplementationGuide](implementationguide.html): A type of use context assigned to the implementation guide\r\n* [MessageDefinition](messagedefinition.html): A type of use context assigned to the message definition\r\n* [NamingSystem](namingsystem.html): A type of use context assigned to the naming system\r\n* [OperationDefinition](operationdefinition.html): A type of use context assigned to the operation definition\r\n* [SearchParameter](searchparameter.html): A type of use context assigned to the search parameter\r\n* [StructureDefinition](structuredefinition.html): A type of use context assigned to the structure definition\r\n* [StructureMap](structuremap.html): A type of use context assigned to the structure map\r\n* [TerminologyCapabilities](terminologycapabilities.html): A type of use context assigned to the terminology capabilities\r\n* [ValueSet](valueset.html): A type of use context assigned to the value set\r\n", + "code": "context-type", + "base": [ "CapabilityStatement", "CodeSystem", "CompartmentDefinition", "ConceptMap", "GraphDefinition", "ImplementationGuide", "MessageDefinition", "NamingSystem", "OperationDefinition", "SearchParameter", "StructureDefinition", "StructureMap", "TerminologyCapabilities", "ValueSet" ], + "type": "token", + "expression": "CapabilityStatement.useContext.code | CodeSystem.useContext.code | CompartmentDefinition.useContext.code | ConceptMap.useContext.code | GraphDefinition.useContext.code | ImplementationGuide.useContext.code | MessageDefinition.useContext.code | NamingSystem.useContext.code | OperationDefinition.useContext.code | SearchParameter.useContext.code | StructureDefinition.useContext.code | StructureMap.useContext.code | TerminologyCapabilities.useContext.code | ValueSet.useContext.code", + "xpath": "f:CapabilityStatement/f:useContext/f:code | f:CodeSystem/f:useContext/f:code | f:CompartmentDefinition/f:useContext/f:code | f:ConceptMap/f:useContext/f:code | f:GraphDefinition/f:useContext/f:code | f:ImplementationGuide/f:useContext/f:code | f:MessageDefinition/f:useContext/f:code | f:NamingSystem/f:useContext/f:code | f:OperationDefinition/f:useContext/f:code | f:SearchParameter/f:useContext/f:code | f:StructureDefinition/f:useContext/f:code | f:StructureMap/f:useContext/f:code | f:TerminologyCapabilities/f:useContext/f:code | f:ValueSet/f:useContext/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/conformance-date", + "resource": { + "resourceType": "SearchParameter", + "id": "conformance-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/conformance-date", + "version": "4.0.1", + "name": "date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [CapabilityStatement](capabilitystatement.html): The capability statement publication date\r\n* [CodeSystem](codesystem.html): The code system publication date\r\n* [CompartmentDefinition](compartmentdefinition.html): The compartment definition publication date\r\n* [ConceptMap](conceptmap.html): The concept map publication date\r\n* [GraphDefinition](graphdefinition.html): The graph definition publication date\r\n* [ImplementationGuide](implementationguide.html): The implementation guide publication date\r\n* [MessageDefinition](messagedefinition.html): The message definition publication date\r\n* [NamingSystem](namingsystem.html): The naming system publication date\r\n* [OperationDefinition](operationdefinition.html): The operation definition publication date\r\n* [SearchParameter](searchparameter.html): The search parameter publication date\r\n* [StructureDefinition](structuredefinition.html): The structure definition publication date\r\n* [StructureMap](structuremap.html): The structure map publication date\r\n* [TerminologyCapabilities](terminologycapabilities.html): The terminology capabilities publication date\r\n* [ValueSet](valueset.html): The value set publication date\r\n", + "code": "date", + "base": [ "CapabilityStatement", "CodeSystem", "CompartmentDefinition", "ConceptMap", "GraphDefinition", "ImplementationGuide", "MessageDefinition", "NamingSystem", "OperationDefinition", "SearchParameter", "StructureDefinition", "StructureMap", "TerminologyCapabilities", "ValueSet" ], + "type": "date", + "expression": "CapabilityStatement.date | CodeSystem.date | CompartmentDefinition.date | ConceptMap.date | GraphDefinition.date | ImplementationGuide.date | MessageDefinition.date | NamingSystem.date | OperationDefinition.date | SearchParameter.date | StructureDefinition.date | StructureMap.date | TerminologyCapabilities.date | ValueSet.date", + "xpath": "f:CapabilityStatement/f:date | f:CodeSystem/f:date | f:CompartmentDefinition/f:date | f:ConceptMap/f:date | f:GraphDefinition/f:date | f:ImplementationGuide/f:date | f:MessageDefinition/f:date | f:NamingSystem/f:date | f:OperationDefinition/f:date | f:SearchParameter/f:date | f:StructureDefinition/f:date | f:StructureMap/f:date | f:TerminologyCapabilities/f:date | f:ValueSet/f:date", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/conformance-description", + "resource": { + "resourceType": "SearchParameter", + "id": "conformance-description", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/conformance-description", + "version": "4.0.1", + "name": "description", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [CapabilityStatement](capabilitystatement.html): The description of the capability statement\r\n* [CodeSystem](codesystem.html): The description of the code system\r\n* [CompartmentDefinition](compartmentdefinition.html): The description of the compartment definition\r\n* [ConceptMap](conceptmap.html): The description of the concept map\r\n* [GraphDefinition](graphdefinition.html): The description of the graph definition\r\n* [ImplementationGuide](implementationguide.html): The description of the implementation guide\r\n* [MessageDefinition](messagedefinition.html): The description of the message definition\r\n* [NamingSystem](namingsystem.html): The description of the naming system\r\n* [OperationDefinition](operationdefinition.html): The description of the operation definition\r\n* [SearchParameter](searchparameter.html): The description of the search parameter\r\n* [StructureDefinition](structuredefinition.html): The description of the structure definition\r\n* [StructureMap](structuremap.html): The description of the structure map\r\n* [TerminologyCapabilities](terminologycapabilities.html): The description of the terminology capabilities\r\n* [ValueSet](valueset.html): The description of the value set\r\n", + "code": "description", + "base": [ "CapabilityStatement", "CodeSystem", "CompartmentDefinition", "ConceptMap", "GraphDefinition", "ImplementationGuide", "MessageDefinition", "NamingSystem", "OperationDefinition", "SearchParameter", "StructureDefinition", "StructureMap", "TerminologyCapabilities", "ValueSet" ], + "type": "string", + "expression": "CapabilityStatement.description | CodeSystem.description | CompartmentDefinition.description | ConceptMap.description | GraphDefinition.description | ImplementationGuide.description | MessageDefinition.description | NamingSystem.description | OperationDefinition.description | SearchParameter.description | StructureDefinition.description | StructureMap.description | TerminologyCapabilities.description | ValueSet.description", + "xpath": "f:CapabilityStatement/f:description | f:CodeSystem/f:description | f:CompartmentDefinition/f:description | f:ConceptMap/f:description | f:GraphDefinition/f:description | f:ImplementationGuide/f:description | f:MessageDefinition/f:description | f:NamingSystem/f:description | f:OperationDefinition/f:description | f:SearchParameter/f:description | f:StructureDefinition/f:description | f:StructureMap/f:description | f:TerminologyCapabilities/f:description | f:ValueSet/f:description", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CapabilityStatement-fhirversion", + "resource": { + "resourceType": "SearchParameter", + "id": "CapabilityStatement-fhirversion", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CapabilityStatement-fhirversion", + "version": "4.0.1", + "name": "fhirversion", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The version of FHIR", + "code": "fhirversion", + "base": [ "CapabilityStatement" ], + "type": "token", + "expression": "CapabilityStatement.version", + "xpath": "f:CapabilityStatement/f:version", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CapabilityStatement-format", + "resource": { + "resourceType": "SearchParameter", + "id": "CapabilityStatement-format", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CapabilityStatement-format", + "version": "4.0.1", + "name": "format", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "formats supported (xml | json | ttl | mime type)", + "code": "format", + "base": [ "CapabilityStatement" ], + "type": "token", + "expression": "CapabilityStatement.format", + "xpath": "f:CapabilityStatement/f:format", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CapabilityStatement-guide", + "resource": { + "resourceType": "SearchParameter", + "id": "CapabilityStatement-guide", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CapabilityStatement-guide", + "version": "4.0.1", + "name": "guide", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Implementation guides supported", + "code": "guide", + "base": [ "CapabilityStatement" ], + "type": "reference", + "expression": "CapabilityStatement.implementationGuide", + "xpath": "f:CapabilityStatement/f:implementationGuide", + "xpathUsage": "normal", + "target": [ "ImplementationGuide" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/conformance-jurisdiction", + "resource": { + "resourceType": "SearchParameter", + "id": "conformance-jurisdiction", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/conformance-jurisdiction", + "version": "4.0.1", + "name": "jurisdiction", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [CapabilityStatement](capabilitystatement.html): Intended jurisdiction for the capability statement\r\n* [CodeSystem](codesystem.html): Intended jurisdiction for the code system\r\n* [ConceptMap](conceptmap.html): Intended jurisdiction for the concept map\r\n* [GraphDefinition](graphdefinition.html): Intended jurisdiction for the graph definition\r\n* [ImplementationGuide](implementationguide.html): Intended jurisdiction for the implementation guide\r\n* [MessageDefinition](messagedefinition.html): Intended jurisdiction for the message definition\r\n* [NamingSystem](namingsystem.html): Intended jurisdiction for the naming system\r\n* [OperationDefinition](operationdefinition.html): Intended jurisdiction for the operation definition\r\n* [SearchParameter](searchparameter.html): Intended jurisdiction for the search parameter\r\n* [StructureDefinition](structuredefinition.html): Intended jurisdiction for the structure definition\r\n* [StructureMap](structuremap.html): Intended jurisdiction for the structure map\r\n* [TerminologyCapabilities](terminologycapabilities.html): Intended jurisdiction for the terminology capabilities\r\n* [ValueSet](valueset.html): Intended jurisdiction for the value set\r\n", + "code": "jurisdiction", + "base": [ "CapabilityStatement", "CodeSystem", "ConceptMap", "GraphDefinition", "ImplementationGuide", "MessageDefinition", "NamingSystem", "OperationDefinition", "SearchParameter", "StructureDefinition", "StructureMap", "TerminologyCapabilities", "ValueSet" ], + "type": "token", + "expression": "CapabilityStatement.jurisdiction | CodeSystem.jurisdiction | ConceptMap.jurisdiction | GraphDefinition.jurisdiction | ImplementationGuide.jurisdiction | MessageDefinition.jurisdiction | NamingSystem.jurisdiction | OperationDefinition.jurisdiction | SearchParameter.jurisdiction | StructureDefinition.jurisdiction | StructureMap.jurisdiction | TerminologyCapabilities.jurisdiction | ValueSet.jurisdiction", + "xpath": "f:CapabilityStatement/f:jurisdiction | f:CodeSystem/f:jurisdiction | f:ConceptMap/f:jurisdiction | f:GraphDefinition/f:jurisdiction | f:ImplementationGuide/f:jurisdiction | f:MessageDefinition/f:jurisdiction | f:NamingSystem/f:jurisdiction | f:OperationDefinition/f:jurisdiction | f:SearchParameter/f:jurisdiction | f:StructureDefinition/f:jurisdiction | f:StructureMap/f:jurisdiction | f:TerminologyCapabilities/f:jurisdiction | f:ValueSet/f:jurisdiction", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CapabilityStatement-mode", + "resource": { + "resourceType": "SearchParameter", + "id": "CapabilityStatement-mode", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CapabilityStatement-mode", + "version": "4.0.1", + "name": "mode", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Mode - restful (server/client) or messaging (sender/receiver)", + "code": "mode", + "base": [ "CapabilityStatement" ], + "type": "token", + "expression": "CapabilityStatement.rest.mode", + "xpath": "f:CapabilityStatement/f:rest/f:mode", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/conformance-name", + "resource": { + "resourceType": "SearchParameter", + "id": "conformance-name", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/conformance-name", + "version": "4.0.1", + "name": "name", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [CapabilityStatement](capabilitystatement.html): Computationally friendly name of the capability statement\r\n* [CodeSystem](codesystem.html): Computationally friendly name of the code system\r\n* [CompartmentDefinition](compartmentdefinition.html): Computationally friendly name of the compartment definition\r\n* [ConceptMap](conceptmap.html): Computationally friendly name of the concept map\r\n* [GraphDefinition](graphdefinition.html): Computationally friendly name of the graph definition\r\n* [ImplementationGuide](implementationguide.html): Computationally friendly name of the implementation guide\r\n* [MessageDefinition](messagedefinition.html): Computationally friendly name of the message definition\r\n* [NamingSystem](namingsystem.html): Computationally friendly name of the naming system\r\n* [OperationDefinition](operationdefinition.html): Computationally friendly name of the operation definition\r\n* [SearchParameter](searchparameter.html): Computationally friendly name of the search parameter\r\n* [StructureDefinition](structuredefinition.html): Computationally friendly name of the structure definition\r\n* [StructureMap](structuremap.html): Computationally friendly name of the structure map\r\n* [TerminologyCapabilities](terminologycapabilities.html): Computationally friendly name of the terminology capabilities\r\n* [ValueSet](valueset.html): Computationally friendly name of the value set\r\n", + "code": "name", + "base": [ "CapabilityStatement", "CodeSystem", "CompartmentDefinition", "ConceptMap", "GraphDefinition", "ImplementationGuide", "MessageDefinition", "NamingSystem", "OperationDefinition", "SearchParameter", "StructureDefinition", "StructureMap", "TerminologyCapabilities", "ValueSet" ], + "type": "string", + "expression": "CapabilityStatement.name | CodeSystem.name | CompartmentDefinition.name | ConceptMap.name | GraphDefinition.name | ImplementationGuide.name | MessageDefinition.name | NamingSystem.name | OperationDefinition.name | SearchParameter.name | StructureDefinition.name | StructureMap.name | TerminologyCapabilities.name | ValueSet.name", + "xpath": "f:CapabilityStatement/f:name | f:CodeSystem/f:name | f:CompartmentDefinition/f:name | f:ConceptMap/f:name | f:GraphDefinition/f:name | f:ImplementationGuide/f:name | f:MessageDefinition/f:name | f:NamingSystem/f:name | f:OperationDefinition/f:name | f:SearchParameter/f:name | f:StructureDefinition/f:name | f:StructureMap/f:name | f:TerminologyCapabilities/f:name | f:ValueSet/f:name", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/conformance-publisher", + "resource": { + "resourceType": "SearchParameter", + "id": "conformance-publisher", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/conformance-publisher", + "version": "4.0.1", + "name": "publisher", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [CapabilityStatement](capabilitystatement.html): Name of the publisher of the capability statement\r\n* [CodeSystem](codesystem.html): Name of the publisher of the code system\r\n* [CompartmentDefinition](compartmentdefinition.html): Name of the publisher of the compartment definition\r\n* [ConceptMap](conceptmap.html): Name of the publisher of the concept map\r\n* [GraphDefinition](graphdefinition.html): Name of the publisher of the graph definition\r\n* [ImplementationGuide](implementationguide.html): Name of the publisher of the implementation guide\r\n* [MessageDefinition](messagedefinition.html): Name of the publisher of the message definition\r\n* [NamingSystem](namingsystem.html): Name of the publisher of the naming system\r\n* [OperationDefinition](operationdefinition.html): Name of the publisher of the operation definition\r\n* [SearchParameter](searchparameter.html): Name of the publisher of the search parameter\r\n* [StructureDefinition](structuredefinition.html): Name of the publisher of the structure definition\r\n* [StructureMap](structuremap.html): Name of the publisher of the structure map\r\n* [TerminologyCapabilities](terminologycapabilities.html): Name of the publisher of the terminology capabilities\r\n* [ValueSet](valueset.html): Name of the publisher of the value set\r\n", + "code": "publisher", + "base": [ "CapabilityStatement", "CodeSystem", "CompartmentDefinition", "ConceptMap", "GraphDefinition", "ImplementationGuide", "MessageDefinition", "NamingSystem", "OperationDefinition", "SearchParameter", "StructureDefinition", "StructureMap", "TerminologyCapabilities", "ValueSet" ], + "type": "string", + "expression": "CapabilityStatement.publisher | CodeSystem.publisher | CompartmentDefinition.publisher | ConceptMap.publisher | GraphDefinition.publisher | ImplementationGuide.publisher | MessageDefinition.publisher | NamingSystem.publisher | OperationDefinition.publisher | SearchParameter.publisher | StructureDefinition.publisher | StructureMap.publisher | TerminologyCapabilities.publisher | ValueSet.publisher", + "xpath": "f:CapabilityStatement/f:publisher | f:CodeSystem/f:publisher | f:CompartmentDefinition/f:publisher | f:ConceptMap/f:publisher | f:GraphDefinition/f:publisher | f:ImplementationGuide/f:publisher | f:MessageDefinition/f:publisher | f:NamingSystem/f:publisher | f:OperationDefinition/f:publisher | f:SearchParameter/f:publisher | f:StructureDefinition/f:publisher | f:StructureMap/f:publisher | f:TerminologyCapabilities/f:publisher | f:ValueSet/f:publisher", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CapabilityStatement-resource", + "resource": { + "resourceType": "SearchParameter", + "id": "CapabilityStatement-resource", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CapabilityStatement-resource", + "version": "4.0.1", + "name": "resource", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Name of a resource mentioned in a capability statement", + "code": "resource", + "base": [ "CapabilityStatement" ], + "type": "token", + "expression": "CapabilityStatement.rest.resource.type", + "xpath": "f:CapabilityStatement/f:rest/f:resource/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CapabilityStatement-resource-profile", + "resource": { + "resourceType": "SearchParameter", + "id": "CapabilityStatement-resource-profile", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CapabilityStatement-resource-profile", + "version": "4.0.1", + "name": "resource-profile", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "A profile id invoked in a capability statement", + "code": "resource-profile", + "base": [ "CapabilityStatement" ], + "type": "reference", + "expression": "CapabilityStatement.rest.resource.profile", + "xpath": "f:CapabilityStatement/f:rest/f:resource/f:profile", + "xpathUsage": "normal", + "target": [ "StructureDefinition" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CapabilityStatement-security-service", + "resource": { + "resourceType": "SearchParameter", + "id": "CapabilityStatement-security-service", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CapabilityStatement-security-service", + "version": "4.0.1", + "name": "security-service", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "OAuth | SMART-on-FHIR | NTLM | Basic | Kerberos | Certificates", + "code": "security-service", + "base": [ "CapabilityStatement" ], + "type": "token", + "expression": "CapabilityStatement.rest.security.service", + "xpath": "f:CapabilityStatement/f:rest/f:security/f:service", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CapabilityStatement-software", + "resource": { + "resourceType": "SearchParameter", + "id": "CapabilityStatement-software", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CapabilityStatement-software", + "version": "4.0.1", + "name": "software", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Part of the name of a software application", + "code": "software", + "base": [ "CapabilityStatement" ], + "type": "string", + "expression": "CapabilityStatement.software.name", + "xpath": "f:CapabilityStatement/f:software/f:name", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/conformance-status", + "resource": { + "resourceType": "SearchParameter", + "id": "conformance-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/conformance-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [CapabilityStatement](capabilitystatement.html): The current status of the capability statement\r\n* [CodeSystem](codesystem.html): The current status of the code system\r\n* [CompartmentDefinition](compartmentdefinition.html): The current status of the compartment definition\r\n* [ConceptMap](conceptmap.html): The current status of the concept map\r\n* [GraphDefinition](graphdefinition.html): The current status of the graph definition\r\n* [ImplementationGuide](implementationguide.html): The current status of the implementation guide\r\n* [MessageDefinition](messagedefinition.html): The current status of the message definition\r\n* [NamingSystem](namingsystem.html): The current status of the naming system\r\n* [OperationDefinition](operationdefinition.html): The current status of the operation definition\r\n* [SearchParameter](searchparameter.html): The current status of the search parameter\r\n* [StructureDefinition](structuredefinition.html): The current status of the structure definition\r\n* [StructureMap](structuremap.html): The current status of the structure map\r\n* [TerminologyCapabilities](terminologycapabilities.html): The current status of the terminology capabilities\r\n* [ValueSet](valueset.html): The current status of the value set\r\n", + "code": "status", + "base": [ "CapabilityStatement", "CodeSystem", "CompartmentDefinition", "ConceptMap", "GraphDefinition", "ImplementationGuide", "MessageDefinition", "NamingSystem", "OperationDefinition", "SearchParameter", "StructureDefinition", "StructureMap", "TerminologyCapabilities", "ValueSet" ], + "type": "token", + "expression": "CapabilityStatement.status | CodeSystem.status | CompartmentDefinition.status | ConceptMap.status | GraphDefinition.status | ImplementationGuide.status | MessageDefinition.status | NamingSystem.status | OperationDefinition.status | SearchParameter.status | StructureDefinition.status | StructureMap.status | TerminologyCapabilities.status | ValueSet.status", + "xpath": "f:CapabilityStatement/f:status | f:CodeSystem/f:status | f:CompartmentDefinition/f:status | f:ConceptMap/f:status | f:GraphDefinition/f:status | f:ImplementationGuide/f:status | f:MessageDefinition/f:status | f:NamingSystem/f:status | f:OperationDefinition/f:status | f:SearchParameter/f:status | f:StructureDefinition/f:status | f:StructureMap/f:status | f:TerminologyCapabilities/f:status | f:ValueSet/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CapabilityStatement-supported-profile", + "resource": { + "resourceType": "SearchParameter", + "id": "CapabilityStatement-supported-profile", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CapabilityStatement-supported-profile", + "version": "4.0.1", + "name": "supported-profile", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Profiles for use cases supported", + "code": "supported-profile", + "base": [ "CapabilityStatement" ], + "type": "reference", + "expression": "CapabilityStatement.rest.resource.supportedProfile", + "xpath": "f:CapabilityStatement/f:rest/f:resource/f:supportedProfile", + "xpathUsage": "normal", + "target": [ "StructureDefinition" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/conformance-title", + "resource": { + "resourceType": "SearchParameter", + "id": "conformance-title", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/conformance-title", + "version": "4.0.1", + "name": "title", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [CapabilityStatement](capabilitystatement.html): The human-friendly name of the capability statement\r\n* [CodeSystem](codesystem.html): The human-friendly name of the code system\r\n* [ConceptMap](conceptmap.html): The human-friendly name of the concept map\r\n* [ImplementationGuide](implementationguide.html): The human-friendly name of the implementation guide\r\n* [MessageDefinition](messagedefinition.html): The human-friendly name of the message definition\r\n* [OperationDefinition](operationdefinition.html): The human-friendly name of the operation definition\r\n* [StructureDefinition](structuredefinition.html): The human-friendly name of the structure definition\r\n* [StructureMap](structuremap.html): The human-friendly name of the structure map\r\n* [TerminologyCapabilities](terminologycapabilities.html): The human-friendly name of the terminology capabilities\r\n* [ValueSet](valueset.html): The human-friendly name of the value set\r\n", + "code": "title", + "base": [ "CapabilityStatement", "CodeSystem", "ConceptMap", "ImplementationGuide", "MessageDefinition", "OperationDefinition", "StructureDefinition", "StructureMap", "TerminologyCapabilities", "ValueSet" ], + "type": "string", + "expression": "CapabilityStatement.title | CodeSystem.title | ConceptMap.title | ImplementationGuide.title | MessageDefinition.title | OperationDefinition.title | StructureDefinition.title | StructureMap.title | TerminologyCapabilities.title | ValueSet.title", + "xpath": "f:CapabilityStatement/f:title | f:CodeSystem/f:title | f:ConceptMap/f:title | f:ImplementationGuide/f:title | f:MessageDefinition/f:title | f:OperationDefinition/f:title | f:StructureDefinition/f:title | f:StructureMap/f:title | f:TerminologyCapabilities/f:title | f:ValueSet/f:title", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/conformance-url", + "resource": { + "resourceType": "SearchParameter", + "id": "conformance-url", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/conformance-url", + "version": "4.0.1", + "name": "url", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [CapabilityStatement](capabilitystatement.html): The uri that identifies the capability statement\r\n* [CodeSystem](codesystem.html): The uri that identifies the code system\r\n* [CompartmentDefinition](compartmentdefinition.html): The uri that identifies the compartment definition\r\n* [ConceptMap](conceptmap.html): The uri that identifies the concept map\r\n* [GraphDefinition](graphdefinition.html): The uri that identifies the graph definition\r\n* [ImplementationGuide](implementationguide.html): The uri that identifies the implementation guide\r\n* [MessageDefinition](messagedefinition.html): The uri that identifies the message definition\r\n* [OperationDefinition](operationdefinition.html): The uri that identifies the operation definition\r\n* [SearchParameter](searchparameter.html): The uri that identifies the search parameter\r\n* [StructureDefinition](structuredefinition.html): The uri that identifies the structure definition\r\n* [StructureMap](structuremap.html): The uri that identifies the structure map\r\n* [TerminologyCapabilities](terminologycapabilities.html): The uri that identifies the terminology capabilities\r\n* [ValueSet](valueset.html): The uri that identifies the value set\r\n", + "code": "url", + "base": [ "CapabilityStatement", "CodeSystem", "CompartmentDefinition", "ConceptMap", "GraphDefinition", "ImplementationGuide", "MessageDefinition", "OperationDefinition", "SearchParameter", "StructureDefinition", "StructureMap", "TerminologyCapabilities", "ValueSet" ], + "type": "uri", + "expression": "CapabilityStatement.url | CodeSystem.url | CompartmentDefinition.url | ConceptMap.url | GraphDefinition.url | ImplementationGuide.url | MessageDefinition.url | OperationDefinition.url | SearchParameter.url | StructureDefinition.url | StructureMap.url | TerminologyCapabilities.url | ValueSet.url", + "xpath": "f:CapabilityStatement/f:url | f:CodeSystem/f:url | f:CompartmentDefinition/f:url | f:ConceptMap/f:url | f:GraphDefinition/f:url | f:ImplementationGuide/f:url | f:MessageDefinition/f:url | f:OperationDefinition/f:url | f:SearchParameter/f:url | f:StructureDefinition/f:url | f:StructureMap/f:url | f:TerminologyCapabilities/f:url | f:ValueSet/f:url", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/conformance-version", + "resource": { + "resourceType": "SearchParameter", + "id": "conformance-version", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/conformance-version", + "version": "4.0.1", + "name": "version", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [CapabilityStatement](capabilitystatement.html): The business version of the capability statement\r\n* [CodeSystem](codesystem.html): The business version of the code system\r\n* [CompartmentDefinition](compartmentdefinition.html): The business version of the compartment definition\r\n* [ConceptMap](conceptmap.html): The business version of the concept map\r\n* [GraphDefinition](graphdefinition.html): The business version of the graph definition\r\n* [ImplementationGuide](implementationguide.html): The business version of the implementation guide\r\n* [MessageDefinition](messagedefinition.html): The business version of the message definition\r\n* [OperationDefinition](operationdefinition.html): The business version of the operation definition\r\n* [SearchParameter](searchparameter.html): The business version of the search parameter\r\n* [StructureDefinition](structuredefinition.html): The business version of the structure definition\r\n* [StructureMap](structuremap.html): The business version of the structure map\r\n* [TerminologyCapabilities](terminologycapabilities.html): The business version of the terminology capabilities\r\n* [ValueSet](valueset.html): The business version of the value set\r\n", + "code": "version", + "base": [ "CapabilityStatement", "CodeSystem", "CompartmentDefinition", "ConceptMap", "GraphDefinition", "ImplementationGuide", "MessageDefinition", "OperationDefinition", "SearchParameter", "StructureDefinition", "StructureMap", "TerminologyCapabilities", "ValueSet" ], + "type": "token", + "expression": "CapabilityStatement.version | CodeSystem.version | CompartmentDefinition.version | ConceptMap.version | GraphDefinition.version | ImplementationGuide.version | MessageDefinition.version | OperationDefinition.version | SearchParameter.version | StructureDefinition.version | StructureMap.version | TerminologyCapabilities.version | ValueSet.version", + "xpath": "f:CapabilityStatement/f:version | f:CodeSystem/f:version | f:CompartmentDefinition/f:version | f:ConceptMap/f:version | f:GraphDefinition/f:version | f:ImplementationGuide/f:version | f:MessageDefinition/f:version | f:OperationDefinition/f:version | f:SearchParameter/f:version | f:StructureDefinition/f:version | f:StructureMap/f:version | f:TerminologyCapabilities/f:version | f:ValueSet/f:version", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/conformance-context-type-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "conformance-context-type-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/conformance-context-type-quantity", + "version": "4.0.1", + "name": "context-type-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [CapabilityStatement](capabilitystatement.html): A use context type and quantity- or range-based value assigned to the capability statement\r\n* [CodeSystem](codesystem.html): A use context type and quantity- or range-based value assigned to the code system\r\n* [CompartmentDefinition](compartmentdefinition.html): A use context type and quantity- or range-based value assigned to the compartment definition\r\n* [ConceptMap](conceptmap.html): A use context type and quantity- or range-based value assigned to the concept map\r\n* [GraphDefinition](graphdefinition.html): A use context type and quantity- or range-based value assigned to the graph definition\r\n* [ImplementationGuide](implementationguide.html): A use context type and quantity- or range-based value assigned to the implementation guide\r\n* [MessageDefinition](messagedefinition.html): A use context type and quantity- or range-based value assigned to the message definition\r\n* [NamingSystem](namingsystem.html): A use context type and quantity- or range-based value assigned to the naming system\r\n* [OperationDefinition](operationdefinition.html): A use context type and quantity- or range-based value assigned to the operation definition\r\n* [SearchParameter](searchparameter.html): A use context type and quantity- or range-based value assigned to the search parameter\r\n* [StructureDefinition](structuredefinition.html): A use context type and quantity- or range-based value assigned to the structure definition\r\n* [StructureMap](structuremap.html): A use context type and quantity- or range-based value assigned to the structure map\r\n* [TerminologyCapabilities](terminologycapabilities.html): A use context type and quantity- or range-based value assigned to the terminology capabilities\r\n* [ValueSet](valueset.html): A use context type and quantity- or range-based value assigned to the value set\r\n", + "code": "context-type-quantity", + "base": [ "CapabilityStatement", "CodeSystem", "CompartmentDefinition", "ConceptMap", "GraphDefinition", "ImplementationGuide", "MessageDefinition", "NamingSystem", "OperationDefinition", "SearchParameter", "StructureDefinition", "StructureMap", "TerminologyCapabilities", "ValueSet" ], + "type": "composite", + "expression": "CapabilityStatement.useContext | CodeSystem.useContext | CompartmentDefinition.useContext | ConceptMap.useContext | GraphDefinition.useContext | ImplementationGuide.useContext | MessageDefinition.useContext | NamingSystem.useContext | OperationDefinition.useContext | SearchParameter.useContext | StructureDefinition.useContext | StructureMap.useContext | TerminologyCapabilities.useContext | ValueSet.useContext", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/conformance-context-type", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/conformance-context-quantity", + "expression": "value.as(Quantity) | value.as(Range)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/conformance-context-type-value", + "resource": { + "resourceType": "SearchParameter", + "id": "conformance-context-type-value", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/conformance-context-type-value", + "version": "4.0.1", + "name": "context-type-value", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [CapabilityStatement](capabilitystatement.html): A use context type and value assigned to the capability statement\r\n* [CodeSystem](codesystem.html): A use context type and value assigned to the code system\r\n* [CompartmentDefinition](compartmentdefinition.html): A use context type and value assigned to the compartment definition\r\n* [ConceptMap](conceptmap.html): A use context type and value assigned to the concept map\r\n* [GraphDefinition](graphdefinition.html): A use context type and value assigned to the graph definition\r\n* [ImplementationGuide](implementationguide.html): A use context type and value assigned to the implementation guide\r\n* [MessageDefinition](messagedefinition.html): A use context type and value assigned to the message definition\r\n* [NamingSystem](namingsystem.html): A use context type and value assigned to the naming system\r\n* [OperationDefinition](operationdefinition.html): A use context type and value assigned to the operation definition\r\n* [SearchParameter](searchparameter.html): A use context type and value assigned to the search parameter\r\n* [StructureDefinition](structuredefinition.html): A use context type and value assigned to the structure definition\r\n* [StructureMap](structuremap.html): A use context type and value assigned to the structure map\r\n* [TerminologyCapabilities](terminologycapabilities.html): A use context type and value assigned to the terminology capabilities\r\n* [ValueSet](valueset.html): A use context type and value assigned to the value set\r\n", + "code": "context-type-value", + "base": [ "CapabilityStatement", "CodeSystem", "CompartmentDefinition", "ConceptMap", "GraphDefinition", "ImplementationGuide", "MessageDefinition", "NamingSystem", "OperationDefinition", "SearchParameter", "StructureDefinition", "StructureMap", "TerminologyCapabilities", "ValueSet" ], + "type": "composite", + "expression": "CapabilityStatement.useContext | CodeSystem.useContext | CompartmentDefinition.useContext | ConceptMap.useContext | GraphDefinition.useContext | ImplementationGuide.useContext | MessageDefinition.useContext | NamingSystem.useContext | OperationDefinition.useContext | SearchParameter.useContext | StructureDefinition.useContext | StructureMap.useContext | TerminologyCapabilities.useContext | ValueSet.useContext", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/conformance-context-type", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/conformance-context", + "expression": "value.as(CodeableConcept)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CarePlan-activity-code", + "resource": { + "resourceType": "SearchParameter", + "id": "CarePlan-activity-code", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CarePlan-activity-code", + "version": "4.0.1", + "name": "activity-code", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Detail type of activity", + "code": "activity-code", + "base": [ "CarePlan" ], + "type": "token", + "expression": "CarePlan.activity.detail.code", + "xpath": "f:CarePlan/f:activity/f:detail/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CarePlan-activity-date", + "resource": { + "resourceType": "SearchParameter", + "id": "CarePlan-activity-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CarePlan-activity-date", + "version": "4.0.1", + "name": "activity-date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Specified date occurs within period specified by CarePlan.activity.detail.scheduled[x]", + "code": "activity-date", + "base": [ "CarePlan" ], + "type": "date", + "expression": "CarePlan.activity.detail.scheduled", + "xpath": "f:CarePlan/f:activity/f:detail/f:scheduledTiming | f:CarePlan/f:activity/f:detail/f:scheduledPeriod | f:CarePlan/f:activity/f:detail/f:scheduledString", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CarePlan-activity-reference", + "resource": { + "resourceType": "SearchParameter", + "id": "CarePlan-activity-reference", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CarePlan-activity-reference", + "version": "4.0.1", + "name": "activity-reference", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Activity details defined in specific resource", + "code": "activity-reference", + "base": [ "CarePlan" ], + "type": "reference", + "expression": "CarePlan.activity.reference", + "xpath": "f:CarePlan/f:activity/f:reference", + "xpathUsage": "normal", + "target": [ "Appointment", "MedicationRequest", "Task", "NutritionOrder", "RequestGroup", "VisionPrescription", "DeviceRequest", "ServiceRequest", "CommunicationRequest" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CarePlan-based-on", + "resource": { + "resourceType": "SearchParameter", + "id": "CarePlan-based-on", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CarePlan-based-on", + "version": "4.0.1", + "name": "based-on", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Fulfills CarePlan", + "code": "based-on", + "base": [ "CarePlan" ], + "type": "reference", + "expression": "CarePlan.basedOn", + "xpath": "f:CarePlan/f:basedOn", + "xpathUsage": "normal", + "target": [ "CarePlan" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CarePlan-care-team", + "resource": { + "resourceType": "SearchParameter", + "id": "CarePlan-care-team", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CarePlan-care-team", + "version": "4.0.1", + "name": "care-team", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Who's involved in plan?", + "code": "care-team", + "base": [ "CarePlan" ], + "type": "reference", + "expression": "CarePlan.careTeam", + "xpath": "f:CarePlan/f:careTeam", + "xpathUsage": "normal", + "target": [ "CareTeam" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CarePlan-category", + "resource": { + "resourceType": "SearchParameter", + "id": "CarePlan-category", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CarePlan-category", + "version": "4.0.1", + "name": "category", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Type of plan", + "code": "category", + "base": [ "CarePlan" ], + "type": "token", + "expression": "CarePlan.category", + "xpath": "f:CarePlan/f:category", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CarePlan-condition", + "resource": { + "resourceType": "SearchParameter", + "id": "CarePlan-condition", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CarePlan-condition", + "version": "4.0.1", + "name": "condition", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Health issues this plan addresses", + "code": "condition", + "base": [ "CarePlan" ], + "type": "reference", + "expression": "CarePlan.addresses", + "xpath": "f:CarePlan/f:addresses", + "xpathUsage": "normal", + "target": [ "Condition" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CarePlan-encounter", + "resource": { + "resourceType": "SearchParameter", + "id": "CarePlan-encounter", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CarePlan-encounter", + "version": "4.0.1", + "name": "encounter", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Encounter created as part of", + "code": "encounter", + "base": [ "CarePlan" ], + "type": "reference", + "expression": "CarePlan.encounter", + "xpath": "f:CarePlan/f:encounter", + "xpathUsage": "normal", + "target": [ "Encounter" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CarePlan-goal", + "resource": { + "resourceType": "SearchParameter", + "id": "CarePlan-goal", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CarePlan-goal", + "version": "4.0.1", + "name": "goal", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Desired outcome of plan", + "code": "goal", + "base": [ "CarePlan" ], + "type": "reference", + "expression": "CarePlan.goal", + "xpath": "f:CarePlan/f:goal", + "xpathUsage": "normal", + "target": [ "Goal" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CarePlan-instantiates-canonical", + "resource": { + "resourceType": "SearchParameter", + "id": "CarePlan-instantiates-canonical", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CarePlan-instantiates-canonical", + "version": "4.0.1", + "name": "instantiates-canonical", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Instantiates FHIR protocol or definition", + "code": "instantiates-canonical", + "base": [ "CarePlan" ], + "type": "reference", + "expression": "CarePlan.instantiatesCanonical", + "xpath": "f:CarePlan/f:instantiatesCanonical", + "xpathUsage": "normal", + "target": [ "Questionnaire", "Measure", "PlanDefinition", "OperationDefinition", "ActivityDefinition" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CarePlan-instantiates-uri", + "resource": { + "resourceType": "SearchParameter", + "id": "CarePlan-instantiates-uri", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CarePlan-instantiates-uri", + "version": "4.0.1", + "name": "instantiates-uri", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Instantiates external protocol or definition", + "code": "instantiates-uri", + "base": [ "CarePlan" ], + "type": "uri", + "expression": "CarePlan.instantiatesUri", + "xpath": "f:CarePlan/f:instantiatesUri", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CarePlan-intent", + "resource": { + "resourceType": "SearchParameter", + "id": "CarePlan-intent", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CarePlan-intent", + "version": "4.0.1", + "name": "intent", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "proposal | plan | order | option", + "code": "intent", + "base": [ "CarePlan" ], + "type": "token", + "expression": "CarePlan.intent", + "xpath": "f:CarePlan/f:intent", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CarePlan-part-of", + "resource": { + "resourceType": "SearchParameter", + "id": "CarePlan-part-of", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CarePlan-part-of", + "version": "4.0.1", + "name": "part-of", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Part of referenced CarePlan", + "code": "part-of", + "base": [ "CarePlan" ], + "type": "reference", + "expression": "CarePlan.partOf", + "xpath": "f:CarePlan/f:partOf", + "xpathUsage": "normal", + "target": [ "CarePlan" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CarePlan-performer", + "resource": { + "resourceType": "SearchParameter", + "id": "CarePlan-performer", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CarePlan-performer", + "version": "4.0.1", + "name": "performer", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Matches if the practitioner is listed as a performer in any of the \"simple\" activities. (For performers of the detailed activities, chain through the activitydetail search parameter.)", + "code": "performer", + "base": [ "CarePlan" ], + "type": "reference", + "expression": "CarePlan.activity.detail.performer", + "xpath": "f:CarePlan/f:activity/f:detail/f:performer", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "CareTeam", "Device", "Patient", "HealthcareService", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CarePlan-replaces", + "resource": { + "resourceType": "SearchParameter", + "id": "CarePlan-replaces", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CarePlan-replaces", + "version": "4.0.1", + "name": "replaces", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "CarePlan replaced by this CarePlan", + "code": "replaces", + "base": [ "CarePlan" ], + "type": "reference", + "expression": "CarePlan.replaces", + "xpath": "f:CarePlan/f:replaces", + "xpathUsage": "normal", + "target": [ "CarePlan" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CarePlan-status", + "resource": { + "resourceType": "SearchParameter", + "id": "CarePlan-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CarePlan-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "draft | active | on-hold | revoked | completed | entered-in-error | unknown", + "code": "status", + "base": [ "CarePlan" ], + "type": "token", + "expression": "CarePlan.status", + "xpath": "f:CarePlan/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CarePlan-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "CarePlan-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CarePlan-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Who the care plan is for", + "code": "subject", + "base": [ "CarePlan" ], + "type": "reference", + "expression": "CarePlan.subject", + "xpath": "f:CarePlan/f:subject", + "xpathUsage": "normal", + "target": [ "Group", "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CareTeam-category", + "resource": { + "resourceType": "SearchParameter", + "id": "CareTeam-category", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CareTeam-category", + "version": "4.0.1", + "name": "category", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Type of team", + "code": "category", + "base": [ "CareTeam" ], + "type": "token", + "expression": "CareTeam.category", + "xpath": "f:CareTeam/f:category", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CareTeam-encounter", + "resource": { + "resourceType": "SearchParameter", + "id": "CareTeam-encounter", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CareTeam-encounter", + "version": "4.0.1", + "name": "encounter", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Encounter created as part of", + "code": "encounter", + "base": [ "CareTeam" ], + "type": "reference", + "expression": "CareTeam.encounter", + "xpath": "f:CareTeam/f:encounter", + "xpathUsage": "normal", + "target": [ "Encounter" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CareTeam-participant", + "resource": { + "resourceType": "SearchParameter", + "id": "CareTeam-participant", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CareTeam-participant", + "version": "4.0.1", + "name": "participant", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Who is involved", + "code": "participant", + "base": [ "CareTeam" ], + "type": "reference", + "expression": "CareTeam.participant.member", + "xpath": "f:CareTeam/f:participant/f:member", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "CareTeam", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CareTeam-status", + "resource": { + "resourceType": "SearchParameter", + "id": "CareTeam-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CareTeam-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "proposed | active | suspended | inactive | entered-in-error", + "code": "status", + "base": [ "CareTeam" ], + "type": "token", + "expression": "CareTeam.status", + "xpath": "f:CareTeam/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CareTeam-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "CareTeam-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CareTeam-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Who care team is for", + "code": "subject", + "base": [ "CareTeam" ], + "type": "reference", + "expression": "CareTeam.subject", + "xpath": "f:CareTeam/f:subject", + "xpathUsage": "normal", + "target": [ "Group", "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ChargeItem-account", + "resource": { + "resourceType": "SearchParameter", + "id": "ChargeItem-account", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ChargeItem-account", + "version": "4.0.1", + "name": "account", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Account to place this charge", + "code": "account", + "base": [ "ChargeItem" ], + "type": "reference", + "expression": "ChargeItem.account", + "xpath": "f:ChargeItem/f:account", + "xpathUsage": "normal", + "target": [ "Account" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ChargeItem-code", + "resource": { + "resourceType": "SearchParameter", + "id": "ChargeItem-code", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ChargeItem-code", + "version": "4.0.1", + "name": "code", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A code that identifies the charge, like a billing code", + "code": "code", + "base": [ "ChargeItem" ], + "type": "token", + "expression": "ChargeItem.code", + "xpath": "f:ChargeItem/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ChargeItem-context", + "resource": { + "resourceType": "SearchParameter", + "id": "ChargeItem-context", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ChargeItem-context", + "version": "4.0.1", + "name": "context", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Encounter / Episode associated with event", + "code": "context", + "base": [ "ChargeItem" ], + "type": "reference", + "expression": "ChargeItem.context", + "xpath": "f:ChargeItem/f:context", + "xpathUsage": "normal", + "target": [ "EpisodeOfCare", "Encounter" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ChargeItem-entered-date", + "resource": { + "resourceType": "SearchParameter", + "id": "ChargeItem-entered-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ChargeItem-entered-date", + "version": "4.0.1", + "name": "entered-date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Date the charge item was entered", + "code": "entered-date", + "base": [ "ChargeItem" ], + "type": "date", + "expression": "ChargeItem.enteredDate", + "xpath": "f:ChargeItem/f:enteredDate", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ChargeItem-enterer", + "resource": { + "resourceType": "SearchParameter", + "id": "ChargeItem-enterer", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ChargeItem-enterer", + "version": "4.0.1", + "name": "enterer", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Individual who was entering", + "code": "enterer", + "base": [ "ChargeItem" ], + "type": "reference", + "expression": "ChargeItem.enterer", + "xpath": "f:ChargeItem/f:enterer", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "Device", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ChargeItem-factor-override", + "resource": { + "resourceType": "SearchParameter", + "id": "ChargeItem-factor-override", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ChargeItem-factor-override", + "version": "4.0.1", + "name": "factor-override", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Factor overriding the associated rules", + "code": "factor-override", + "base": [ "ChargeItem" ], + "type": "number", + "expression": "ChargeItem.factorOverride", + "xpath": "f:ChargeItem/f:factorOverride", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ChargeItem-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "ChargeItem-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ChargeItem-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Business Identifier for item", + "code": "identifier", + "base": [ "ChargeItem" ], + "type": "token", + "expression": "ChargeItem.identifier", + "xpath": "f:ChargeItem/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ChargeItem-occurrence", + "resource": { + "resourceType": "SearchParameter", + "id": "ChargeItem-occurrence", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ChargeItem-occurrence", + "version": "4.0.1", + "name": "occurrence", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "When the charged service was applied", + "code": "occurrence", + "base": [ "ChargeItem" ], + "type": "date", + "expression": "ChargeItem.occurrence", + "xpath": "f:ChargeItem/f:occurrenceDateTime | f:ChargeItem/f:occurrencePeriod | f:ChargeItem/f:occurrenceTiming", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ChargeItem-patient", + "resource": { + "resourceType": "SearchParameter", + "id": "ChargeItem-patient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ChargeItem-patient", + "version": "4.0.1", + "name": "patient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Individual service was done for/to", + "code": "patient", + "base": [ "ChargeItem" ], + "type": "reference", + "expression": "ChargeItem.subject.where(resolve() is Patient)", + "xpath": "f:ChargeItem/f:subject", + "xpathUsage": "normal", + "target": [ "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ChargeItem-performer-actor", + "resource": { + "resourceType": "SearchParameter", + "id": "ChargeItem-performer-actor", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ChargeItem-performer-actor", + "version": "4.0.1", + "name": "performer-actor", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Individual who was performing", + "code": "performer-actor", + "base": [ "ChargeItem" ], + "type": "reference", + "expression": "ChargeItem.performer.actor", + "xpath": "f:ChargeItem/f:performer/f:actor", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "CareTeam", "Device", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ChargeItem-performer-function", + "resource": { + "resourceType": "SearchParameter", + "id": "ChargeItem-performer-function", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ChargeItem-performer-function", + "version": "4.0.1", + "name": "performer-function", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "What type of performance was done", + "code": "performer-function", + "base": [ "ChargeItem" ], + "type": "token", + "expression": "ChargeItem.performer.function", + "xpath": "f:ChargeItem/f:performer/f:function", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ChargeItem-performing-organization", + "resource": { + "resourceType": "SearchParameter", + "id": "ChargeItem-performing-organization", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ChargeItem-performing-organization", + "version": "4.0.1", + "name": "performing-organization", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Organization providing the charged service", + "code": "performing-organization", + "base": [ "ChargeItem" ], + "type": "reference", + "expression": "ChargeItem.performingOrganization", + "xpath": "f:ChargeItem/f:performingOrganization", + "xpathUsage": "normal", + "target": [ "Organization" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ChargeItem-price-override", + "resource": { + "resourceType": "SearchParameter", + "id": "ChargeItem-price-override", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ChargeItem-price-override", + "version": "4.0.1", + "name": "price-override", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Price overriding the associated rules", + "code": "price-override", + "base": [ "ChargeItem" ], + "type": "quantity", + "expression": "ChargeItem.priceOverride", + "xpath": "f:ChargeItem/f:priceOverride", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ChargeItem-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "ChargeItem-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ChargeItem-quantity", + "version": "4.0.1", + "name": "quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Quantity of which the charge item has been serviced", + "code": "quantity", + "base": [ "ChargeItem" ], + "type": "quantity", + "expression": "ChargeItem.quantity", + "xpath": "f:ChargeItem/f:quantity", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ChargeItem-requesting-organization", + "resource": { + "resourceType": "SearchParameter", + "id": "ChargeItem-requesting-organization", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ChargeItem-requesting-organization", + "version": "4.0.1", + "name": "requesting-organization", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Organization requesting the charged service", + "code": "requesting-organization", + "base": [ "ChargeItem" ], + "type": "reference", + "expression": "ChargeItem.requestingOrganization", + "xpath": "f:ChargeItem/f:requestingOrganization", + "xpathUsage": "normal", + "target": [ "Organization" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ChargeItem-service", + "resource": { + "resourceType": "SearchParameter", + "id": "ChargeItem-service", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ChargeItem-service", + "version": "4.0.1", + "name": "service", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Which rendered service is being charged?", + "code": "service", + "base": [ "ChargeItem" ], + "type": "reference", + "expression": "ChargeItem.service", + "xpath": "f:ChargeItem/f:service", + "xpathUsage": "normal", + "target": [ "Immunization", "MedicationDispense", "SupplyDelivery", "Observation", "DiagnosticReport", "ImagingStudy", "MedicationAdministration", "Procedure" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ChargeItem-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "ChargeItem-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ChargeItem-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Individual service was done for/to", + "code": "subject", + "base": [ "ChargeItem" ], + "type": "reference", + "expression": "ChargeItem.subject", + "xpath": "f:ChargeItem/f:subject", + "xpathUsage": "normal", + "target": [ "Group", "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ChargeItemDefinition-context", + "resource": { + "resourceType": "SearchParameter", + "id": "ChargeItemDefinition-context", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ChargeItemDefinition-context", + "version": "4.0.1", + "name": "context", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A use context assigned to the charge item definition", + "code": "context", + "base": [ "ChargeItemDefinition" ], + "type": "token", + "expression": "(ChargeItemDefinition.useContext.value as CodeableConcept)", + "xpath": "f:ChargeItemDefinition/f:useContext/f:valueCodeableConcept", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ChargeItemDefinition-context-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "ChargeItemDefinition-context-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ChargeItemDefinition-context-quantity", + "version": "4.0.1", + "name": "context-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A quantity- or range-valued use context assigned to the charge item definition", + "code": "context-quantity", + "base": [ "ChargeItemDefinition" ], + "type": "quantity", + "expression": "(ChargeItemDefinition.useContext.value as Quantity) | (ChargeItemDefinition.useContext.value as Range)", + "xpath": "f:ChargeItemDefinition/f:useContext/f:valueQuantity | f:ChargeItemDefinition/f:useContext/f:valueRange", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ChargeItemDefinition-context-type", + "resource": { + "resourceType": "SearchParameter", + "id": "ChargeItemDefinition-context-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ChargeItemDefinition-context-type", + "version": "4.0.1", + "name": "context-type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A type of use context assigned to the charge item definition", + "code": "context-type", + "base": [ "ChargeItemDefinition" ], + "type": "token", + "expression": "ChargeItemDefinition.useContext.code", + "xpath": "f:ChargeItemDefinition/f:useContext/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ChargeItemDefinition-date", + "resource": { + "resourceType": "SearchParameter", + "id": "ChargeItemDefinition-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ChargeItemDefinition-date", + "version": "4.0.1", + "name": "date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The charge item definition publication date", + "code": "date", + "base": [ "ChargeItemDefinition" ], + "type": "date", + "expression": "ChargeItemDefinition.date", + "xpath": "f:ChargeItemDefinition/f:date", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ChargeItemDefinition-description", + "resource": { + "resourceType": "SearchParameter", + "id": "ChargeItemDefinition-description", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ChargeItemDefinition-description", + "version": "4.0.1", + "name": "description", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The description of the charge item definition", + "code": "description", + "base": [ "ChargeItemDefinition" ], + "type": "string", + "expression": "ChargeItemDefinition.description", + "xpath": "f:ChargeItemDefinition/f:description", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ChargeItemDefinition-effective", + "resource": { + "resourceType": "SearchParameter", + "id": "ChargeItemDefinition-effective", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ChargeItemDefinition-effective", + "version": "4.0.1", + "name": "effective", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The time during which the charge item definition is intended to be in use", + "code": "effective", + "base": [ "ChargeItemDefinition" ], + "type": "date", + "expression": "ChargeItemDefinition.effectivePeriod", + "xpath": "f:ChargeItemDefinition/f:effectivePeriod", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ChargeItemDefinition-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "ChargeItemDefinition-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ChargeItemDefinition-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "External identifier for the charge item definition", + "code": "identifier", + "base": [ "ChargeItemDefinition" ], + "type": "token", + "expression": "ChargeItemDefinition.identifier", + "xpath": "f:ChargeItemDefinition/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ChargeItemDefinition-jurisdiction", + "resource": { + "resourceType": "SearchParameter", + "id": "ChargeItemDefinition-jurisdiction", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ChargeItemDefinition-jurisdiction", + "version": "4.0.1", + "name": "jurisdiction", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Intended jurisdiction for the charge item definition", + "code": "jurisdiction", + "base": [ "ChargeItemDefinition" ], + "type": "token", + "expression": "ChargeItemDefinition.jurisdiction", + "xpath": "f:ChargeItemDefinition/f:jurisdiction", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ChargeItemDefinition-publisher", + "resource": { + "resourceType": "SearchParameter", + "id": "ChargeItemDefinition-publisher", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ChargeItemDefinition-publisher", + "version": "4.0.1", + "name": "publisher", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Name of the publisher of the charge item definition", + "code": "publisher", + "base": [ "ChargeItemDefinition" ], + "type": "string", + "expression": "ChargeItemDefinition.publisher", + "xpath": "f:ChargeItemDefinition/f:publisher", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ChargeItemDefinition-status", + "resource": { + "resourceType": "SearchParameter", + "id": "ChargeItemDefinition-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ChargeItemDefinition-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The current status of the charge item definition", + "code": "status", + "base": [ "ChargeItemDefinition" ], + "type": "token", + "expression": "ChargeItemDefinition.status", + "xpath": "f:ChargeItemDefinition/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ChargeItemDefinition-title", + "resource": { + "resourceType": "SearchParameter", + "id": "ChargeItemDefinition-title", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ChargeItemDefinition-title", + "version": "4.0.1", + "name": "title", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The human-friendly name of the charge item definition", + "code": "title", + "base": [ "ChargeItemDefinition" ], + "type": "string", + "expression": "ChargeItemDefinition.title", + "xpath": "f:ChargeItemDefinition/f:title", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ChargeItemDefinition-url", + "resource": { + "resourceType": "SearchParameter", + "id": "ChargeItemDefinition-url", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ChargeItemDefinition-url", + "version": "4.0.1", + "name": "url", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The uri that identifies the charge item definition", + "code": "url", + "base": [ "ChargeItemDefinition" ], + "type": "uri", + "expression": "ChargeItemDefinition.url", + "xpath": "f:ChargeItemDefinition/f:url", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ChargeItemDefinition-version", + "resource": { + "resourceType": "SearchParameter", + "id": "ChargeItemDefinition-version", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ChargeItemDefinition-version", + "version": "4.0.1", + "name": "version", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The business version of the charge item definition", + "code": "version", + "base": [ "ChargeItemDefinition" ], + "type": "token", + "expression": "ChargeItemDefinition.version", + "xpath": "f:ChargeItemDefinition/f:version", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ChargeItemDefinition-context-type-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "ChargeItemDefinition-context-type-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ChargeItemDefinition-context-type-quantity", + "version": "4.0.1", + "name": "context-type-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A use context type and quantity- or range-based value assigned to the charge item definition", + "code": "context-type-quantity", + "base": [ "ChargeItemDefinition" ], + "type": "composite", + "expression": "ChargeItemDefinition.useContext", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/ChargeItemDefinition-context-type", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/ChargeItemDefinition-context-quantity", + "expression": "value.as(Quantity) | value.as(Range)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ChargeItemDefinition-context-type-value", + "resource": { + "resourceType": "SearchParameter", + "id": "ChargeItemDefinition-context-type-value", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ChargeItemDefinition-context-type-value", + "version": "4.0.1", + "name": "context-type-value", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A use context type and value assigned to the charge item definition", + "code": "context-type-value", + "base": [ "ChargeItemDefinition" ], + "type": "composite", + "expression": "ChargeItemDefinition.useContext", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/ChargeItemDefinition-context-type", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/ChargeItemDefinition-context", + "expression": "value.as(CodeableConcept)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Claim-care-team", + "resource": { + "resourceType": "SearchParameter", + "id": "Claim-care-team", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Claim-care-team", + "version": "4.0.1", + "name": "care-team", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "Member of the CareTeam", + "code": "care-team", + "base": [ "Claim" ], + "type": "reference", + "expression": "Claim.careTeam.provider", + "xpath": "f:Claim/f:careTeam/f:provider", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Claim-created", + "resource": { + "resourceType": "SearchParameter", + "id": "Claim-created", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Claim-created", + "version": "4.0.1", + "name": "created", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The creation date for the Claim", + "code": "created", + "base": [ "Claim" ], + "type": "date", + "expression": "Claim.created", + "xpath": "f:Claim/f:created", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Claim-detail-udi", + "resource": { + "resourceType": "SearchParameter", + "id": "Claim-detail-udi", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Claim-detail-udi", + "version": "4.0.1", + "name": "detail-udi", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "UDI associated with a line item, detail product or service", + "code": "detail-udi", + "base": [ "Claim" ], + "type": "reference", + "expression": "Claim.item.detail.udi", + "xpath": "f:Claim/f:item/f:detail/f:udi", + "xpathUsage": "normal", + "target": [ "Device" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Claim-encounter", + "resource": { + "resourceType": "SearchParameter", + "id": "Claim-encounter", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Claim-encounter", + "version": "4.0.1", + "name": "encounter", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "Encounters associated with a billed line item", + "code": "encounter", + "base": [ "Claim" ], + "type": "reference", + "expression": "Claim.item.encounter", + "xpath": "f:Claim/f:item/f:encounter", + "xpathUsage": "normal", + "target": [ "Encounter" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Claim-enterer", + "resource": { + "resourceType": "SearchParameter", + "id": "Claim-enterer", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Claim-enterer", + "version": "4.0.1", + "name": "enterer", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The party responsible for the entry of the Claim", + "code": "enterer", + "base": [ "Claim" ], + "type": "reference", + "expression": "Claim.enterer", + "xpath": "f:Claim/f:enterer", + "xpathUsage": "normal", + "target": [ "Practitioner", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Claim-facility", + "resource": { + "resourceType": "SearchParameter", + "id": "Claim-facility", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Claim-facility", + "version": "4.0.1", + "name": "facility", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "Facility where the products or services have been or will be provided", + "code": "facility", + "base": [ "Claim" ], + "type": "reference", + "expression": "Claim.facility", + "xpath": "f:Claim/f:facility", + "xpathUsage": "normal", + "target": [ "Location" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Claim-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "Claim-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Claim-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The primary identifier of the financial resource", + "code": "identifier", + "base": [ "Claim" ], + "type": "token", + "expression": "Claim.identifier", + "xpath": "f:Claim/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Claim-insurer", + "resource": { + "resourceType": "SearchParameter", + "id": "Claim-insurer", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Claim-insurer", + "version": "4.0.1", + "name": "insurer", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The target payor/insurer for the Claim", + "code": "insurer", + "base": [ "Claim" ], + "type": "reference", + "expression": "Claim.insurer", + "xpath": "f:Claim/f:insurer", + "xpathUsage": "normal", + "target": [ "Organization" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Claim-item-udi", + "resource": { + "resourceType": "SearchParameter", + "id": "Claim-item-udi", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Claim-item-udi", + "version": "4.0.1", + "name": "item-udi", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "UDI associated with a line item product or service", + "code": "item-udi", + "base": [ "Claim" ], + "type": "reference", + "expression": "Claim.item.udi", + "xpath": "f:Claim/f:item/f:udi", + "xpathUsage": "normal", + "target": [ "Device" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Claim-patient", + "resource": { + "resourceType": "SearchParameter", + "id": "Claim-patient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Claim-patient", + "version": "4.0.1", + "name": "patient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "Patient receiving the products or services", + "code": "patient", + "base": [ "Claim" ], + "type": "reference", + "expression": "Claim.patient", + "xpath": "f:Claim/f:patient", + "xpathUsage": "normal", + "target": [ "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Claim-payee", + "resource": { + "resourceType": "SearchParameter", + "id": "Claim-payee", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Claim-payee", + "version": "4.0.1", + "name": "payee", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The party receiving any payment for the Claim", + "code": "payee", + "base": [ "Claim" ], + "type": "reference", + "expression": "Claim.payee.party", + "xpath": "f:Claim/f:payee/f:party", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Claim-priority", + "resource": { + "resourceType": "SearchParameter", + "id": "Claim-priority", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Claim-priority", + "version": "4.0.1", + "name": "priority", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "Processing priority requested", + "code": "priority", + "base": [ "Claim" ], + "type": "token", + "expression": "Claim.priority", + "xpath": "f:Claim/f:priority", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Claim-procedure-udi", + "resource": { + "resourceType": "SearchParameter", + "id": "Claim-procedure-udi", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Claim-procedure-udi", + "version": "4.0.1", + "name": "procedure-udi", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "UDI associated with a procedure", + "code": "procedure-udi", + "base": [ "Claim" ], + "type": "reference", + "expression": "Claim.procedure.udi", + "xpath": "f:Claim/f:procedure/f:udi", + "xpathUsage": "normal", + "target": [ "Device" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Claim-provider", + "resource": { + "resourceType": "SearchParameter", + "id": "Claim-provider", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Claim-provider", + "version": "4.0.1", + "name": "provider", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "Provider responsible for the Claim", + "code": "provider", + "base": [ "Claim" ], + "type": "reference", + "expression": "Claim.provider", + "xpath": "f:Claim/f:provider", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Claim-status", + "resource": { + "resourceType": "SearchParameter", + "id": "Claim-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Claim-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The status of the Claim instance.", + "code": "status", + "base": [ "Claim" ], + "type": "token", + "expression": "Claim.status", + "xpath": "f:Claim/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Claim-subdetail-udi", + "resource": { + "resourceType": "SearchParameter", + "id": "Claim-subdetail-udi", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Claim-subdetail-udi", + "version": "4.0.1", + "name": "subdetail-udi", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "UDI associated with a line item, detail, subdetail product or service", + "code": "subdetail-udi", + "base": [ "Claim" ], + "type": "reference", + "expression": "Claim.item.detail.subDetail.udi", + "xpath": "f:Claim/f:item/f:detail/f:subDetail/f:udi", + "xpathUsage": "normal", + "target": [ "Device" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Claim-use", + "resource": { + "resourceType": "SearchParameter", + "id": "Claim-use", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Claim-use", + "version": "4.0.1", + "name": "use", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The kind of financial resource", + "code": "use", + "base": [ "Claim" ], + "type": "token", + "expression": "Claim.use", + "xpath": "f:Claim/f:use", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ClaimResponse-created", + "resource": { + "resourceType": "SearchParameter", + "id": "ClaimResponse-created", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ClaimResponse-created", + "version": "4.0.1", + "name": "created", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The creation date", + "code": "created", + "base": [ "ClaimResponse" ], + "type": "date", + "expression": "ClaimResponse.created", + "xpath": "f:ClaimResponse/f:created", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ClaimResponse-disposition", + "resource": { + "resourceType": "SearchParameter", + "id": "ClaimResponse-disposition", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ClaimResponse-disposition", + "version": "4.0.1", + "name": "disposition", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The contents of the disposition message", + "code": "disposition", + "base": [ "ClaimResponse" ], + "type": "string", + "expression": "ClaimResponse.disposition", + "xpath": "f:ClaimResponse/f:disposition", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ClaimResponse-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "ClaimResponse-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ClaimResponse-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The identity of the ClaimResponse", + "code": "identifier", + "base": [ "ClaimResponse" ], + "type": "token", + "expression": "ClaimResponse.identifier", + "xpath": "f:ClaimResponse/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ClaimResponse-insurer", + "resource": { + "resourceType": "SearchParameter", + "id": "ClaimResponse-insurer", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ClaimResponse-insurer", + "version": "4.0.1", + "name": "insurer", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The organization which generated this resource", + "code": "insurer", + "base": [ "ClaimResponse" ], + "type": "reference", + "expression": "ClaimResponse.insurer", + "xpath": "f:ClaimResponse/f:insurer", + "xpathUsage": "normal", + "target": [ "Organization" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ClaimResponse-outcome", + "resource": { + "resourceType": "SearchParameter", + "id": "ClaimResponse-outcome", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ClaimResponse-outcome", + "version": "4.0.1", + "name": "outcome", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The processing outcome", + "code": "outcome", + "base": [ "ClaimResponse" ], + "type": "token", + "expression": "ClaimResponse.outcome", + "xpath": "f:ClaimResponse/f:outcome", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ClaimResponse-patient", + "resource": { + "resourceType": "SearchParameter", + "id": "ClaimResponse-patient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ClaimResponse-patient", + "version": "4.0.1", + "name": "patient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The subject of care", + "code": "patient", + "base": [ "ClaimResponse" ], + "type": "reference", + "expression": "ClaimResponse.patient", + "xpath": "f:ClaimResponse/f:patient", + "xpathUsage": "normal", + "target": [ "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ClaimResponse-payment-date", + "resource": { + "resourceType": "SearchParameter", + "id": "ClaimResponse-payment-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ClaimResponse-payment-date", + "version": "4.0.1", + "name": "payment-date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The expected payment date", + "code": "payment-date", + "base": [ "ClaimResponse" ], + "type": "date", + "expression": "ClaimResponse.payment.date", + "xpath": "f:ClaimResponse/f:payment/f:date", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ClaimResponse-request", + "resource": { + "resourceType": "SearchParameter", + "id": "ClaimResponse-request", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ClaimResponse-request", + "version": "4.0.1", + "name": "request", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The claim reference", + "code": "request", + "base": [ "ClaimResponse" ], + "type": "reference", + "expression": "ClaimResponse.request", + "xpath": "f:ClaimResponse/f:request", + "xpathUsage": "normal", + "target": [ "Claim" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ClaimResponse-requestor", + "resource": { + "resourceType": "SearchParameter", + "id": "ClaimResponse-requestor", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ClaimResponse-requestor", + "version": "4.0.1", + "name": "requestor", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The Provider of the claim", + "code": "requestor", + "base": [ "ClaimResponse" ], + "type": "reference", + "expression": "ClaimResponse.requestor", + "xpath": "f:ClaimResponse/f:requestor", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ClaimResponse-status", + "resource": { + "resourceType": "SearchParameter", + "id": "ClaimResponse-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ClaimResponse-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The status of the ClaimResponse", + "code": "status", + "base": [ "ClaimResponse" ], + "type": "token", + "expression": "ClaimResponse.status", + "xpath": "f:ClaimResponse/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ClaimResponse-use", + "resource": { + "resourceType": "SearchParameter", + "id": "ClaimResponse-use", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ClaimResponse-use", + "version": "4.0.1", + "name": "use", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The type of claim", + "code": "use", + "base": [ "ClaimResponse" ], + "type": "token", + "expression": "ClaimResponse.use", + "xpath": "f:ClaimResponse/f:use", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ClinicalImpression-assessor", + "resource": { + "resourceType": "SearchParameter", + "id": "ClinicalImpression-assessor", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ClinicalImpression-assessor", + "version": "4.0.1", + "name": "assessor", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "The clinician performing the assessment", + "code": "assessor", + "base": [ "ClinicalImpression" ], + "type": "reference", + "expression": "ClinicalImpression.assessor", + "xpath": "f:ClinicalImpression/f:assessor", + "xpathUsage": "normal", + "target": [ "Practitioner", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ClinicalImpression-encounter", + "resource": { + "resourceType": "SearchParameter", + "id": "ClinicalImpression-encounter", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ClinicalImpression-encounter", + "version": "4.0.1", + "name": "encounter", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Encounter created as part of", + "code": "encounter", + "base": [ "ClinicalImpression" ], + "type": "reference", + "expression": "ClinicalImpression.encounter", + "xpath": "f:ClinicalImpression/f:encounter", + "xpathUsage": "normal", + "target": [ "Encounter" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ClinicalImpression-finding-code", + "resource": { + "resourceType": "SearchParameter", + "id": "ClinicalImpression-finding-code", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ClinicalImpression-finding-code", + "version": "4.0.1", + "name": "finding-code", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "What was found", + "code": "finding-code", + "base": [ "ClinicalImpression" ], + "type": "token", + "expression": "ClinicalImpression.finding.itemCodeableConcept", + "xpath": "f:ClinicalImpression/f:finding/f:itemCodeableConcept", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ClinicalImpression-finding-ref", + "resource": { + "resourceType": "SearchParameter", + "id": "ClinicalImpression-finding-ref", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ClinicalImpression-finding-ref", + "version": "4.0.1", + "name": "finding-ref", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "What was found", + "code": "finding-ref", + "base": [ "ClinicalImpression" ], + "type": "reference", + "expression": "ClinicalImpression.finding.itemReference", + "xpath": "f:ClinicalImpression/f:finding/f:itemReference", + "xpathUsage": "normal", + "target": [ "Condition", "Observation", "Media" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ClinicalImpression-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "ClinicalImpression-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ClinicalImpression-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Business identifier", + "code": "identifier", + "base": [ "ClinicalImpression" ], + "type": "token", + "expression": "ClinicalImpression.identifier", + "xpath": "f:ClinicalImpression/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ClinicalImpression-investigation", + "resource": { + "resourceType": "SearchParameter", + "id": "ClinicalImpression-investigation", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ClinicalImpression-investigation", + "version": "4.0.1", + "name": "investigation", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Record of a specific investigation", + "code": "investigation", + "base": [ "ClinicalImpression" ], + "type": "reference", + "expression": "ClinicalImpression.investigation.item", + "xpath": "f:ClinicalImpression/f:investigation/f:item", + "xpathUsage": "normal", + "target": [ "RiskAssessment", "FamilyMemberHistory", "Observation", "Media", "DiagnosticReport", "ImagingStudy", "QuestionnaireResponse" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ClinicalImpression-previous", + "resource": { + "resourceType": "SearchParameter", + "id": "ClinicalImpression-previous", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ClinicalImpression-previous", + "version": "4.0.1", + "name": "previous", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Reference to last assessment", + "code": "previous", + "base": [ "ClinicalImpression" ], + "type": "reference", + "expression": "ClinicalImpression.previous", + "xpath": "f:ClinicalImpression/f:previous", + "xpathUsage": "normal", + "target": [ "ClinicalImpression" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ClinicalImpression-problem", + "resource": { + "resourceType": "SearchParameter", + "id": "ClinicalImpression-problem", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ClinicalImpression-problem", + "version": "4.0.1", + "name": "problem", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Relevant impressions of patient state", + "code": "problem", + "base": [ "ClinicalImpression" ], + "type": "reference", + "expression": "ClinicalImpression.problem", + "xpath": "f:ClinicalImpression/f:problem", + "xpathUsage": "normal", + "target": [ "Condition", "AllergyIntolerance" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ClinicalImpression-status", + "resource": { + "resourceType": "SearchParameter", + "id": "ClinicalImpression-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ClinicalImpression-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "in-progress | completed | entered-in-error", + "code": "status", + "base": [ "ClinicalImpression" ], + "type": "token", + "expression": "ClinicalImpression.status", + "xpath": "f:ClinicalImpression/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ClinicalImpression-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "ClinicalImpression-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ClinicalImpression-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Patient or group assessed", + "code": "subject", + "base": [ "ClinicalImpression" ], + "type": "reference", + "expression": "ClinicalImpression.subject", + "xpath": "f:ClinicalImpression/f:subject", + "xpathUsage": "normal", + "target": [ "Group", "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ClinicalImpression-supporting-info", + "resource": { + "resourceType": "SearchParameter", + "id": "ClinicalImpression-supporting-info", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ClinicalImpression-supporting-info", + "version": "4.0.1", + "name": "supporting-info", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Information supporting the clinical impression", + "code": "supporting-info", + "base": [ "ClinicalImpression" ], + "type": "reference", + "expression": "ClinicalImpression.supportingInfo", + "xpath": "f:ClinicalImpression/f:supportingInfo", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CodeSystem-code", + "resource": { + "resourceType": "SearchParameter", + "id": "CodeSystem-code", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CodeSystem-code", + "version": "4.0.1", + "name": "code", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Vocabulary)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/Vocab/index.cfm" + } ] + } ], + "description": "A code defined in the code system", + "code": "code", + "base": [ "CodeSystem" ], + "type": "token", + "expression": "CodeSystem.concept.code", + "xpath": "f:CodeSystem/f:concept/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CodeSystem-content-mode", + "resource": { + "resourceType": "SearchParameter", + "id": "CodeSystem-content-mode", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CodeSystem-content-mode", + "version": "4.0.1", + "name": "content-mode", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Vocabulary)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/Vocab/index.cfm" + } ] + } ], + "description": "not-present | example | fragment | complete | supplement", + "code": "content-mode", + "base": [ "CodeSystem" ], + "type": "token", + "expression": "CodeSystem.content", + "xpath": "f:CodeSystem/f:content", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/conformance-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "conformance-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/conformance-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Vocabulary)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/Vocab/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [CodeSystem](codesystem.html): External identifier for the code system\r\n* [ConceptMap](conceptmap.html): External identifier for the concept map\r\n* [MessageDefinition](messagedefinition.html): External identifier for the message definition\r\n* [StructureDefinition](structuredefinition.html): External identifier for the structure definition\r\n* [StructureMap](structuremap.html): External identifier for the structure map\r\n* [ValueSet](valueset.html): External identifier for the value set\r\n", + "code": "identifier", + "base": [ "CodeSystem", "ConceptMap", "MessageDefinition", "StructureDefinition", "StructureMap", "ValueSet" ], + "type": "token", + "expression": "CodeSystem.identifier | ConceptMap.identifier | MessageDefinition.identifier | StructureDefinition.identifier | StructureMap.identifier | ValueSet.identifier", + "xpath": "f:CodeSystem/f:identifier | f:ConceptMap/f:identifier | f:MessageDefinition/f:identifier | f:StructureDefinition/f:identifier | f:StructureMap/f:identifier | f:ValueSet/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CodeSystem-language", + "resource": { + "resourceType": "SearchParameter", + "id": "CodeSystem-language", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CodeSystem-language", + "version": "4.0.1", + "name": "language", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Vocabulary)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/Vocab/index.cfm" + } ] + } ], + "description": "A language in which a designation is provided", + "code": "language", + "base": [ "CodeSystem" ], + "type": "token", + "expression": "CodeSystem.concept.designation.language", + "xpath": "f:CodeSystem/f:concept/f:designation/f:language", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CodeSystem-supplements", + "resource": { + "resourceType": "SearchParameter", + "id": "CodeSystem-supplements", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CodeSystem-supplements", + "version": "4.0.1", + "name": "supplements", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Vocabulary)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/Vocab/index.cfm" + } ] + } ], + "description": "Find code system supplements for the referenced code system", + "code": "supplements", + "base": [ "CodeSystem" ], + "type": "reference", + "expression": "CodeSystem.supplements", + "xpath": "f:CodeSystem/f:supplements", + "xpathUsage": "normal", + "target": [ "CodeSystem" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CodeSystem-system", + "resource": { + "resourceType": "SearchParameter", + "id": "CodeSystem-system", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CodeSystem-system", + "version": "4.0.1", + "name": "system", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Vocabulary)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/Vocab/index.cfm" + } ] + } ], + "description": "The system for any codes defined by this code system (same as 'url')", + "code": "system", + "base": [ "CodeSystem" ], + "type": "uri", + "expression": "CodeSystem.url", + "xpath": "f:CodeSystem/f:url", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Communication-based-on", + "resource": { + "resourceType": "SearchParameter", + "id": "Communication-based-on", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Communication-based-on", + "version": "4.0.1", + "name": "based-on", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Request fulfilled by this communication", + "code": "based-on", + "base": [ "Communication" ], + "type": "reference", + "expression": "Communication.basedOn", + "xpath": "f:Communication/f:basedOn", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Communication-category", + "resource": { + "resourceType": "SearchParameter", + "id": "Communication-category", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Communication-category", + "version": "4.0.1", + "name": "category", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Message category", + "code": "category", + "base": [ "Communication" ], + "type": "token", + "expression": "Communication.category", + "xpath": "f:Communication/f:category", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Communication-encounter", + "resource": { + "resourceType": "SearchParameter", + "id": "Communication-encounter", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Communication-encounter", + "version": "4.0.1", + "name": "encounter", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Encounter created as part of", + "code": "encounter", + "base": [ "Communication" ], + "type": "reference", + "expression": "Communication.encounter", + "xpath": "f:Communication/f:encounter", + "xpathUsage": "normal", + "target": [ "Encounter" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Communication-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "Communication-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Communication-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Unique identifier", + "code": "identifier", + "base": [ "Communication" ], + "type": "token", + "expression": "Communication.identifier", + "xpath": "f:Communication/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Communication-instantiates-canonical", + "resource": { + "resourceType": "SearchParameter", + "id": "Communication-instantiates-canonical", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Communication-instantiates-canonical", + "version": "4.0.1", + "name": "instantiates-canonical", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Instantiates FHIR protocol or definition", + "code": "instantiates-canonical", + "base": [ "Communication" ], + "type": "reference", + "expression": "Communication.instantiatesCanonical", + "xpath": "f:Communication/f:instantiatesCanonical", + "xpathUsage": "normal", + "target": [ "Questionnaire", "Measure", "PlanDefinition", "OperationDefinition", "ActivityDefinition" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Communication-instantiates-uri", + "resource": { + "resourceType": "SearchParameter", + "id": "Communication-instantiates-uri", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Communication-instantiates-uri", + "version": "4.0.1", + "name": "instantiates-uri", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Instantiates external protocol or definition", + "code": "instantiates-uri", + "base": [ "Communication" ], + "type": "uri", + "expression": "Communication.instantiatesUri", + "xpath": "f:Communication/f:instantiatesUri", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Communication-medium", + "resource": { + "resourceType": "SearchParameter", + "id": "Communication-medium", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Communication-medium", + "version": "4.0.1", + "name": "medium", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "A channel of communication", + "code": "medium", + "base": [ "Communication" ], + "type": "token", + "expression": "Communication.medium", + "xpath": "f:Communication/f:medium", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Communication-part-of", + "resource": { + "resourceType": "SearchParameter", + "id": "Communication-part-of", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Communication-part-of", + "version": "4.0.1", + "name": "part-of", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Part of this action", + "code": "part-of", + "base": [ "Communication" ], + "type": "reference", + "expression": "Communication.partOf", + "xpath": "f:Communication/f:partOf", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Communication-patient", + "resource": { + "resourceType": "SearchParameter", + "id": "Communication-patient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Communication-patient", + "version": "4.0.1", + "name": "patient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Focus of message", + "code": "patient", + "base": [ "Communication" ], + "type": "reference", + "expression": "Communication.subject.where(resolve() is Patient)", + "xpath": "f:Communication/f:subject", + "xpathUsage": "normal", + "target": [ "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Communication-received", + "resource": { + "resourceType": "SearchParameter", + "id": "Communication-received", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Communication-received", + "version": "4.0.1", + "name": "received", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "When received", + "code": "received", + "base": [ "Communication" ], + "type": "date", + "expression": "Communication.received", + "xpath": "f:Communication/f:received", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Communication-recipient", + "resource": { + "resourceType": "SearchParameter", + "id": "Communication-recipient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Communication-recipient", + "version": "4.0.1", + "name": "recipient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Message recipient", + "code": "recipient", + "base": [ "Communication" ], + "type": "reference", + "expression": "Communication.recipient", + "xpath": "f:Communication/f:recipient", + "xpathUsage": "normal", + "target": [ "Practitioner", "Group", "Organization", "CareTeam", "Device", "Patient", "HealthcareService", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Communication-sender", + "resource": { + "resourceType": "SearchParameter", + "id": "Communication-sender", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Communication-sender", + "version": "4.0.1", + "name": "sender", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Message sender", + "code": "sender", + "base": [ "Communication" ], + "type": "reference", + "expression": "Communication.sender", + "xpath": "f:Communication/f:sender", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "Device", "Patient", "HealthcareService", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Communication-sent", + "resource": { + "resourceType": "SearchParameter", + "id": "Communication-sent", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Communication-sent", + "version": "4.0.1", + "name": "sent", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "When sent", + "code": "sent", + "base": [ "Communication" ], + "type": "date", + "expression": "Communication.sent", + "xpath": "f:Communication/f:sent", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Communication-status", + "resource": { + "resourceType": "SearchParameter", + "id": "Communication-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Communication-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "preparation | in-progress | not-done | on-hold | stopped | completed | entered-in-error | unknown", + "code": "status", + "base": [ "Communication" ], + "type": "token", + "expression": "Communication.status", + "xpath": "f:Communication/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Communication-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "Communication-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Communication-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Focus of message", + "code": "subject", + "base": [ "Communication" ], + "type": "reference", + "expression": "Communication.subject", + "xpath": "f:Communication/f:subject", + "xpathUsage": "normal", + "target": [ "Group", "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CommunicationRequest-authored", + "resource": { + "resourceType": "SearchParameter", + "id": "CommunicationRequest-authored", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CommunicationRequest-authored", + "version": "4.0.1", + "name": "authored", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "When request transitioned to being actionable", + "code": "authored", + "base": [ "CommunicationRequest" ], + "type": "date", + "expression": "CommunicationRequest.authoredOn", + "xpath": "f:CommunicationRequest/f:authoredOn", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CommunicationRequest-based-on", + "resource": { + "resourceType": "SearchParameter", + "id": "CommunicationRequest-based-on", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CommunicationRequest-based-on", + "version": "4.0.1", + "name": "based-on", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Fulfills plan or proposal", + "code": "based-on", + "base": [ "CommunicationRequest" ], + "type": "reference", + "expression": "CommunicationRequest.basedOn", + "xpath": "f:CommunicationRequest/f:basedOn", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CommunicationRequest-category", + "resource": { + "resourceType": "SearchParameter", + "id": "CommunicationRequest-category", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CommunicationRequest-category", + "version": "4.0.1", + "name": "category", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Message category", + "code": "category", + "base": [ "CommunicationRequest" ], + "type": "token", + "expression": "CommunicationRequest.category", + "xpath": "f:CommunicationRequest/f:category", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CommunicationRequest-encounter", + "resource": { + "resourceType": "SearchParameter", + "id": "CommunicationRequest-encounter", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CommunicationRequest-encounter", + "version": "4.0.1", + "name": "encounter", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Encounter created as part of", + "code": "encounter", + "base": [ "CommunicationRequest" ], + "type": "reference", + "expression": "CommunicationRequest.encounter", + "xpath": "f:CommunicationRequest/f:encounter", + "xpathUsage": "normal", + "target": [ "Encounter" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CommunicationRequest-group-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "CommunicationRequest-group-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CommunicationRequest-group-identifier", + "version": "4.0.1", + "name": "group-identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Composite request this is part of", + "code": "group-identifier", + "base": [ "CommunicationRequest" ], + "type": "token", + "expression": "CommunicationRequest.groupIdentifier", + "xpath": "f:CommunicationRequest/f:groupIdentifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CommunicationRequest-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "CommunicationRequest-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CommunicationRequest-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Unique identifier", + "code": "identifier", + "base": [ "CommunicationRequest" ], + "type": "token", + "expression": "CommunicationRequest.identifier", + "xpath": "f:CommunicationRequest/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CommunicationRequest-medium", + "resource": { + "resourceType": "SearchParameter", + "id": "CommunicationRequest-medium", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CommunicationRequest-medium", + "version": "4.0.1", + "name": "medium", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "A channel of communication", + "code": "medium", + "base": [ "CommunicationRequest" ], + "type": "token", + "expression": "CommunicationRequest.medium", + "xpath": "f:CommunicationRequest/f:medium", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CommunicationRequest-occurrence", + "resource": { + "resourceType": "SearchParameter", + "id": "CommunicationRequest-occurrence", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CommunicationRequest-occurrence", + "version": "4.0.1", + "name": "occurrence", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "When scheduled", + "code": "occurrence", + "base": [ "CommunicationRequest" ], + "type": "date", + "expression": "(CommunicationRequest.occurrence as dateTime)", + "xpath": "f:CommunicationRequest/f:occurrenceDateTime", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CommunicationRequest-patient", + "resource": { + "resourceType": "SearchParameter", + "id": "CommunicationRequest-patient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CommunicationRequest-patient", + "version": "4.0.1", + "name": "patient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Focus of message", + "code": "patient", + "base": [ "CommunicationRequest" ], + "type": "reference", + "expression": "CommunicationRequest.subject.where(resolve() is Patient)", + "xpath": "f:CommunicationRequest/f:subject", + "xpathUsage": "normal", + "target": [ "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CommunicationRequest-priority", + "resource": { + "resourceType": "SearchParameter", + "id": "CommunicationRequest-priority", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CommunicationRequest-priority", + "version": "4.0.1", + "name": "priority", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "routine | urgent | asap | stat", + "code": "priority", + "base": [ "CommunicationRequest" ], + "type": "token", + "expression": "CommunicationRequest.priority", + "xpath": "f:CommunicationRequest/f:priority", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CommunicationRequest-recipient", + "resource": { + "resourceType": "SearchParameter", + "id": "CommunicationRequest-recipient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CommunicationRequest-recipient", + "version": "4.0.1", + "name": "recipient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Message recipient", + "code": "recipient", + "base": [ "CommunicationRequest" ], + "type": "reference", + "expression": "CommunicationRequest.recipient", + "xpath": "f:CommunicationRequest/f:recipient", + "xpathUsage": "normal", + "target": [ "Practitioner", "Group", "Organization", "CareTeam", "Device", "Patient", "HealthcareService", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CommunicationRequest-replaces", + "resource": { + "resourceType": "SearchParameter", + "id": "CommunicationRequest-replaces", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CommunicationRequest-replaces", + "version": "4.0.1", + "name": "replaces", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Request(s) replaced by this request", + "code": "replaces", + "base": [ "CommunicationRequest" ], + "type": "reference", + "expression": "CommunicationRequest.replaces", + "xpath": "f:CommunicationRequest/f:replaces", + "xpathUsage": "normal", + "target": [ "CommunicationRequest" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CommunicationRequest-requester", + "resource": { + "resourceType": "SearchParameter", + "id": "CommunicationRequest-requester", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CommunicationRequest-requester", + "version": "4.0.1", + "name": "requester", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Who/what is requesting service", + "code": "requester", + "base": [ "CommunicationRequest" ], + "type": "reference", + "expression": "CommunicationRequest.requester", + "xpath": "f:CommunicationRequest/f:requester", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "Device", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CommunicationRequest-sender", + "resource": { + "resourceType": "SearchParameter", + "id": "CommunicationRequest-sender", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CommunicationRequest-sender", + "version": "4.0.1", + "name": "sender", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Message sender", + "code": "sender", + "base": [ "CommunicationRequest" ], + "type": "reference", + "expression": "CommunicationRequest.sender", + "xpath": "f:CommunicationRequest/f:sender", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "Device", "Patient", "HealthcareService", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CommunicationRequest-status", + "resource": { + "resourceType": "SearchParameter", + "id": "CommunicationRequest-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CommunicationRequest-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "draft | active | on-hold | revoked | completed | entered-in-error | unknown", + "code": "status", + "base": [ "CommunicationRequest" ], + "type": "token", + "expression": "CommunicationRequest.status", + "xpath": "f:CommunicationRequest/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CommunicationRequest-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "CommunicationRequest-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CommunicationRequest-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Focus of message", + "code": "subject", + "base": [ "CommunicationRequest" ], + "type": "reference", + "expression": "CommunicationRequest.subject", + "xpath": "f:CommunicationRequest/f:subject", + "xpathUsage": "normal", + "target": [ "Group", "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CompartmentDefinition-code", + "resource": { + "resourceType": "SearchParameter", + "id": "CompartmentDefinition-code", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CompartmentDefinition-code", + "version": "4.0.1", + "name": "code", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Patient | Encounter | RelatedPerson | Practitioner | Device", + "code": "code", + "base": [ "CompartmentDefinition" ], + "type": "token", + "expression": "CompartmentDefinition.code", + "xpath": "f:CompartmentDefinition/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CompartmentDefinition-resource", + "resource": { + "resourceType": "SearchParameter", + "id": "CompartmentDefinition-resource", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CompartmentDefinition-resource", + "version": "4.0.1", + "name": "resource", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Name of resource type", + "code": "resource", + "base": [ "CompartmentDefinition" ], + "type": "token", + "expression": "CompartmentDefinition.resource.code", + "xpath": "f:CompartmentDefinition/f:resource/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Composition-attester", + "resource": { + "resourceType": "SearchParameter", + "id": "Composition-attester", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Composition-attester", + "version": "4.0.1", + "name": "attester", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "Who attested the composition", + "code": "attester", + "base": [ "Composition" ], + "type": "reference", + "expression": "Composition.attester.party", + "xpath": "f:Composition/f:attester/f:party", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Composition-author", + "resource": { + "resourceType": "SearchParameter", + "id": "Composition-author", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Composition-author", + "version": "4.0.1", + "name": "author", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "Who and/or what authored the composition", + "code": "author", + "base": [ "Composition" ], + "type": "reference", + "expression": "Composition.author", + "xpath": "f:Composition/f:author", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "Device", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Composition-category", + "resource": { + "resourceType": "SearchParameter", + "id": "Composition-category", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Composition-category", + "version": "4.0.1", + "name": "category", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "Categorization of Composition", + "code": "category", + "base": [ "Composition" ], + "type": "token", + "expression": "Composition.category", + "xpath": "f:Composition/f:category", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Composition-confidentiality", + "resource": { + "resourceType": "SearchParameter", + "id": "Composition-confidentiality", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Composition-confidentiality", + "version": "4.0.1", + "name": "confidentiality", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "As defined by affinity domain", + "code": "confidentiality", + "base": [ "Composition" ], + "type": "token", + "expression": "Composition.confidentiality", + "xpath": "f:Composition/f:confidentiality", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Composition-context", + "resource": { + "resourceType": "SearchParameter", + "id": "Composition-context", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Composition-context", + "version": "4.0.1", + "name": "context", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "Code(s) that apply to the event being documented", + "code": "context", + "base": [ "Composition" ], + "type": "token", + "expression": "Composition.event.code", + "xpath": "f:Composition/f:event/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/clinical-encounter", + "resource": { + "resourceType": "SearchParameter", + "id": "clinical-encounter", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/clinical-encounter", + "version": "4.0.1", + "name": "encounter", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [Composition](composition.html): Context of the Composition\r\n* [DeviceRequest](devicerequest.html): Encounter during which request was created\r\n* [DiagnosticReport](diagnosticreport.html): The Encounter when the order was made\r\n* [DocumentReference](documentreference.html): Context of the document content\r\n* [Flag](flag.html): Alert relevant during encounter\r\n* [List](list.html): Context in which list created\r\n* [NutritionOrder](nutritionorder.html): Return nutrition orders with this encounter identifier\r\n* [Observation](observation.html): Encounter related to the observation\r\n* [Procedure](procedure.html): Encounter created as part of\r\n* [RiskAssessment](riskassessment.html): Where was assessment performed?\r\n* [ServiceRequest](servicerequest.html): An encounter in which this request is made\r\n* [VisionPrescription](visionprescription.html): Return prescriptions with this encounter identifier\r\n", + "code": "encounter", + "base": [ "Composition", "DeviceRequest", "DiagnosticReport", "DocumentReference", "Flag", "List", "NutritionOrder", "Observation", "Procedure", "RiskAssessment", "ServiceRequest", "VisionPrescription" ], + "type": "reference", + "expression": "Composition.encounter | DeviceRequest.encounter | DiagnosticReport.encounter | DocumentReference.context.encounter | Flag.encounter | List.encounter | NutritionOrder.encounter | Observation.encounter | Procedure.encounter | RiskAssessment.encounter | ServiceRequest.encounter | VisionPrescription.encounter", + "xpath": "f:Composition/f:encounter | f:DeviceRequest/f:encounter | f:DiagnosticReport/f:encounter | f:DocumentReference/f:context/f:encounter | f:Flag/f:encounter | f:List/f:encounter | f:NutritionOrder/f:encounter | f:Observation/f:encounter | f:Procedure/f:encounter | f:RiskAssessment/f:encounter | f:ServiceRequest/f:encounter | f:VisionPrescription/f:encounter", + "xpathUsage": "normal", + "target": [ "Encounter", "EpisodeOfCare" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Composition-entry", + "resource": { + "resourceType": "SearchParameter", + "id": "Composition-entry", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Composition-entry", + "version": "4.0.1", + "name": "entry", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "A reference to data that supports this section", + "code": "entry", + "base": [ "Composition" ], + "type": "reference", + "expression": "Composition.section.entry", + "xpath": "f:Composition/f:section/f:entry", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Composition-period", + "resource": { + "resourceType": "SearchParameter", + "id": "Composition-period", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Composition-period", + "version": "4.0.1", + "name": "period", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "The period covered by the documentation", + "code": "period", + "base": [ "Composition" ], + "type": "date", + "expression": "Composition.event.period", + "xpath": "f:Composition/f:event/f:period", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Composition-related-id", + "resource": { + "resourceType": "SearchParameter", + "id": "Composition-related-id", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Composition-related-id", + "version": "4.0.1", + "name": "related-id", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "Target of the relationship", + "code": "related-id", + "base": [ "Composition" ], + "type": "token", + "expression": "(Composition.relatesTo.target as Identifier)", + "xpath": "f:Composition/f:relatesTo/f:targetIdentifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Composition-related-ref", + "resource": { + "resourceType": "SearchParameter", + "id": "Composition-related-ref", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Composition-related-ref", + "version": "4.0.1", + "name": "related-ref", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "Target of the relationship", + "code": "related-ref", + "base": [ "Composition" ], + "type": "reference", + "expression": "(Composition.relatesTo.target as Reference)", + "xpath": "f:Composition/f:relatesTo/f:targetReference", + "xpathUsage": "normal", + "target": [ "Composition" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Composition-section", + "resource": { + "resourceType": "SearchParameter", + "id": "Composition-section", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Composition-section", + "version": "4.0.1", + "name": "section", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "Classification of section (recommended)", + "code": "section", + "base": [ "Composition" ], + "type": "token", + "expression": "Composition.section.code", + "xpath": "f:Composition/f:section/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Composition-status", + "resource": { + "resourceType": "SearchParameter", + "id": "Composition-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Composition-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "preliminary | final | amended | entered-in-error", + "code": "status", + "base": [ "Composition" ], + "type": "token", + "expression": "Composition.status", + "xpath": "f:Composition/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Composition-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "Composition-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Composition-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "Who and/or what the composition is about", + "code": "subject", + "base": [ "Composition" ], + "type": "reference", + "expression": "Composition.subject", + "xpath": "f:Composition/f:subject", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Composition-title", + "resource": { + "resourceType": "SearchParameter", + "id": "Composition-title", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Composition-title", + "version": "4.0.1", + "name": "title", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "Human Readable name/title", + "code": "title", + "base": [ "Composition" ], + "type": "string", + "expression": "Composition.title", + "xpath": "f:Composition/f:title", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ConceptMap-dependson", + "resource": { + "resourceType": "SearchParameter", + "id": "ConceptMap-dependson", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ConceptMap-dependson", + "version": "4.0.1", + "name": "dependson", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Vocabulary)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/Vocab/index.cfm" + } ] + } ], + "description": "Reference to property mapping depends on", + "code": "dependson", + "base": [ "ConceptMap" ], + "type": "uri", + "expression": "ConceptMap.group.element.target.dependsOn.property", + "xpath": "f:ConceptMap/f:group/f:element/f:target/f:dependsOn/f:property", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ConceptMap-other", + "resource": { + "resourceType": "SearchParameter", + "id": "ConceptMap-other", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ConceptMap-other", + "version": "4.0.1", + "name": "other", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Vocabulary)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/Vocab/index.cfm" + } ] + } ], + "description": "canonical reference to an additional ConceptMap to use for mapping if the source concept is unmapped", + "code": "other", + "base": [ "ConceptMap" ], + "type": "reference", + "expression": "ConceptMap.group.unmapped.url", + "xpath": "f:ConceptMap/f:group/f:unmapped/f:url", + "xpathUsage": "normal", + "target": [ "ConceptMap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ConceptMap-product", + "resource": { + "resourceType": "SearchParameter", + "id": "ConceptMap-product", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ConceptMap-product", + "version": "4.0.1", + "name": "product", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Vocabulary)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/Vocab/index.cfm" + } ] + } ], + "description": "Reference to property mapping depends on", + "code": "product", + "base": [ "ConceptMap" ], + "type": "uri", + "expression": "ConceptMap.group.element.target.product.property", + "xpath": "f:ConceptMap/f:group/f:element/f:target/f:product/f:property", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ConceptMap-source", + "resource": { + "resourceType": "SearchParameter", + "id": "ConceptMap-source", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ConceptMap-source", + "version": "4.0.1", + "name": "source", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Vocabulary)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/Vocab/index.cfm" + } ] + } ], + "description": "The source value set that contains the concepts that are being mapped", + "code": "source", + "base": [ "ConceptMap" ], + "type": "reference", + "expression": "(ConceptMap.source as canonical)", + "xpath": "f:ConceptMap/f:sourceCanonical", + "xpathUsage": "normal", + "target": [ "ValueSet" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ConceptMap-source-code", + "resource": { + "resourceType": "SearchParameter", + "id": "ConceptMap-source-code", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ConceptMap-source-code", + "version": "4.0.1", + "name": "source-code", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Vocabulary)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/Vocab/index.cfm" + } ] + } ], + "description": "Identifies element being mapped", + "code": "source-code", + "base": [ "ConceptMap" ], + "type": "token", + "expression": "ConceptMap.group.element.code", + "xpath": "f:ConceptMap/f:group/f:element/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ConceptMap-source-system", + "resource": { + "resourceType": "SearchParameter", + "id": "ConceptMap-source-system", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ConceptMap-source-system", + "version": "4.0.1", + "name": "source-system", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Vocabulary)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/Vocab/index.cfm" + } ] + } ], + "description": "Source system where concepts to be mapped are defined", + "code": "source-system", + "base": [ "ConceptMap" ], + "type": "uri", + "expression": "ConceptMap.group.source", + "xpath": "f:ConceptMap/f:group/f:source", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ConceptMap-source-uri", + "resource": { + "resourceType": "SearchParameter", + "id": "ConceptMap-source-uri", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ConceptMap-source-uri", + "version": "4.0.1", + "name": "source-uri", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Vocabulary)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/Vocab/index.cfm" + } ] + } ], + "description": "The source value set that contains the concepts that are being mapped", + "code": "source-uri", + "base": [ "ConceptMap" ], + "type": "reference", + "expression": "(ConceptMap.source as uri)", + "xpath": "f:ConceptMap/f:sourceUri", + "xpathUsage": "normal", + "target": [ "ValueSet" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ConceptMap-target", + "resource": { + "resourceType": "SearchParameter", + "id": "ConceptMap-target", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ConceptMap-target", + "version": "4.0.1", + "name": "target", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Vocabulary)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/Vocab/index.cfm" + } ] + } ], + "description": "The target value set which provides context for the mappings", + "code": "target", + "base": [ "ConceptMap" ], + "type": "reference", + "expression": "(ConceptMap.target as canonical)", + "xpath": "f:ConceptMap/f:targetCanonical", + "xpathUsage": "normal", + "target": [ "ValueSet" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ConceptMap-target-code", + "resource": { + "resourceType": "SearchParameter", + "id": "ConceptMap-target-code", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ConceptMap-target-code", + "version": "4.0.1", + "name": "target-code", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Vocabulary)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/Vocab/index.cfm" + } ] + } ], + "description": "Code that identifies the target element", + "code": "target-code", + "base": [ "ConceptMap" ], + "type": "token", + "expression": "ConceptMap.group.element.target.code", + "xpath": "f:ConceptMap/f:group/f:element/f:target/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ConceptMap-target-system", + "resource": { + "resourceType": "SearchParameter", + "id": "ConceptMap-target-system", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ConceptMap-target-system", + "version": "4.0.1", + "name": "target-system", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Vocabulary)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/Vocab/index.cfm" + } ] + } ], + "description": "Target system that the concepts are to be mapped to", + "code": "target-system", + "base": [ "ConceptMap" ], + "type": "uri", + "expression": "ConceptMap.group.target", + "xpath": "f:ConceptMap/f:group/f:target", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ConceptMap-target-uri", + "resource": { + "resourceType": "SearchParameter", + "id": "ConceptMap-target-uri", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ConceptMap-target-uri", + "version": "4.0.1", + "name": "target-uri", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Vocabulary)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/Vocab/index.cfm" + } ] + } ], + "description": "The target value set which provides context for the mappings", + "code": "target-uri", + "base": [ "ConceptMap" ], + "type": "reference", + "expression": "(ConceptMap.target as uri)", + "xpath": "f:ConceptMap/f:targetUri", + "xpathUsage": "normal", + "target": [ "ValueSet" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Condition-abatement-age", + "resource": { + "resourceType": "SearchParameter", + "id": "Condition-abatement-age", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Condition-abatement-age", + "version": "4.0.1", + "name": "abatement-age", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Abatement as age or age range", + "code": "abatement-age", + "base": [ "Condition" ], + "type": "quantity", + "expression": "Condition.abatement.as(Age) | Condition.abatement.as(Range)", + "xpath": "f:Condition/f:abatementAge | f:Condition/f:abatementRange", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Condition-abatement-date", + "resource": { + "resourceType": "SearchParameter", + "id": "Condition-abatement-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Condition-abatement-date", + "version": "4.0.1", + "name": "abatement-date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Date-related abatements (dateTime and period)", + "code": "abatement-date", + "base": [ "Condition" ], + "type": "date", + "expression": "Condition.abatement.as(dateTime) | Condition.abatement.as(Period)", + "xpath": "f:Condition/f:abatementDateTime | f:Condition/f:abatementPeriod", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Condition-abatement-string", + "resource": { + "resourceType": "SearchParameter", + "id": "Condition-abatement-string", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Condition-abatement-string", + "version": "4.0.1", + "name": "abatement-string", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Abatement as a string", + "code": "abatement-string", + "base": [ "Condition" ], + "type": "string", + "expression": "Condition.abatement.as(string)", + "xpath": "f:Condition/f:abatementString", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Condition-asserter", + "resource": { + "resourceType": "SearchParameter", + "id": "Condition-asserter", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Condition-asserter", + "version": "4.0.1", + "name": "asserter", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Person who asserts this condition", + "code": "asserter", + "base": [ "Condition" ], + "type": "reference", + "expression": "Condition.asserter", + "xpath": "f:Condition/f:asserter", + "xpathUsage": "normal", + "target": [ "Practitioner", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Condition-body-site", + "resource": { + "resourceType": "SearchParameter", + "id": "Condition-body-site", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Condition-body-site", + "version": "4.0.1", + "name": "body-site", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Anatomical location, if relevant", + "code": "body-site", + "base": [ "Condition" ], + "type": "token", + "expression": "Condition.bodySite", + "xpath": "f:Condition/f:bodySite", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Condition-category", + "resource": { + "resourceType": "SearchParameter", + "id": "Condition-category", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Condition-category", + "version": "4.0.1", + "name": "category", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "The category of the condition", + "code": "category", + "base": [ "Condition" ], + "type": "token", + "expression": "Condition.category", + "xpath": "f:Condition/f:category", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Condition-clinical-status", + "resource": { + "resourceType": "SearchParameter", + "id": "Condition-clinical-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Condition-clinical-status", + "version": "4.0.1", + "name": "clinical-status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "The clinical status of the condition", + "code": "clinical-status", + "base": [ "Condition" ], + "type": "token", + "expression": "Condition.clinicalStatus", + "xpath": "f:Condition/f:clinicalStatus", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Condition-encounter", + "resource": { + "resourceType": "SearchParameter", + "id": "Condition-encounter", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Condition-encounter", + "version": "4.0.1", + "name": "encounter", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Encounter created as part of", + "code": "encounter", + "base": [ "Condition" ], + "type": "reference", + "expression": "Condition.encounter", + "xpath": "f:Condition/f:encounter", + "xpathUsage": "normal", + "target": [ "Encounter" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Condition-evidence", + "resource": { + "resourceType": "SearchParameter", + "id": "Condition-evidence", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Condition-evidence", + "version": "4.0.1", + "name": "evidence", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Manifestation/symptom", + "code": "evidence", + "base": [ "Condition" ], + "type": "token", + "expression": "Condition.evidence.code", + "xpath": "f:Condition/f:evidence/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Condition-evidence-detail", + "resource": { + "resourceType": "SearchParameter", + "id": "Condition-evidence-detail", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Condition-evidence-detail", + "version": "4.0.1", + "name": "evidence-detail", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Supporting information found elsewhere", + "code": "evidence-detail", + "base": [ "Condition" ], + "type": "reference", + "expression": "Condition.evidence.detail", + "xpath": "f:Condition/f:evidence/f:detail", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Condition-onset-age", + "resource": { + "resourceType": "SearchParameter", + "id": "Condition-onset-age", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Condition-onset-age", + "version": "4.0.1", + "name": "onset-age", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Onsets as age or age range", + "code": "onset-age", + "base": [ "Condition" ], + "type": "quantity", + "expression": "Condition.onset.as(Age) | Condition.onset.as(Range)", + "xpath": "f:Condition/f:onsetAge | f:Condition/f:onsetRange", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Condition-onset-date", + "resource": { + "resourceType": "SearchParameter", + "id": "Condition-onset-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Condition-onset-date", + "version": "4.0.1", + "name": "onset-date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Date related onsets (dateTime and Period)", + "code": "onset-date", + "base": [ "Condition" ], + "type": "date", + "expression": "Condition.onset.as(dateTime) | Condition.onset.as(Period)", + "xpath": "f:Condition/f:onsetDateTime | f:Condition/f:onsetPeriod", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Condition-onset-info", + "resource": { + "resourceType": "SearchParameter", + "id": "Condition-onset-info", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Condition-onset-info", + "version": "4.0.1", + "name": "onset-info", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Onsets as a string", + "code": "onset-info", + "base": [ "Condition" ], + "type": "string", + "expression": "Condition.onset.as(string)", + "xpath": "f:Condition/f:onsetString", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Condition-recorded-date", + "resource": { + "resourceType": "SearchParameter", + "id": "Condition-recorded-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Condition-recorded-date", + "version": "4.0.1", + "name": "recorded-date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Date record was first recorded", + "code": "recorded-date", + "base": [ "Condition" ], + "type": "date", + "expression": "Condition.recordedDate", + "xpath": "f:Condition/f:recordedDate", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Condition-severity", + "resource": { + "resourceType": "SearchParameter", + "id": "Condition-severity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Condition-severity", + "version": "4.0.1", + "name": "severity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "The severity of the condition", + "code": "severity", + "base": [ "Condition" ], + "type": "token", + "expression": "Condition.severity", + "xpath": "f:Condition/f:severity", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Condition-stage", + "resource": { + "resourceType": "SearchParameter", + "id": "Condition-stage", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Condition-stage", + "version": "4.0.1", + "name": "stage", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Simple summary (disease specific)", + "code": "stage", + "base": [ "Condition" ], + "type": "token", + "expression": "Condition.stage.summary", + "xpath": "f:Condition/f:stage/f:summary", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Condition-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "Condition-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Condition-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Who has the condition?", + "code": "subject", + "base": [ "Condition" ], + "type": "reference", + "expression": "Condition.subject", + "xpath": "f:Condition/f:subject", + "xpathUsage": "normal", + "target": [ "Group", "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Condition-verification-status", + "resource": { + "resourceType": "SearchParameter", + "id": "Condition-verification-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Condition-verification-status", + "version": "4.0.1", + "name": "verification-status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "unconfirmed | provisional | differential | confirmed | refuted | entered-in-error", + "code": "verification-status", + "base": [ "Condition" ], + "type": "token", + "expression": "Condition.verificationStatus", + "xpath": "f:Condition/f:verificationStatus", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Consent-action", + "resource": { + "resourceType": "SearchParameter", + "id": "Consent-action", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Consent-action", + "version": "4.0.1", + "name": "action", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Community Based Collaborative Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/homehealth/index.cfm" + } ] + } ], + "description": "Actions controlled by this rule", + "code": "action", + "base": [ "Consent" ], + "type": "token", + "expression": "Consent.provision.action", + "xpath": "f:Consent/f:provision/f:action", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Consent-actor", + "resource": { + "resourceType": "SearchParameter", + "id": "Consent-actor", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Consent-actor", + "version": "4.0.1", + "name": "actor", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Community Based Collaborative Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/homehealth/index.cfm" + } ] + } ], + "description": "Resource for the actor (or group, by role)", + "code": "actor", + "base": [ "Consent" ], + "type": "reference", + "expression": "Consent.provision.actor.reference", + "xpath": "f:Consent/f:provision/f:actor/f:reference", + "xpathUsage": "normal", + "target": [ "Practitioner", "Group", "Organization", "CareTeam", "Device", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Consent-category", + "resource": { + "resourceType": "SearchParameter", + "id": "Consent-category", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Consent-category", + "version": "4.0.1", + "name": "category", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Community Based Collaborative Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/homehealth/index.cfm" + } ] + } ], + "description": "Classification of the consent statement - for indexing/retrieval", + "code": "category", + "base": [ "Consent" ], + "type": "token", + "expression": "Consent.category", + "xpath": "f:Consent/f:category", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Consent-consentor", + "resource": { + "resourceType": "SearchParameter", + "id": "Consent-consentor", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Consent-consentor", + "version": "4.0.1", + "name": "consentor", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Community Based Collaborative Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/homehealth/index.cfm" + } ] + } ], + "description": "Who is agreeing to the policy and rules", + "code": "consentor", + "base": [ "Consent" ], + "type": "reference", + "expression": "Consent.performer", + "xpath": "f:Consent/f:performer", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Consent-data", + "resource": { + "resourceType": "SearchParameter", + "id": "Consent-data", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Consent-data", + "version": "4.0.1", + "name": "data", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Community Based Collaborative Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/homehealth/index.cfm" + } ] + } ], + "description": "The actual data reference", + "code": "data", + "base": [ "Consent" ], + "type": "reference", + "expression": "Consent.provision.data.reference", + "xpath": "f:Consent/f:provision/f:data/f:reference", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Consent-organization", + "resource": { + "resourceType": "SearchParameter", + "id": "Consent-organization", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Consent-organization", + "version": "4.0.1", + "name": "organization", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Community Based Collaborative Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/homehealth/index.cfm" + } ] + } ], + "description": "Custodian of the consent", + "code": "organization", + "base": [ "Consent" ], + "type": "reference", + "expression": "Consent.organization", + "xpath": "f:Consent/f:organization", + "xpathUsage": "normal", + "target": [ "Organization" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Consent-period", + "resource": { + "resourceType": "SearchParameter", + "id": "Consent-period", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Consent-period", + "version": "4.0.1", + "name": "period", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Community Based Collaborative Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/homehealth/index.cfm" + } ] + } ], + "description": "Timeframe for this rule", + "code": "period", + "base": [ "Consent" ], + "type": "date", + "expression": "Consent.provision.period", + "xpath": "f:Consent/f:provision/f:period", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Consent-purpose", + "resource": { + "resourceType": "SearchParameter", + "id": "Consent-purpose", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Consent-purpose", + "version": "4.0.1", + "name": "purpose", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Community Based Collaborative Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/homehealth/index.cfm" + } ] + } ], + "description": "Context of activities covered by this rule", + "code": "purpose", + "base": [ "Consent" ], + "type": "token", + "expression": "Consent.provision.purpose", + "xpath": "f:Consent/f:provision/f:purpose", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Consent-scope", + "resource": { + "resourceType": "SearchParameter", + "id": "Consent-scope", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Consent-scope", + "version": "4.0.1", + "name": "scope", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Community Based Collaborative Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/homehealth/index.cfm" + } ] + } ], + "description": "Which of the four areas this resource covers (extensible)", + "code": "scope", + "base": [ "Consent" ], + "type": "token", + "expression": "Consent.scope", + "xpath": "f:Consent/f:scope", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Consent-security-label", + "resource": { + "resourceType": "SearchParameter", + "id": "Consent-security-label", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Consent-security-label", + "version": "4.0.1", + "name": "security-label", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Community Based Collaborative Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/homehealth/index.cfm" + } ] + } ], + "description": "Security Labels that define affected resources", + "code": "security-label", + "base": [ "Consent" ], + "type": "token", + "expression": "Consent.provision.securityLabel", + "xpath": "f:Consent/f:provision/f:securityLabel", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Consent-source-reference", + "resource": { + "resourceType": "SearchParameter", + "id": "Consent-source-reference", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Consent-source-reference", + "version": "4.0.1", + "name": "source-reference", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Community Based Collaborative Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/homehealth/index.cfm" + } ] + } ], + "description": "Search by reference to a Consent, DocumentReference, Contract or QuestionnaireResponse", + "code": "source-reference", + "base": [ "Consent" ], + "type": "reference", + "expression": "Consent.source", + "xpath": "f:Consent/f:sourceAttachment | f:Consent/f:sourceReference", + "xpathUsage": "normal", + "target": [ "Consent", "Contract", "QuestionnaireResponse", "DocumentReference" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Consent-status", + "resource": { + "resourceType": "SearchParameter", + "id": "Consent-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Consent-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Community Based Collaborative Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/homehealth/index.cfm" + } ] + } ], + "description": "draft | proposed | active | rejected | inactive | entered-in-error", + "code": "status", + "base": [ "Consent" ], + "type": "token", + "expression": "Consent.status", + "xpath": "f:Consent/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Contract-authority", + "resource": { + "resourceType": "SearchParameter", + "id": "Contract-authority", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Contract-authority", + "version": "4.0.1", + "name": "authority", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The authority of the contract", + "code": "authority", + "base": [ "Contract" ], + "type": "reference", + "expression": "Contract.authority", + "xpath": "f:Contract/f:authority", + "xpathUsage": "normal", + "target": [ "Organization" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Contract-domain", + "resource": { + "resourceType": "SearchParameter", + "id": "Contract-domain", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Contract-domain", + "version": "4.0.1", + "name": "domain", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The domain of the contract", + "code": "domain", + "base": [ "Contract" ], + "type": "reference", + "expression": "Contract.domain", + "xpath": "f:Contract/f:domain", + "xpathUsage": "normal", + "target": [ "Location" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Contract-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "Contract-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Contract-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The identity of the contract", + "code": "identifier", + "base": [ "Contract" ], + "type": "token", + "expression": "Contract.identifier", + "xpath": "f:Contract/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Contract-instantiates", + "resource": { + "resourceType": "SearchParameter", + "id": "Contract-instantiates", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Contract-instantiates", + "version": "4.0.1", + "name": "instantiates", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "A source definition of the contract", + "code": "instantiates", + "base": [ "Contract" ], + "type": "uri", + "expression": "Contract.instantiatesUri", + "xpath": "f:Contract/f:instantiatesUri", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Contract-issued", + "resource": { + "resourceType": "SearchParameter", + "id": "Contract-issued", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Contract-issued", + "version": "4.0.1", + "name": "issued", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The date/time the contract was issued", + "code": "issued", + "base": [ "Contract" ], + "type": "date", + "expression": "Contract.issued", + "xpath": "f:Contract/f:issued", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Contract-patient", + "resource": { + "resourceType": "SearchParameter", + "id": "Contract-patient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Contract-patient", + "version": "4.0.1", + "name": "patient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The identity of the subject of the contract (if a patient)", + "code": "patient", + "base": [ "Contract" ], + "type": "reference", + "expression": "Contract.subject.where(resolve() is Patient)", + "xpath": "f:Contract/f:subject", + "xpathUsage": "normal", + "target": [ "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Contract-signer", + "resource": { + "resourceType": "SearchParameter", + "id": "Contract-signer", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Contract-signer", + "version": "4.0.1", + "name": "signer", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "Contract Signatory Party", + "code": "signer", + "base": [ "Contract" ], + "type": "reference", + "expression": "Contract.signer.party", + "xpath": "f:Contract/f:signer/f:party", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Contract-status", + "resource": { + "resourceType": "SearchParameter", + "id": "Contract-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Contract-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The status of the contract", + "code": "status", + "base": [ "Contract" ], + "type": "token", + "expression": "Contract.status", + "xpath": "f:Contract/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Contract-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "Contract-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Contract-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The identity of the subject of the contract", + "code": "subject", + "base": [ "Contract" ], + "type": "reference", + "expression": "Contract.subject", + "xpath": "f:Contract/f:subject", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Contract-url", + "resource": { + "resourceType": "SearchParameter", + "id": "Contract-url", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Contract-url", + "version": "4.0.1", + "name": "url", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The basal contract definition", + "code": "url", + "base": [ "Contract" ], + "type": "uri", + "expression": "Contract.url", + "xpath": "f:Contract/f:url", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Coverage-beneficiary", + "resource": { + "resourceType": "SearchParameter", + "id": "Coverage-beneficiary", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Coverage-beneficiary", + "version": "4.0.1", + "name": "beneficiary", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "Covered party", + "code": "beneficiary", + "base": [ "Coverage" ], + "type": "reference", + "expression": "Coverage.beneficiary", + "xpath": "f:Coverage/f:beneficiary", + "xpathUsage": "normal", + "target": [ "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Coverage-class-type", + "resource": { + "resourceType": "SearchParameter", + "id": "Coverage-class-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Coverage-class-type", + "version": "4.0.1", + "name": "class-type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "Coverage class (eg. plan, group)", + "code": "class-type", + "base": [ "Coverage" ], + "type": "token", + "expression": "Coverage.class.type", + "xpath": "f:Coverage/f:class/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Coverage-class-value", + "resource": { + "resourceType": "SearchParameter", + "id": "Coverage-class-value", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Coverage-class-value", + "version": "4.0.1", + "name": "class-value", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "Value of the class (eg. Plan number, group number)", + "code": "class-value", + "base": [ "Coverage" ], + "type": "string", + "expression": "Coverage.class.value", + "xpath": "f:Coverage/f:class/f:value", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Coverage-dependent", + "resource": { + "resourceType": "SearchParameter", + "id": "Coverage-dependent", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Coverage-dependent", + "version": "4.0.1", + "name": "dependent", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "Dependent number", + "code": "dependent", + "base": [ "Coverage" ], + "type": "string", + "expression": "Coverage.dependent", + "xpath": "f:Coverage/f:dependent", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Coverage-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "Coverage-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Coverage-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The primary identifier of the insured and the coverage", + "code": "identifier", + "base": [ "Coverage" ], + "type": "token", + "expression": "Coverage.identifier", + "xpath": "f:Coverage/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Coverage-patient", + "resource": { + "resourceType": "SearchParameter", + "id": "Coverage-patient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Coverage-patient", + "version": "4.0.1", + "name": "patient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "Retrieve coverages for a patient", + "code": "patient", + "base": [ "Coverage" ], + "type": "reference", + "expression": "Coverage.beneficiary", + "xpath": "f:Coverage/f:beneficiary", + "xpathUsage": "normal", + "target": [ "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Coverage-payor", + "resource": { + "resourceType": "SearchParameter", + "id": "Coverage-payor", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Coverage-payor", + "version": "4.0.1", + "name": "payor", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The identity of the insurer or party paying for services", + "code": "payor", + "base": [ "Coverage" ], + "type": "reference", + "expression": "Coverage.payor", + "xpath": "f:Coverage/f:payor", + "xpathUsage": "normal", + "target": [ "Organization", "Patient", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Coverage-policy-holder", + "resource": { + "resourceType": "SearchParameter", + "id": "Coverage-policy-holder", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Coverage-policy-holder", + "version": "4.0.1", + "name": "policy-holder", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "Reference to the policyholder", + "code": "policy-holder", + "base": [ "Coverage" ], + "type": "reference", + "expression": "Coverage.policyHolder", + "xpath": "f:Coverage/f:policyHolder", + "xpathUsage": "normal", + "target": [ "Organization", "Patient", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Coverage-status", + "resource": { + "resourceType": "SearchParameter", + "id": "Coverage-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Coverage-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The status of the Coverage", + "code": "status", + "base": [ "Coverage" ], + "type": "token", + "expression": "Coverage.status", + "xpath": "f:Coverage/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Coverage-subscriber", + "resource": { + "resourceType": "SearchParameter", + "id": "Coverage-subscriber", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Coverage-subscriber", + "version": "4.0.1", + "name": "subscriber", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "Reference to the subscriber", + "code": "subscriber", + "base": [ "Coverage" ], + "type": "reference", + "expression": "Coverage.subscriber", + "xpath": "f:Coverage/f:subscriber", + "xpathUsage": "normal", + "target": [ "Patient", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Coverage-type", + "resource": { + "resourceType": "SearchParameter", + "id": "Coverage-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Coverage-type", + "version": "4.0.1", + "name": "type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The kind of coverage (health plan, auto, Workers Compensation)", + "code": "type", + "base": [ "Coverage" ], + "type": "token", + "expression": "Coverage.type", + "xpath": "f:Coverage/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CoverageEligibilityRequest-created", + "resource": { + "resourceType": "SearchParameter", + "id": "CoverageEligibilityRequest-created", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CoverageEligibilityRequest-created", + "version": "4.0.1", + "name": "created", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The creation date for the EOB", + "code": "created", + "base": [ "CoverageEligibilityRequest" ], + "type": "date", + "expression": "CoverageEligibilityRequest.created", + "xpath": "f:CoverageEligibilityRequest/f:created", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CoverageEligibilityRequest-enterer", + "resource": { + "resourceType": "SearchParameter", + "id": "CoverageEligibilityRequest-enterer", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CoverageEligibilityRequest-enterer", + "version": "4.0.1", + "name": "enterer", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The party who is responsible for the request", + "code": "enterer", + "base": [ "CoverageEligibilityRequest" ], + "type": "reference", + "expression": "CoverageEligibilityRequest.enterer", + "xpath": "f:CoverageEligibilityRequest/f:enterer", + "xpathUsage": "normal", + "target": [ "Practitioner", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CoverageEligibilityRequest-facility", + "resource": { + "resourceType": "SearchParameter", + "id": "CoverageEligibilityRequest-facility", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CoverageEligibilityRequest-facility", + "version": "4.0.1", + "name": "facility", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "Facility responsible for the goods and services", + "code": "facility", + "base": [ "CoverageEligibilityRequest" ], + "type": "reference", + "expression": "CoverageEligibilityRequest.facility", + "xpath": "f:CoverageEligibilityRequest/f:facility", + "xpathUsage": "normal", + "target": [ "Location" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CoverageEligibilityRequest-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "CoverageEligibilityRequest-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CoverageEligibilityRequest-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The business identifier of the Eligibility", + "code": "identifier", + "base": [ "CoverageEligibilityRequest" ], + "type": "token", + "expression": "CoverageEligibilityRequest.identifier", + "xpath": "f:CoverageEligibilityRequest/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CoverageEligibilityRequest-patient", + "resource": { + "resourceType": "SearchParameter", + "id": "CoverageEligibilityRequest-patient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CoverageEligibilityRequest-patient", + "version": "4.0.1", + "name": "patient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The reference to the patient", + "code": "patient", + "base": [ "CoverageEligibilityRequest" ], + "type": "reference", + "expression": "CoverageEligibilityRequest.patient", + "xpath": "f:CoverageEligibilityRequest/f:patient", + "xpathUsage": "normal", + "target": [ "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CoverageEligibilityRequest-provider", + "resource": { + "resourceType": "SearchParameter", + "id": "CoverageEligibilityRequest-provider", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CoverageEligibilityRequest-provider", + "version": "4.0.1", + "name": "provider", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The reference to the provider", + "code": "provider", + "base": [ "CoverageEligibilityRequest" ], + "type": "reference", + "expression": "CoverageEligibilityRequest.provider", + "xpath": "f:CoverageEligibilityRequest/f:provider", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CoverageEligibilityRequest-status", + "resource": { + "resourceType": "SearchParameter", + "id": "CoverageEligibilityRequest-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CoverageEligibilityRequest-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The status of the EligibilityRequest", + "code": "status", + "base": [ "CoverageEligibilityRequest" ], + "type": "token", + "expression": "CoverageEligibilityRequest.status", + "xpath": "f:CoverageEligibilityRequest/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CoverageEligibilityResponse-created", + "resource": { + "resourceType": "SearchParameter", + "id": "CoverageEligibilityResponse-created", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CoverageEligibilityResponse-created", + "version": "4.0.1", + "name": "created", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The creation date", + "code": "created", + "base": [ "CoverageEligibilityResponse" ], + "type": "date", + "expression": "CoverageEligibilityResponse.created", + "xpath": "f:CoverageEligibilityResponse/f:created", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CoverageEligibilityResponse-disposition", + "resource": { + "resourceType": "SearchParameter", + "id": "CoverageEligibilityResponse-disposition", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CoverageEligibilityResponse-disposition", + "version": "4.0.1", + "name": "disposition", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The contents of the disposition message", + "code": "disposition", + "base": [ "CoverageEligibilityResponse" ], + "type": "string", + "expression": "CoverageEligibilityResponse.disposition", + "xpath": "f:CoverageEligibilityResponse/f:disposition", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CoverageEligibilityResponse-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "CoverageEligibilityResponse-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CoverageEligibilityResponse-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The business identifier", + "code": "identifier", + "base": [ "CoverageEligibilityResponse" ], + "type": "token", + "expression": "CoverageEligibilityResponse.identifier", + "xpath": "f:CoverageEligibilityResponse/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CoverageEligibilityResponse-insurer", + "resource": { + "resourceType": "SearchParameter", + "id": "CoverageEligibilityResponse-insurer", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CoverageEligibilityResponse-insurer", + "version": "4.0.1", + "name": "insurer", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The organization which generated this resource", + "code": "insurer", + "base": [ "CoverageEligibilityResponse" ], + "type": "reference", + "expression": "CoverageEligibilityResponse.insurer", + "xpath": "f:CoverageEligibilityResponse/f:insurer", + "xpathUsage": "normal", + "target": [ "Organization" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CoverageEligibilityResponse-outcome", + "resource": { + "resourceType": "SearchParameter", + "id": "CoverageEligibilityResponse-outcome", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CoverageEligibilityResponse-outcome", + "version": "4.0.1", + "name": "outcome", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The processing outcome", + "code": "outcome", + "base": [ "CoverageEligibilityResponse" ], + "type": "token", + "expression": "CoverageEligibilityResponse.outcome", + "xpath": "f:CoverageEligibilityResponse/f:outcome", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CoverageEligibilityResponse-patient", + "resource": { + "resourceType": "SearchParameter", + "id": "CoverageEligibilityResponse-patient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CoverageEligibilityResponse-patient", + "version": "4.0.1", + "name": "patient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The reference to the patient", + "code": "patient", + "base": [ "CoverageEligibilityResponse" ], + "type": "reference", + "expression": "CoverageEligibilityResponse.patient", + "xpath": "f:CoverageEligibilityResponse/f:patient", + "xpathUsage": "normal", + "target": [ "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CoverageEligibilityResponse-request", + "resource": { + "resourceType": "SearchParameter", + "id": "CoverageEligibilityResponse-request", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CoverageEligibilityResponse-request", + "version": "4.0.1", + "name": "request", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The EligibilityRequest reference", + "code": "request", + "base": [ "CoverageEligibilityResponse" ], + "type": "reference", + "expression": "CoverageEligibilityResponse.request", + "xpath": "f:CoverageEligibilityResponse/f:request", + "xpathUsage": "normal", + "target": [ "CoverageEligibilityRequest" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CoverageEligibilityResponse-requestor", + "resource": { + "resourceType": "SearchParameter", + "id": "CoverageEligibilityResponse-requestor", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CoverageEligibilityResponse-requestor", + "version": "4.0.1", + "name": "requestor", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The EligibilityRequest provider", + "code": "requestor", + "base": [ "CoverageEligibilityResponse" ], + "type": "reference", + "expression": "CoverageEligibilityResponse.requestor", + "xpath": "f:CoverageEligibilityResponse/f:requestor", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/CoverageEligibilityResponse-status", + "resource": { + "resourceType": "SearchParameter", + "id": "CoverageEligibilityResponse-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/CoverageEligibilityResponse-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The EligibilityRequest status", + "code": "status", + "base": [ "CoverageEligibilityResponse" ], + "type": "token", + "expression": "CoverageEligibilityResponse.status", + "xpath": "f:CoverageEligibilityResponse/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DetectedIssue-author", + "resource": { + "resourceType": "SearchParameter", + "id": "DetectedIssue-author", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DetectedIssue-author", + "version": "4.0.1", + "name": "author", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The provider or device that identified the issue", + "code": "author", + "base": [ "DetectedIssue" ], + "type": "reference", + "expression": "DetectedIssue.author", + "xpath": "f:DetectedIssue/f:author", + "xpathUsage": "normal", + "target": [ "Practitioner", "Device", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DetectedIssue-code", + "resource": { + "resourceType": "SearchParameter", + "id": "DetectedIssue-code", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DetectedIssue-code", + "version": "4.0.1", + "name": "code", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Issue Category, e.g. drug-drug, duplicate therapy, etc.", + "code": "code", + "base": [ "DetectedIssue" ], + "type": "token", + "expression": "DetectedIssue.code", + "xpath": "f:DetectedIssue/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DetectedIssue-identified", + "resource": { + "resourceType": "SearchParameter", + "id": "DetectedIssue-identified", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DetectedIssue-identified", + "version": "4.0.1", + "name": "identified", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "When identified", + "code": "identified", + "base": [ "DetectedIssue" ], + "type": "date", + "expression": "DetectedIssue.identified", + "xpath": "f:DetectedIssue/f:identifiedDateTime | f:DetectedIssue/f:identifiedPeriod", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DetectedIssue-implicated", + "resource": { + "resourceType": "SearchParameter", + "id": "DetectedIssue-implicated", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DetectedIssue-implicated", + "version": "4.0.1", + "name": "implicated", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Problem resource", + "code": "implicated", + "base": [ "DetectedIssue" ], + "type": "reference", + "expression": "DetectedIssue.implicated", + "xpath": "f:DetectedIssue/f:implicated", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Device-device-name", + "resource": { + "resourceType": "SearchParameter", + "id": "Device-device-name", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Device-device-name", + "version": "4.0.1", + "name": "device-name", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "A server defined search that may match any of the string fields in Device.deviceName or Device.type.", + "code": "device-name", + "base": [ "Device" ], + "type": "string", + "expression": "Device.deviceName.name | Device.type.coding.display | Device.type.text", + "xpath": "f:Device/f:deviceName", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Device-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "Device-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Device-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Instance id from manufacturer, owner, and others", + "code": "identifier", + "base": [ "Device" ], + "type": "token", + "expression": "Device.identifier", + "xpath": "f:Device/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Device-location", + "resource": { + "resourceType": "SearchParameter", + "id": "Device-location", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Device-location", + "version": "4.0.1", + "name": "location", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "A location, where the resource is found", + "code": "location", + "base": [ "Device" ], + "type": "reference", + "expression": "Device.location", + "xpath": "f:Device/f:location", + "xpathUsage": "normal", + "target": [ "Location" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Device-manufacturer", + "resource": { + "resourceType": "SearchParameter", + "id": "Device-manufacturer", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Device-manufacturer", + "version": "4.0.1", + "name": "manufacturer", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The manufacturer of the device", + "code": "manufacturer", + "base": [ "Device" ], + "type": "string", + "expression": "Device.manufacturer", + "xpath": "f:Device/f:manufacturer", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Device-model", + "resource": { + "resourceType": "SearchParameter", + "id": "Device-model", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Device-model", + "version": "4.0.1", + "name": "model", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The model of the device", + "code": "model", + "base": [ "Device" ], + "type": "string", + "expression": "Device.modelNumber", + "xpath": "f:Device/f:modelNumber", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Device-organization", + "resource": { + "resourceType": "SearchParameter", + "id": "Device-organization", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Device-organization", + "version": "4.0.1", + "name": "organization", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The organization responsible for the device", + "code": "organization", + "base": [ "Device" ], + "type": "reference", + "expression": "Device.owner", + "xpath": "f:Device/f:owner", + "xpathUsage": "normal", + "target": [ "Organization" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Device-patient", + "resource": { + "resourceType": "SearchParameter", + "id": "Device-patient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Device-patient", + "version": "4.0.1", + "name": "patient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Patient information, if the resource is affixed to a person", + "code": "patient", + "base": [ "Device" ], + "type": "reference", + "expression": "Device.patient", + "xpath": "f:Device/f:patient", + "xpathUsage": "normal", + "target": [ "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Device-status", + "resource": { + "resourceType": "SearchParameter", + "id": "Device-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Device-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "active | inactive | entered-in-error | unknown", + "code": "status", + "base": [ "Device" ], + "type": "token", + "expression": "Device.status", + "xpath": "f:Device/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Device-type", + "resource": { + "resourceType": "SearchParameter", + "id": "Device-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Device-type", + "version": "4.0.1", + "name": "type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The type of the device", + "code": "type", + "base": [ "Device" ], + "type": "token", + "expression": "Device.type", + "xpath": "f:Device/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Device-udi-carrier", + "resource": { + "resourceType": "SearchParameter", + "id": "Device-udi-carrier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Device-udi-carrier", + "version": "4.0.1", + "name": "udi-carrier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "UDI Barcode (RFID or other technology) string in *HRF* format.", + "code": "udi-carrier", + "base": [ "Device" ], + "type": "string", + "expression": "Device.udiCarrier.carrierHRF", + "xpath": "f:Device/f:udiCarrier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Device-udi-di", + "resource": { + "resourceType": "SearchParameter", + "id": "Device-udi-di", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Device-udi-di", + "version": "4.0.1", + "name": "udi-di", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The udi Device Identifier (DI)", + "code": "udi-di", + "base": [ "Device" ], + "type": "string", + "expression": "Device.udiCarrier.deviceIdentifier", + "xpath": "f:Device/f:udiCarrier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Device-url", + "resource": { + "resourceType": "SearchParameter", + "id": "Device-url", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Device-url", + "version": "4.0.1", + "name": "url", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Network address to contact device", + "code": "url", + "base": [ "Device" ], + "type": "uri", + "expression": "Device.url", + "xpath": "f:Device/f:url", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DeviceDefinition-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "DeviceDefinition-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DeviceDefinition-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The identifier of the component", + "code": "identifier", + "base": [ "DeviceDefinition" ], + "type": "token", + "expression": "DeviceDefinition.identifier", + "xpath": "f:DeviceDefinition/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DeviceDefinition-parent", + "resource": { + "resourceType": "SearchParameter", + "id": "DeviceDefinition-parent", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DeviceDefinition-parent", + "version": "4.0.1", + "name": "parent", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The parent DeviceDefinition resource", + "code": "parent", + "base": [ "DeviceDefinition" ], + "type": "reference", + "expression": "DeviceDefinition.parentDevice", + "xpath": "f:DeviceDefinition/f:parentDevice", + "xpathUsage": "normal", + "target": [ "DeviceDefinition" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DeviceDefinition-type", + "resource": { + "resourceType": "SearchParameter", + "id": "DeviceDefinition-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DeviceDefinition-type", + "version": "4.0.1", + "name": "type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The device component type", + "code": "type", + "base": [ "DeviceDefinition" ], + "type": "token", + "expression": "DeviceDefinition.type", + "xpath": "f:DeviceDefinition/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DeviceMetric-category", + "resource": { + "resourceType": "SearchParameter", + "id": "DeviceMetric-category", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DeviceMetric-category", + "version": "4.0.1", + "name": "category", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Health Care Devices)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/healthcaredevices/index.cfm" + } ] + } ], + "description": "The category of the metric", + "code": "category", + "base": [ "DeviceMetric" ], + "type": "token", + "expression": "DeviceMetric.category", + "xpath": "f:DeviceMetric/f:category", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DeviceMetric-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "DeviceMetric-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DeviceMetric-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Health Care Devices)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/healthcaredevices/index.cfm" + } ] + } ], + "description": "The identifier of the metric", + "code": "identifier", + "base": [ "DeviceMetric" ], + "type": "token", + "expression": "DeviceMetric.identifier", + "xpath": "f:DeviceMetric/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DeviceMetric-parent", + "resource": { + "resourceType": "SearchParameter", + "id": "DeviceMetric-parent", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DeviceMetric-parent", + "version": "4.0.1", + "name": "parent", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Health Care Devices)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/healthcaredevices/index.cfm" + } ] + } ], + "description": "The parent DeviceMetric resource", + "code": "parent", + "base": [ "DeviceMetric" ], + "type": "reference", + "expression": "DeviceMetric.parent", + "xpath": "f:DeviceMetric/f:parent", + "xpathUsage": "normal", + "target": [ "Device" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DeviceMetric-source", + "resource": { + "resourceType": "SearchParameter", + "id": "DeviceMetric-source", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DeviceMetric-source", + "version": "4.0.1", + "name": "source", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Health Care Devices)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/healthcaredevices/index.cfm" + } ] + } ], + "description": "The device resource", + "code": "source", + "base": [ "DeviceMetric" ], + "type": "reference", + "expression": "DeviceMetric.source", + "xpath": "f:DeviceMetric/f:source", + "xpathUsage": "normal", + "target": [ "Device" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DeviceMetric-type", + "resource": { + "resourceType": "SearchParameter", + "id": "DeviceMetric-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DeviceMetric-type", + "version": "4.0.1", + "name": "type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Health Care Devices)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/healthcaredevices/index.cfm" + } ] + } ], + "description": "The component type", + "code": "type", + "base": [ "DeviceMetric" ], + "type": "token", + "expression": "DeviceMetric.type", + "xpath": "f:DeviceMetric/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DeviceRequest-authored-on", + "resource": { + "resourceType": "SearchParameter", + "id": "DeviceRequest-authored-on", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DeviceRequest-authored-on", + "version": "4.0.1", + "name": "authored-on", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "When the request transitioned to being actionable", + "code": "authored-on", + "base": [ "DeviceRequest" ], + "type": "date", + "expression": "DeviceRequest.authoredOn", + "xpath": "f:DeviceRequest/f:authoredOn", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DeviceRequest-based-on", + "resource": { + "resourceType": "SearchParameter", + "id": "DeviceRequest-based-on", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DeviceRequest-based-on", + "version": "4.0.1", + "name": "based-on", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Plan/proposal/order fulfilled by this request", + "code": "based-on", + "base": [ "DeviceRequest" ], + "type": "reference", + "expression": "DeviceRequest.basedOn", + "xpath": "f:DeviceRequest/f:basedOn", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DeviceRequest-device", + "resource": { + "resourceType": "SearchParameter", + "id": "DeviceRequest-device", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DeviceRequest-device", + "version": "4.0.1", + "name": "device", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Reference to resource that is being requested/ordered", + "code": "device", + "base": [ "DeviceRequest" ], + "type": "reference", + "expression": "(DeviceRequest.code as Reference)", + "xpath": "f:DeviceRequest/f:codeReference", + "xpathUsage": "normal", + "target": [ "Device" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DeviceRequest-event-date", + "resource": { + "resourceType": "SearchParameter", + "id": "DeviceRequest-event-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DeviceRequest-event-date", + "version": "4.0.1", + "name": "event-date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "When service should occur", + "code": "event-date", + "base": [ "DeviceRequest" ], + "type": "date", + "expression": "(DeviceRequest.occurrence as dateTime) | (DeviceRequest.occurrence as Period)", + "xpath": "f:DeviceRequest/f:occurrenceDateTime | f:DeviceRequest/f:occurrencePeriod", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DeviceRequest-group-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "DeviceRequest-group-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DeviceRequest-group-identifier", + "version": "4.0.1", + "name": "group-identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Composite request this is part of", + "code": "group-identifier", + "base": [ "DeviceRequest" ], + "type": "token", + "expression": "DeviceRequest.groupIdentifier", + "xpath": "f:DeviceRequest/f:groupIdentifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DeviceRequest-instantiates-canonical", + "resource": { + "resourceType": "SearchParameter", + "id": "DeviceRequest-instantiates-canonical", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DeviceRequest-instantiates-canonical", + "version": "4.0.1", + "name": "instantiates-canonical", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Instantiates FHIR protocol or definition", + "code": "instantiates-canonical", + "base": [ "DeviceRequest" ], + "type": "reference", + "expression": "DeviceRequest.instantiatesCanonical", + "xpath": "f:DeviceRequest/f:instantiatesCanonical", + "xpathUsage": "normal", + "target": [ "PlanDefinition", "ActivityDefinition" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DeviceRequest-instantiates-uri", + "resource": { + "resourceType": "SearchParameter", + "id": "DeviceRequest-instantiates-uri", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DeviceRequest-instantiates-uri", + "version": "4.0.1", + "name": "instantiates-uri", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Instantiates external protocol or definition", + "code": "instantiates-uri", + "base": [ "DeviceRequest" ], + "type": "uri", + "expression": "DeviceRequest.instantiatesUri", + "xpath": "f:DeviceRequest/f:instantiatesUri", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DeviceRequest-insurance", + "resource": { + "resourceType": "SearchParameter", + "id": "DeviceRequest-insurance", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DeviceRequest-insurance", + "version": "4.0.1", + "name": "insurance", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Associated insurance coverage", + "code": "insurance", + "base": [ "DeviceRequest" ], + "type": "reference", + "expression": "DeviceRequest.insurance", + "xpath": "f:DeviceRequest/f:insurance", + "xpathUsage": "normal", + "target": [ "ClaimResponse", "Coverage" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DeviceRequest-intent", + "resource": { + "resourceType": "SearchParameter", + "id": "DeviceRequest-intent", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DeviceRequest-intent", + "version": "4.0.1", + "name": "intent", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "proposal | plan | original-order |reflex-order", + "code": "intent", + "base": [ "DeviceRequest" ], + "type": "token", + "expression": "DeviceRequest.intent", + "xpath": "f:DeviceRequest/f:intent", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DeviceRequest-performer", + "resource": { + "resourceType": "SearchParameter", + "id": "DeviceRequest-performer", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DeviceRequest-performer", + "version": "4.0.1", + "name": "performer", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Desired performer for service", + "code": "performer", + "base": [ "DeviceRequest" ], + "type": "reference", + "expression": "DeviceRequest.performer", + "xpath": "f:DeviceRequest/f:performer", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "CareTeam", "Device", "Patient", "HealthcareService", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DeviceRequest-prior-request", + "resource": { + "resourceType": "SearchParameter", + "id": "DeviceRequest-prior-request", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DeviceRequest-prior-request", + "version": "4.0.1", + "name": "prior-request", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Request takes the place of referenced completed or terminated requests", + "code": "prior-request", + "base": [ "DeviceRequest" ], + "type": "reference", + "expression": "DeviceRequest.priorRequest", + "xpath": "f:DeviceRequest/f:priorRequest", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DeviceRequest-requester", + "resource": { + "resourceType": "SearchParameter", + "id": "DeviceRequest-requester", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DeviceRequest-requester", + "version": "4.0.1", + "name": "requester", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Who/what is requesting service", + "code": "requester", + "base": [ "DeviceRequest" ], + "type": "reference", + "expression": "DeviceRequest.requester", + "xpath": "f:DeviceRequest/f:requester", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "Device", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DeviceRequest-status", + "resource": { + "resourceType": "SearchParameter", + "id": "DeviceRequest-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DeviceRequest-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "entered-in-error | draft | active |suspended | completed", + "code": "status", + "base": [ "DeviceRequest" ], + "type": "token", + "expression": "DeviceRequest.status", + "xpath": "f:DeviceRequest/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DeviceRequest-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "DeviceRequest-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DeviceRequest-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Individual the service is ordered for", + "code": "subject", + "base": [ "DeviceRequest" ], + "type": "reference", + "expression": "DeviceRequest.subject", + "xpath": "f:DeviceRequest/f:subject", + "xpathUsage": "normal", + "target": [ "Group", "Device", "Patient", "Location" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DeviceUseStatement-device", + "resource": { + "resourceType": "SearchParameter", + "id": "DeviceUseStatement-device", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DeviceUseStatement-device", + "version": "4.0.1", + "name": "device", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Search by device", + "code": "device", + "base": [ "DeviceUseStatement" ], + "type": "reference", + "expression": "DeviceUseStatement.device", + "xpath": "f:DeviceUseStatement/f:device", + "xpathUsage": "normal", + "target": [ "Device" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DeviceUseStatement-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "DeviceUseStatement-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DeviceUseStatement-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Search by identifier", + "code": "identifier", + "base": [ "DeviceUseStatement" ], + "type": "token", + "expression": "DeviceUseStatement.identifier", + "xpath": "f:DeviceUseStatement/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DeviceUseStatement-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "DeviceUseStatement-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DeviceUseStatement-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Search by subject", + "code": "subject", + "base": [ "DeviceUseStatement" ], + "type": "reference", + "expression": "DeviceUseStatement.subject", + "xpath": "f:DeviceUseStatement/f:subject", + "xpathUsage": "normal", + "target": [ "Group", "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DiagnosticReport-based-on", + "resource": { + "resourceType": "SearchParameter", + "id": "DiagnosticReport-based-on", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DiagnosticReport-based-on", + "version": "4.0.1", + "name": "based-on", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Reference to the service request.", + "code": "based-on", + "base": [ "DiagnosticReport" ], + "type": "reference", + "expression": "DiagnosticReport.basedOn", + "xpath": "f:DiagnosticReport/f:basedOn", + "xpathUsage": "normal", + "target": [ "CarePlan", "MedicationRequest", "NutritionOrder", "ServiceRequest", "ImmunizationRecommendation" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DiagnosticReport-category", + "resource": { + "resourceType": "SearchParameter", + "id": "DiagnosticReport-category", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DiagnosticReport-category", + "version": "4.0.1", + "name": "category", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Which diagnostic discipline/department created the report", + "code": "category", + "base": [ "DiagnosticReport" ], + "type": "token", + "expression": "DiagnosticReport.category", + "xpath": "f:DiagnosticReport/f:category", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DiagnosticReport-conclusion", + "resource": { + "resourceType": "SearchParameter", + "id": "DiagnosticReport-conclusion", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DiagnosticReport-conclusion", + "version": "4.0.1", + "name": "conclusion", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "A coded conclusion (interpretation/impression) on the report", + "code": "conclusion", + "base": [ "DiagnosticReport" ], + "type": "token", + "expression": "DiagnosticReport.conclusionCode", + "xpath": "f:DiagnosticReport/f:conclusionCode", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DiagnosticReport-issued", + "resource": { + "resourceType": "SearchParameter", + "id": "DiagnosticReport-issued", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DiagnosticReport-issued", + "version": "4.0.1", + "name": "issued", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "When the report was issued", + "code": "issued", + "base": [ "DiagnosticReport" ], + "type": "date", + "expression": "DiagnosticReport.issued", + "xpath": "f:DiagnosticReport/f:issued", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DiagnosticReport-media", + "resource": { + "resourceType": "SearchParameter", + "id": "DiagnosticReport-media", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DiagnosticReport-media", + "version": "4.0.1", + "name": "media", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "A reference to the image source.", + "code": "media", + "base": [ "DiagnosticReport" ], + "type": "reference", + "expression": "DiagnosticReport.media.link", + "xpath": "f:DiagnosticReport/f:media/f:link", + "xpathUsage": "normal", + "target": [ "Media" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DiagnosticReport-performer", + "resource": { + "resourceType": "SearchParameter", + "id": "DiagnosticReport-performer", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DiagnosticReport-performer", + "version": "4.0.1", + "name": "performer", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Who is responsible for the report", + "code": "performer", + "base": [ "DiagnosticReport" ], + "type": "reference", + "expression": "DiagnosticReport.performer", + "xpath": "f:DiagnosticReport/f:performer", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "CareTeam", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DiagnosticReport-result", + "resource": { + "resourceType": "SearchParameter", + "id": "DiagnosticReport-result", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DiagnosticReport-result", + "version": "4.0.1", + "name": "result", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Link to an atomic result (observation resource)", + "code": "result", + "base": [ "DiagnosticReport" ], + "type": "reference", + "expression": "DiagnosticReport.result", + "xpath": "f:DiagnosticReport/f:result", + "xpathUsage": "normal", + "target": [ "Observation" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DiagnosticReport-results-interpreter", + "resource": { + "resourceType": "SearchParameter", + "id": "DiagnosticReport-results-interpreter", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DiagnosticReport-results-interpreter", + "version": "4.0.1", + "name": "results-interpreter", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Who was the source of the report", + "code": "results-interpreter", + "base": [ "DiagnosticReport" ], + "type": "reference", + "expression": "DiagnosticReport.resultsInterpreter", + "xpath": "f:DiagnosticReport/f:resultsInterpreter", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "CareTeam", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DiagnosticReport-specimen", + "resource": { + "resourceType": "SearchParameter", + "id": "DiagnosticReport-specimen", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DiagnosticReport-specimen", + "version": "4.0.1", + "name": "specimen", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The specimen details", + "code": "specimen", + "base": [ "DiagnosticReport" ], + "type": "reference", + "expression": "DiagnosticReport.specimen", + "xpath": "f:DiagnosticReport/f:specimen", + "xpathUsage": "normal", + "target": [ "Specimen" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DiagnosticReport-status", + "resource": { + "resourceType": "SearchParameter", + "id": "DiagnosticReport-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DiagnosticReport-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The status of the report", + "code": "status", + "base": [ "DiagnosticReport" ], + "type": "token", + "expression": "DiagnosticReport.status", + "xpath": "f:DiagnosticReport/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DiagnosticReport-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "DiagnosticReport-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DiagnosticReport-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The subject of the report", + "code": "subject", + "base": [ "DiagnosticReport" ], + "type": "reference", + "expression": "DiagnosticReport.subject", + "xpath": "f:DiagnosticReport/f:subject", + "xpathUsage": "normal", + "target": [ "Group", "Device", "Patient", "Location" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DocumentManifest-author", + "resource": { + "resourceType": "SearchParameter", + "id": "DocumentManifest-author", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DocumentManifest-author", + "version": "4.0.1", + "name": "author", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "Who and/or what authored the DocumentManifest", + "code": "author", + "base": [ "DocumentManifest" ], + "type": "reference", + "expression": "DocumentManifest.author", + "xpath": "f:DocumentManifest/f:author", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "Device", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DocumentManifest-created", + "resource": { + "resourceType": "SearchParameter", + "id": "DocumentManifest-created", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DocumentManifest-created", + "version": "4.0.1", + "name": "created", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "When this document manifest created", + "code": "created", + "base": [ "DocumentManifest" ], + "type": "date", + "expression": "DocumentManifest.created", + "xpath": "f:DocumentManifest/f:created", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DocumentManifest-description", + "resource": { + "resourceType": "SearchParameter", + "id": "DocumentManifest-description", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DocumentManifest-description", + "version": "4.0.1", + "name": "description", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "Human-readable description (title)", + "code": "description", + "base": [ "DocumentManifest" ], + "type": "string", + "expression": "DocumentManifest.description", + "xpath": "f:DocumentManifest/f:description", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DocumentManifest-item", + "resource": { + "resourceType": "SearchParameter", + "id": "DocumentManifest-item", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DocumentManifest-item", + "version": "4.0.1", + "name": "item", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "Items in manifest", + "code": "item", + "base": [ "DocumentManifest" ], + "type": "reference", + "expression": "DocumentManifest.content", + "xpath": "f:DocumentManifest/f:content", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DocumentManifest-recipient", + "resource": { + "resourceType": "SearchParameter", + "id": "DocumentManifest-recipient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DocumentManifest-recipient", + "version": "4.0.1", + "name": "recipient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "Intended to get notified about this set of documents", + "code": "recipient", + "base": [ "DocumentManifest" ], + "type": "reference", + "expression": "DocumentManifest.recipient", + "xpath": "f:DocumentManifest/f:recipient", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DocumentManifest-related-id", + "resource": { + "resourceType": "SearchParameter", + "id": "DocumentManifest-related-id", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DocumentManifest-related-id", + "version": "4.0.1", + "name": "related-id", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "Identifiers of things that are related", + "code": "related-id", + "base": [ "DocumentManifest" ], + "type": "token", + "expression": "DocumentManifest.related.identifier", + "xpath": "f:DocumentManifest/f:related/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DocumentManifest-related-ref", + "resource": { + "resourceType": "SearchParameter", + "id": "DocumentManifest-related-ref", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DocumentManifest-related-ref", + "version": "4.0.1", + "name": "related-ref", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "Related Resource", + "code": "related-ref", + "base": [ "DocumentManifest" ], + "type": "reference", + "expression": "DocumentManifest.related.ref", + "xpath": "f:DocumentManifest/f:related/f:ref", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DocumentManifest-source", + "resource": { + "resourceType": "SearchParameter", + "id": "DocumentManifest-source", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DocumentManifest-source", + "version": "4.0.1", + "name": "source", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "The source system/application/software", + "code": "source", + "base": [ "DocumentManifest" ], + "type": "uri", + "expression": "DocumentManifest.source", + "xpath": "f:DocumentManifest/f:source", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DocumentManifest-status", + "resource": { + "resourceType": "SearchParameter", + "id": "DocumentManifest-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DocumentManifest-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "current | superseded | entered-in-error", + "code": "status", + "base": [ "DocumentManifest" ], + "type": "token", + "expression": "DocumentManifest.status", + "xpath": "f:DocumentManifest/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DocumentManifest-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "DocumentManifest-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DocumentManifest-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "The subject of the set of documents", + "code": "subject", + "base": [ "DocumentManifest" ], + "type": "reference", + "expression": "DocumentManifest.subject", + "xpath": "f:DocumentManifest/f:subject", + "xpathUsage": "normal", + "target": [ "Practitioner", "Group", "Device", "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DocumentReference-authenticator", + "resource": { + "resourceType": "SearchParameter", + "id": "DocumentReference-authenticator", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DocumentReference-authenticator", + "version": "4.0.1", + "name": "authenticator", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "Who/what authenticated the document", + "code": "authenticator", + "base": [ "DocumentReference" ], + "type": "reference", + "expression": "DocumentReference.authenticator", + "xpath": "f:DocumentReference/f:authenticator", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DocumentReference-author", + "resource": { + "resourceType": "SearchParameter", + "id": "DocumentReference-author", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DocumentReference-author", + "version": "4.0.1", + "name": "author", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "Who and/or what authored the document", + "code": "author", + "base": [ "DocumentReference" ], + "type": "reference", + "expression": "DocumentReference.author", + "xpath": "f:DocumentReference/f:author", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "Device", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DocumentReference-category", + "resource": { + "resourceType": "SearchParameter", + "id": "DocumentReference-category", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DocumentReference-category", + "version": "4.0.1", + "name": "category", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "Categorization of document", + "code": "category", + "base": [ "DocumentReference" ], + "type": "token", + "expression": "DocumentReference.category", + "xpath": "f:DocumentReference/f:category", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DocumentReference-contenttype", + "resource": { + "resourceType": "SearchParameter", + "id": "DocumentReference-contenttype", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DocumentReference-contenttype", + "version": "4.0.1", + "name": "contenttype", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "Mime type of the content, with charset etc.", + "code": "contenttype", + "base": [ "DocumentReference" ], + "type": "token", + "expression": "DocumentReference.content.attachment.contentType", + "xpath": "f:DocumentReference/f:content/f:attachment/f:contentType", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DocumentReference-custodian", + "resource": { + "resourceType": "SearchParameter", + "id": "DocumentReference-custodian", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DocumentReference-custodian", + "version": "4.0.1", + "name": "custodian", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "Organization which maintains the document", + "code": "custodian", + "base": [ "DocumentReference" ], + "type": "reference", + "expression": "DocumentReference.custodian", + "xpath": "f:DocumentReference/f:custodian", + "xpathUsage": "normal", + "target": [ "Organization" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DocumentReference-date", + "resource": { + "resourceType": "SearchParameter", + "id": "DocumentReference-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DocumentReference-date", + "version": "4.0.1", + "name": "date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "When this document reference was created", + "code": "date", + "base": [ "DocumentReference" ], + "type": "date", + "expression": "DocumentReference.date", + "xpath": "f:DocumentReference/f:date", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DocumentReference-description", + "resource": { + "resourceType": "SearchParameter", + "id": "DocumentReference-description", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DocumentReference-description", + "version": "4.0.1", + "name": "description", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "Human-readable description", + "code": "description", + "base": [ "DocumentReference" ], + "type": "string", + "expression": "DocumentReference.description", + "xpath": "f:DocumentReference/f:description", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DocumentReference-event", + "resource": { + "resourceType": "SearchParameter", + "id": "DocumentReference-event", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DocumentReference-event", + "version": "4.0.1", + "name": "event", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "Main clinical acts documented", + "code": "event", + "base": [ "DocumentReference" ], + "type": "token", + "expression": "DocumentReference.context.event", + "xpath": "f:DocumentReference/f:context/f:event", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DocumentReference-facility", + "resource": { + "resourceType": "SearchParameter", + "id": "DocumentReference-facility", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DocumentReference-facility", + "version": "4.0.1", + "name": "facility", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "Kind of facility where patient was seen", + "code": "facility", + "base": [ "DocumentReference" ], + "type": "token", + "expression": "DocumentReference.context.facilityType", + "xpath": "f:DocumentReference/f:context/f:facilityType", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DocumentReference-format", + "resource": { + "resourceType": "SearchParameter", + "id": "DocumentReference-format", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DocumentReference-format", + "version": "4.0.1", + "name": "format", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "Format/content rules for the document", + "code": "format", + "base": [ "DocumentReference" ], + "type": "token", + "expression": "DocumentReference.content.format", + "xpath": "f:DocumentReference/f:content/f:format", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DocumentReference-language", + "resource": { + "resourceType": "SearchParameter", + "id": "DocumentReference-language", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DocumentReference-language", + "version": "4.0.1", + "name": "language", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "Human language of the content (BCP-47)", + "code": "language", + "base": [ "DocumentReference" ], + "type": "token", + "expression": "DocumentReference.content.attachment.language", + "xpath": "f:DocumentReference/f:content/f:attachment/f:language", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DocumentReference-location", + "resource": { + "resourceType": "SearchParameter", + "id": "DocumentReference-location", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DocumentReference-location", + "version": "4.0.1", + "name": "location", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "Uri where the data can be found", + "code": "location", + "base": [ "DocumentReference" ], + "type": "uri", + "expression": "DocumentReference.content.attachment.url", + "xpath": "f:DocumentReference/f:content/f:attachment/f:url", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DocumentReference-period", + "resource": { + "resourceType": "SearchParameter", + "id": "DocumentReference-period", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DocumentReference-period", + "version": "4.0.1", + "name": "period", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "Time of service that is being documented", + "code": "period", + "base": [ "DocumentReference" ], + "type": "date", + "expression": "DocumentReference.context.period", + "xpath": "f:DocumentReference/f:context/f:period", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DocumentReference-related", + "resource": { + "resourceType": "SearchParameter", + "id": "DocumentReference-related", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DocumentReference-related", + "version": "4.0.1", + "name": "related", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "Related identifiers or resources", + "code": "related", + "base": [ "DocumentReference" ], + "type": "reference", + "expression": "DocumentReference.context.related", + "xpath": "f:DocumentReference/f:context/f:related", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DocumentReference-relatesto", + "resource": { + "resourceType": "SearchParameter", + "id": "DocumentReference-relatesto", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DocumentReference-relatesto", + "version": "4.0.1", + "name": "relatesto", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "Target of the relationship", + "code": "relatesto", + "base": [ "DocumentReference" ], + "type": "reference", + "expression": "DocumentReference.relatesTo.target", + "xpath": "f:DocumentReference/f:relatesTo/f:target", + "xpathUsage": "normal", + "target": [ "DocumentReference" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DocumentReference-relation", + "resource": { + "resourceType": "SearchParameter", + "id": "DocumentReference-relation", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DocumentReference-relation", + "version": "4.0.1", + "name": "relation", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "replaces | transforms | signs | appends", + "code": "relation", + "base": [ "DocumentReference" ], + "type": "token", + "expression": "DocumentReference.relatesTo.code", + "xpath": "f:DocumentReference/f:relatesTo/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DocumentReference-security-label", + "resource": { + "resourceType": "SearchParameter", + "id": "DocumentReference-security-label", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DocumentReference-security-label", + "version": "4.0.1", + "name": "security-label", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "Document security-tags", + "code": "security-label", + "base": [ "DocumentReference" ], + "type": "token", + "expression": "DocumentReference.securityLabel", + "xpath": "f:DocumentReference/f:securityLabel", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DocumentReference-setting", + "resource": { + "resourceType": "SearchParameter", + "id": "DocumentReference-setting", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DocumentReference-setting", + "version": "4.0.1", + "name": "setting", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "Additional details about where the content was created (e.g. clinical specialty)", + "code": "setting", + "base": [ "DocumentReference" ], + "type": "token", + "expression": "DocumentReference.context.practiceSetting", + "xpath": "f:DocumentReference/f:context/f:practiceSetting", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DocumentReference-status", + "resource": { + "resourceType": "SearchParameter", + "id": "DocumentReference-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DocumentReference-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "current | superseded | entered-in-error", + "code": "status", + "base": [ "DocumentReference" ], + "type": "token", + "expression": "DocumentReference.status", + "xpath": "f:DocumentReference/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DocumentReference-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "DocumentReference-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DocumentReference-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "Who/what is the subject of the document", + "code": "subject", + "base": [ "DocumentReference" ], + "type": "reference", + "expression": "DocumentReference.subject", + "xpath": "f:DocumentReference/f:subject", + "xpathUsage": "normal", + "target": [ "Practitioner", "Group", "Device", "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/DocumentReference-relationship", + "resource": { + "resourceType": "SearchParameter", + "id": "DocumentReference-relationship", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/DocumentReference-relationship", + "version": "4.0.1", + "name": "relationship", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Structured Documents)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/structure/index.cfm" + } ] + } ], + "description": "Combination of relation and relatesTo", + "code": "relationship", + "base": [ "DocumentReference" ], + "type": "composite", + "expression": "DocumentReference.relatesTo", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/DocumentReference-relatesto", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/DocumentReference-relation", + "expression": "target" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EffectEvidenceSynthesis-context", + "resource": { + "resourceType": "SearchParameter", + "id": "EffectEvidenceSynthesis-context", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EffectEvidenceSynthesis-context", + "version": "4.0.1", + "name": "context", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A use context assigned to the effect evidence synthesis", + "code": "context", + "base": [ "EffectEvidenceSynthesis" ], + "type": "token", + "expression": "(EffectEvidenceSynthesis.useContext.value as CodeableConcept)", + "xpath": "f:EffectEvidenceSynthesis/f:useContext/f:valueCodeableConcept", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EffectEvidenceSynthesis-context-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "EffectEvidenceSynthesis-context-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EffectEvidenceSynthesis-context-quantity", + "version": "4.0.1", + "name": "context-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A quantity- or range-valued use context assigned to the effect evidence synthesis", + "code": "context-quantity", + "base": [ "EffectEvidenceSynthesis" ], + "type": "quantity", + "expression": "(EffectEvidenceSynthesis.useContext.value as Quantity) | (EffectEvidenceSynthesis.useContext.value as Range)", + "xpath": "f:EffectEvidenceSynthesis/f:useContext/f:valueQuantity | f:EffectEvidenceSynthesis/f:useContext/f:valueRange", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EffectEvidenceSynthesis-context-type", + "resource": { + "resourceType": "SearchParameter", + "id": "EffectEvidenceSynthesis-context-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EffectEvidenceSynthesis-context-type", + "version": "4.0.1", + "name": "context-type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A type of use context assigned to the effect evidence synthesis", + "code": "context-type", + "base": [ "EffectEvidenceSynthesis" ], + "type": "token", + "expression": "EffectEvidenceSynthesis.useContext.code", + "xpath": "f:EffectEvidenceSynthesis/f:useContext/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EffectEvidenceSynthesis-date", + "resource": { + "resourceType": "SearchParameter", + "id": "EffectEvidenceSynthesis-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EffectEvidenceSynthesis-date", + "version": "4.0.1", + "name": "date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The effect evidence synthesis publication date", + "code": "date", + "base": [ "EffectEvidenceSynthesis" ], + "type": "date", + "expression": "EffectEvidenceSynthesis.date", + "xpath": "f:EffectEvidenceSynthesis/f:date", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EffectEvidenceSynthesis-description", + "resource": { + "resourceType": "SearchParameter", + "id": "EffectEvidenceSynthesis-description", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EffectEvidenceSynthesis-description", + "version": "4.0.1", + "name": "description", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The description of the effect evidence synthesis", + "code": "description", + "base": [ "EffectEvidenceSynthesis" ], + "type": "string", + "expression": "EffectEvidenceSynthesis.description", + "xpath": "f:EffectEvidenceSynthesis/f:description", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EffectEvidenceSynthesis-effective", + "resource": { + "resourceType": "SearchParameter", + "id": "EffectEvidenceSynthesis-effective", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EffectEvidenceSynthesis-effective", + "version": "4.0.1", + "name": "effective", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The time during which the effect evidence synthesis is intended to be in use", + "code": "effective", + "base": [ "EffectEvidenceSynthesis" ], + "type": "date", + "expression": "EffectEvidenceSynthesis.effectivePeriod", + "xpath": "f:EffectEvidenceSynthesis/f:effectivePeriod", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EffectEvidenceSynthesis-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "EffectEvidenceSynthesis-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EffectEvidenceSynthesis-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "External identifier for the effect evidence synthesis", + "code": "identifier", + "base": [ "EffectEvidenceSynthesis" ], + "type": "token", + "expression": "EffectEvidenceSynthesis.identifier", + "xpath": "f:EffectEvidenceSynthesis/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EffectEvidenceSynthesis-jurisdiction", + "resource": { + "resourceType": "SearchParameter", + "id": "EffectEvidenceSynthesis-jurisdiction", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EffectEvidenceSynthesis-jurisdiction", + "version": "4.0.1", + "name": "jurisdiction", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Intended jurisdiction for the effect evidence synthesis", + "code": "jurisdiction", + "base": [ "EffectEvidenceSynthesis" ], + "type": "token", + "expression": "EffectEvidenceSynthesis.jurisdiction", + "xpath": "f:EffectEvidenceSynthesis/f:jurisdiction", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EffectEvidenceSynthesis-name", + "resource": { + "resourceType": "SearchParameter", + "id": "EffectEvidenceSynthesis-name", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EffectEvidenceSynthesis-name", + "version": "4.0.1", + "name": "name", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Computationally friendly name of the effect evidence synthesis", + "code": "name", + "base": [ "EffectEvidenceSynthesis" ], + "type": "string", + "expression": "EffectEvidenceSynthesis.name", + "xpath": "f:EffectEvidenceSynthesis/f:name", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EffectEvidenceSynthesis-publisher", + "resource": { + "resourceType": "SearchParameter", + "id": "EffectEvidenceSynthesis-publisher", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EffectEvidenceSynthesis-publisher", + "version": "4.0.1", + "name": "publisher", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Name of the publisher of the effect evidence synthesis", + "code": "publisher", + "base": [ "EffectEvidenceSynthesis" ], + "type": "string", + "expression": "EffectEvidenceSynthesis.publisher", + "xpath": "f:EffectEvidenceSynthesis/f:publisher", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EffectEvidenceSynthesis-status", + "resource": { + "resourceType": "SearchParameter", + "id": "EffectEvidenceSynthesis-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EffectEvidenceSynthesis-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The current status of the effect evidence synthesis", + "code": "status", + "base": [ "EffectEvidenceSynthesis" ], + "type": "token", + "expression": "EffectEvidenceSynthesis.status", + "xpath": "f:EffectEvidenceSynthesis/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EffectEvidenceSynthesis-title", + "resource": { + "resourceType": "SearchParameter", + "id": "EffectEvidenceSynthesis-title", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EffectEvidenceSynthesis-title", + "version": "4.0.1", + "name": "title", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The human-friendly name of the effect evidence synthesis", + "code": "title", + "base": [ "EffectEvidenceSynthesis" ], + "type": "string", + "expression": "EffectEvidenceSynthesis.title", + "xpath": "f:EffectEvidenceSynthesis/f:title", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EffectEvidenceSynthesis-url", + "resource": { + "resourceType": "SearchParameter", + "id": "EffectEvidenceSynthesis-url", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EffectEvidenceSynthesis-url", + "version": "4.0.1", + "name": "url", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The uri that identifies the effect evidence synthesis", + "code": "url", + "base": [ "EffectEvidenceSynthesis" ], + "type": "uri", + "expression": "EffectEvidenceSynthesis.url", + "xpath": "f:EffectEvidenceSynthesis/f:url", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EffectEvidenceSynthesis-version", + "resource": { + "resourceType": "SearchParameter", + "id": "EffectEvidenceSynthesis-version", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EffectEvidenceSynthesis-version", + "version": "4.0.1", + "name": "version", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The business version of the effect evidence synthesis", + "code": "version", + "base": [ "EffectEvidenceSynthesis" ], + "type": "token", + "expression": "EffectEvidenceSynthesis.version", + "xpath": "f:EffectEvidenceSynthesis/f:version", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EffectEvidenceSynthesis-context-type-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "EffectEvidenceSynthesis-context-type-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EffectEvidenceSynthesis-context-type-quantity", + "version": "4.0.1", + "name": "context-type-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A use context type and quantity- or range-based value assigned to the effect evidence synthesis", + "code": "context-type-quantity", + "base": [ "EffectEvidenceSynthesis" ], + "type": "composite", + "expression": "EffectEvidenceSynthesis.useContext", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/EffectEvidenceSynthesis-context-type", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/EffectEvidenceSynthesis-context-quantity", + "expression": "value.as(Quantity) | value.as(Range)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EffectEvidenceSynthesis-context-type-value", + "resource": { + "resourceType": "SearchParameter", + "id": "EffectEvidenceSynthesis-context-type-value", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EffectEvidenceSynthesis-context-type-value", + "version": "4.0.1", + "name": "context-type-value", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A use context type and value assigned to the effect evidence synthesis", + "code": "context-type-value", + "base": [ "EffectEvidenceSynthesis" ], + "type": "composite", + "expression": "EffectEvidenceSynthesis.useContext", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/EffectEvidenceSynthesis-context-type", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/EffectEvidenceSynthesis-context", + "expression": "value.as(CodeableConcept)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Encounter-account", + "resource": { + "resourceType": "SearchParameter", + "id": "Encounter-account", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Encounter-account", + "version": "4.0.1", + "name": "account", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The set of accounts that may be used for billing for this Encounter", + "code": "account", + "base": [ "Encounter" ], + "type": "reference", + "expression": "Encounter.account", + "xpath": "f:Encounter/f:account", + "xpathUsage": "normal", + "target": [ "Account" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Encounter-appointment", + "resource": { + "resourceType": "SearchParameter", + "id": "Encounter-appointment", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Encounter-appointment", + "version": "4.0.1", + "name": "appointment", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The appointment that scheduled this encounter", + "code": "appointment", + "base": [ "Encounter" ], + "type": "reference", + "expression": "Encounter.appointment", + "xpath": "f:Encounter/f:appointment", + "xpathUsage": "normal", + "target": [ "Appointment" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Encounter-based-on", + "resource": { + "resourceType": "SearchParameter", + "id": "Encounter-based-on", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Encounter-based-on", + "version": "4.0.1", + "name": "based-on", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The ServiceRequest that initiated this encounter", + "code": "based-on", + "base": [ "Encounter" ], + "type": "reference", + "expression": "Encounter.basedOn", + "xpath": "f:Encounter/f:basedOn", + "xpathUsage": "normal", + "target": [ "ServiceRequest" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Encounter-class", + "resource": { + "resourceType": "SearchParameter", + "id": "Encounter-class", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Encounter-class", + "version": "4.0.1", + "name": "class", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Classification of patient encounter", + "code": "class", + "base": [ "Encounter" ], + "type": "token", + "expression": "Encounter.class", + "xpath": "f:Encounter/f:class", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Encounter-diagnosis", + "resource": { + "resourceType": "SearchParameter", + "id": "Encounter-diagnosis", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Encounter-diagnosis", + "version": "4.0.1", + "name": "diagnosis", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The diagnosis or procedure relevant to the encounter", + "code": "diagnosis", + "base": [ "Encounter" ], + "type": "reference", + "expression": "Encounter.diagnosis.condition", + "xpath": "f:Encounter/f:diagnosis/f:condition", + "xpathUsage": "normal", + "target": [ "Condition", "Procedure" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Encounter-episode-of-care", + "resource": { + "resourceType": "SearchParameter", + "id": "Encounter-episode-of-care", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Encounter-episode-of-care", + "version": "4.0.1", + "name": "episode-of-care", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Episode(s) of care that this encounter should be recorded against", + "code": "episode-of-care", + "base": [ "Encounter" ], + "type": "reference", + "expression": "Encounter.episodeOfCare", + "xpath": "f:Encounter/f:episodeOfCare", + "xpathUsage": "normal", + "target": [ "EpisodeOfCare" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Encounter-length", + "resource": { + "resourceType": "SearchParameter", + "id": "Encounter-length", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Encounter-length", + "version": "4.0.1", + "name": "length", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Length of encounter in days", + "code": "length", + "base": [ "Encounter" ], + "type": "quantity", + "expression": "Encounter.length", + "xpath": "f:Encounter/f:length", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Encounter-location", + "resource": { + "resourceType": "SearchParameter", + "id": "Encounter-location", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Encounter-location", + "version": "4.0.1", + "name": "location", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Location the encounter takes place", + "code": "location", + "base": [ "Encounter" ], + "type": "reference", + "expression": "Encounter.location.location", + "xpath": "f:Encounter/f:location/f:location", + "xpathUsage": "normal", + "target": [ "Location" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Encounter-location-period", + "resource": { + "resourceType": "SearchParameter", + "id": "Encounter-location-period", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Encounter-location-period", + "version": "4.0.1", + "name": "location-period", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Time period during which the patient was present at the location", + "code": "location-period", + "base": [ "Encounter" ], + "type": "date", + "expression": "Encounter.location.period", + "xpath": "f:Encounter/f:location/f:period", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Encounter-part-of", + "resource": { + "resourceType": "SearchParameter", + "id": "Encounter-part-of", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Encounter-part-of", + "version": "4.0.1", + "name": "part-of", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Another Encounter this encounter is part of", + "code": "part-of", + "base": [ "Encounter" ], + "type": "reference", + "expression": "Encounter.partOf", + "xpath": "f:Encounter/f:partOf", + "xpathUsage": "normal", + "target": [ "Encounter" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Encounter-participant", + "resource": { + "resourceType": "SearchParameter", + "id": "Encounter-participant", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Encounter-participant", + "version": "4.0.1", + "name": "participant", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Persons involved in the encounter other than the patient", + "code": "participant", + "base": [ "Encounter" ], + "type": "reference", + "expression": "Encounter.participant.individual", + "xpath": "f:Encounter/f:participant/f:individual", + "xpathUsage": "normal", + "target": [ "Practitioner", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Encounter-participant-type", + "resource": { + "resourceType": "SearchParameter", + "id": "Encounter-participant-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Encounter-participant-type", + "version": "4.0.1", + "name": "participant-type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Role of participant in encounter", + "code": "participant-type", + "base": [ "Encounter" ], + "type": "token", + "expression": "Encounter.participant.type", + "xpath": "f:Encounter/f:participant/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Encounter-practitioner", + "resource": { + "resourceType": "SearchParameter", + "id": "Encounter-practitioner", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Encounter-practitioner", + "version": "4.0.1", + "name": "practitioner", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Persons involved in the encounter other than the patient", + "code": "practitioner", + "base": [ "Encounter" ], + "type": "reference", + "expression": "Encounter.participant.individual.where(resolve() is Practitioner)", + "xpath": "f:Encounter/f:participant/f:individual", + "xpathUsage": "normal", + "target": [ "Practitioner" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Encounter-reason-code", + "resource": { + "resourceType": "SearchParameter", + "id": "Encounter-reason-code", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Encounter-reason-code", + "version": "4.0.1", + "name": "reason-code", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Coded reason the encounter takes place", + "code": "reason-code", + "base": [ "Encounter" ], + "type": "token", + "expression": "Encounter.reasonCode", + "xpath": "f:Encounter/f:reasonCode", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Encounter-reason-reference", + "resource": { + "resourceType": "SearchParameter", + "id": "Encounter-reason-reference", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Encounter-reason-reference", + "version": "4.0.1", + "name": "reason-reference", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Reason the encounter takes place (reference)", + "code": "reason-reference", + "base": [ "Encounter" ], + "type": "reference", + "expression": "Encounter.reasonReference", + "xpath": "f:Encounter/f:reasonReference", + "xpathUsage": "normal", + "target": [ "Condition", "Observation", "Procedure", "ImmunizationRecommendation" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Encounter-service-provider", + "resource": { + "resourceType": "SearchParameter", + "id": "Encounter-service-provider", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Encounter-service-provider", + "version": "4.0.1", + "name": "service-provider", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The organization (facility) responsible for this encounter", + "code": "service-provider", + "base": [ "Encounter" ], + "type": "reference", + "expression": "Encounter.serviceProvider", + "xpath": "f:Encounter/f:serviceProvider", + "xpathUsage": "normal", + "target": [ "Organization" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Encounter-special-arrangement", + "resource": { + "resourceType": "SearchParameter", + "id": "Encounter-special-arrangement", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Encounter-special-arrangement", + "version": "4.0.1", + "name": "special-arrangement", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Wheelchair, translator, stretcher, etc.", + "code": "special-arrangement", + "base": [ "Encounter" ], + "type": "token", + "expression": "Encounter.hospitalization.specialArrangement", + "xpath": "f:Encounter/f:hospitalization/f:specialArrangement", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Encounter-status", + "resource": { + "resourceType": "SearchParameter", + "id": "Encounter-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Encounter-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "planned | arrived | triaged | in-progress | onleave | finished | cancelled +", + "code": "status", + "base": [ "Encounter" ], + "type": "token", + "expression": "Encounter.status", + "xpath": "f:Encounter/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Encounter-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "Encounter-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Encounter-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The patient or group present at the encounter", + "code": "subject", + "base": [ "Encounter" ], + "type": "reference", + "expression": "Encounter.subject", + "xpath": "f:Encounter/f:subject", + "xpathUsage": "normal", + "target": [ "Group", "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Endpoint-connection-type", + "resource": { + "resourceType": "SearchParameter", + "id": "Endpoint-connection-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Endpoint-connection-type", + "version": "4.0.1", + "name": "connection-type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Protocol/Profile/Standard to be used with this endpoint connection", + "code": "connection-type", + "base": [ "Endpoint" ], + "type": "token", + "expression": "Endpoint.connectionType", + "xpath": "f:Endpoint/f:connectionType", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Endpoint-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "Endpoint-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Endpoint-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Identifies this endpoint across multiple systems", + "code": "identifier", + "base": [ "Endpoint" ], + "type": "token", + "expression": "Endpoint.identifier", + "xpath": "f:Endpoint/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Endpoint-name", + "resource": { + "resourceType": "SearchParameter", + "id": "Endpoint-name", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Endpoint-name", + "version": "4.0.1", + "name": "name", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A name that this endpoint can be identified by", + "code": "name", + "base": [ "Endpoint" ], + "type": "string", + "expression": "Endpoint.name", + "xpath": "f:Endpoint/f:name", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Endpoint-organization", + "resource": { + "resourceType": "SearchParameter", + "id": "Endpoint-organization", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Endpoint-organization", + "version": "4.0.1", + "name": "organization", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The organization that is managing the endpoint", + "code": "organization", + "base": [ "Endpoint" ], + "type": "reference", + "expression": "Endpoint.managingOrganization", + "xpath": "f:Endpoint/f:managingOrganization", + "xpathUsage": "normal", + "target": [ "Organization" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Endpoint-payload-type", + "resource": { + "resourceType": "SearchParameter", + "id": "Endpoint-payload-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Endpoint-payload-type", + "version": "4.0.1", + "name": "payload-type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The type of content that may be used at this endpoint (e.g. XDS Discharge summaries)", + "code": "payload-type", + "base": [ "Endpoint" ], + "type": "token", + "expression": "Endpoint.payloadType", + "xpath": "f:Endpoint/f:payloadType", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Endpoint-status", + "resource": { + "resourceType": "SearchParameter", + "id": "Endpoint-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Endpoint-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The current status of the Endpoint (usually expected to be active)", + "code": "status", + "base": [ "Endpoint" ], + "type": "token", + "expression": "Endpoint.status", + "xpath": "f:Endpoint/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EnrollmentRequest-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "EnrollmentRequest-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EnrollmentRequest-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The business identifier of the Enrollment", + "code": "identifier", + "base": [ "EnrollmentRequest" ], + "type": "token", + "expression": "EnrollmentRequest.identifier", + "xpath": "f:EnrollmentRequest/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EnrollmentRequest-patient", + "resource": { + "resourceType": "SearchParameter", + "id": "EnrollmentRequest-patient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EnrollmentRequest-patient", + "version": "4.0.1", + "name": "patient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The party to be enrolled", + "code": "patient", + "base": [ "EnrollmentRequest" ], + "type": "reference", + "expression": "EnrollmentRequest.candidate", + "xpath": "f:EnrollmentRequest/f:candidate", + "xpathUsage": "normal", + "target": [ "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EnrollmentRequest-status", + "resource": { + "resourceType": "SearchParameter", + "id": "EnrollmentRequest-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EnrollmentRequest-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The status of the enrollment", + "code": "status", + "base": [ "EnrollmentRequest" ], + "type": "token", + "expression": "EnrollmentRequest.status", + "xpath": "f:EnrollmentRequest/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EnrollmentRequest-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "EnrollmentRequest-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EnrollmentRequest-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The party to be enrolled", + "code": "subject", + "base": [ "EnrollmentRequest" ], + "type": "reference", + "expression": "EnrollmentRequest.candidate", + "xpath": "f:EnrollmentRequest/f:candidate", + "xpathUsage": "normal", + "target": [ "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EnrollmentResponse-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "EnrollmentResponse-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EnrollmentResponse-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The business identifier of the EnrollmentResponse", + "code": "identifier", + "base": [ "EnrollmentResponse" ], + "type": "token", + "expression": "EnrollmentResponse.identifier", + "xpath": "f:EnrollmentResponse/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EnrollmentResponse-request", + "resource": { + "resourceType": "SearchParameter", + "id": "EnrollmentResponse-request", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EnrollmentResponse-request", + "version": "4.0.1", + "name": "request", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The reference to the claim", + "code": "request", + "base": [ "EnrollmentResponse" ], + "type": "reference", + "expression": "EnrollmentResponse.request", + "xpath": "f:EnrollmentResponse/f:request", + "xpathUsage": "normal", + "target": [ "EnrollmentRequest" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EnrollmentResponse-status", + "resource": { + "resourceType": "SearchParameter", + "id": "EnrollmentResponse-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EnrollmentResponse-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The status of the enrollment response", + "code": "status", + "base": [ "EnrollmentResponse" ], + "type": "token", + "expression": "EnrollmentResponse.status", + "xpath": "f:EnrollmentResponse/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EpisodeOfCare-care-manager", + "resource": { + "resourceType": "SearchParameter", + "id": "EpisodeOfCare-care-manager", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EpisodeOfCare-care-manager", + "version": "4.0.1", + "name": "care-manager", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Care manager/care coordinator for the patient", + "code": "care-manager", + "base": [ "EpisodeOfCare" ], + "type": "reference", + "expression": "EpisodeOfCare.careManager.where(resolve() is Practitioner)", + "xpath": "f:EpisodeOfCare/f:careManager", + "xpathUsage": "normal", + "target": [ "Practitioner" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EpisodeOfCare-condition", + "resource": { + "resourceType": "SearchParameter", + "id": "EpisodeOfCare-condition", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EpisodeOfCare-condition", + "version": "4.0.1", + "name": "condition", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Conditions/problems/diagnoses this episode of care is for", + "code": "condition", + "base": [ "EpisodeOfCare" ], + "type": "reference", + "expression": "EpisodeOfCare.diagnosis.condition", + "xpath": "f:EpisodeOfCare/f:diagnosis/f:condition", + "xpathUsage": "normal", + "target": [ "Condition" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EpisodeOfCare-incoming-referral", + "resource": { + "resourceType": "SearchParameter", + "id": "EpisodeOfCare-incoming-referral", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EpisodeOfCare-incoming-referral", + "version": "4.0.1", + "name": "incoming-referral", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Incoming Referral Request", + "code": "incoming-referral", + "base": [ "EpisodeOfCare" ], + "type": "reference", + "expression": "EpisodeOfCare.referralRequest", + "xpath": "f:EpisodeOfCare/f:referralRequest", + "xpathUsage": "normal", + "target": [ "ServiceRequest" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EpisodeOfCare-organization", + "resource": { + "resourceType": "SearchParameter", + "id": "EpisodeOfCare-organization", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EpisodeOfCare-organization", + "version": "4.0.1", + "name": "organization", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The organization that has assumed the specific responsibilities of this EpisodeOfCare", + "code": "organization", + "base": [ "EpisodeOfCare" ], + "type": "reference", + "expression": "EpisodeOfCare.managingOrganization", + "xpath": "f:EpisodeOfCare/f:managingOrganization", + "xpathUsage": "normal", + "target": [ "Organization" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EpisodeOfCare-status", + "resource": { + "resourceType": "SearchParameter", + "id": "EpisodeOfCare-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EpisodeOfCare-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The current status of the Episode of Care as provided (does not check the status history collection)", + "code": "status", + "base": [ "EpisodeOfCare" ], + "type": "token", + "expression": "EpisodeOfCare.status", + "xpath": "f:EpisodeOfCare/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EventDefinition-composed-of", + "resource": { + "resourceType": "SearchParameter", + "id": "EventDefinition-composed-of", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EventDefinition-composed-of", + "version": "4.0.1", + "name": "composed-of", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "composed-of", + "base": [ "EventDefinition" ], + "type": "reference", + "expression": "EventDefinition.relatedArtifact.where(type='composed-of').resource", + "xpath": "f:EventDefinition/f:relatedArtifact[f:type/@value='composed-of']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EventDefinition-context", + "resource": { + "resourceType": "SearchParameter", + "id": "EventDefinition-context", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EventDefinition-context", + "version": "4.0.1", + "name": "context", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A use context assigned to the event definition", + "code": "context", + "base": [ "EventDefinition" ], + "type": "token", + "expression": "(EventDefinition.useContext.value as CodeableConcept)", + "xpath": "f:EventDefinition/f:useContext/f:valueCodeableConcept", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EventDefinition-context-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "EventDefinition-context-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EventDefinition-context-quantity", + "version": "4.0.1", + "name": "context-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A quantity- or range-valued use context assigned to the event definition", + "code": "context-quantity", + "base": [ "EventDefinition" ], + "type": "quantity", + "expression": "(EventDefinition.useContext.value as Quantity) | (EventDefinition.useContext.value as Range)", + "xpath": "f:EventDefinition/f:useContext/f:valueQuantity | f:EventDefinition/f:useContext/f:valueRange", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EventDefinition-context-type", + "resource": { + "resourceType": "SearchParameter", + "id": "EventDefinition-context-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EventDefinition-context-type", + "version": "4.0.1", + "name": "context-type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A type of use context assigned to the event definition", + "code": "context-type", + "base": [ "EventDefinition" ], + "type": "token", + "expression": "EventDefinition.useContext.code", + "xpath": "f:EventDefinition/f:useContext/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EventDefinition-date", + "resource": { + "resourceType": "SearchParameter", + "id": "EventDefinition-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EventDefinition-date", + "version": "4.0.1", + "name": "date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The event definition publication date", + "code": "date", + "base": [ "EventDefinition" ], + "type": "date", + "expression": "EventDefinition.date", + "xpath": "f:EventDefinition/f:date", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EventDefinition-depends-on", + "resource": { + "resourceType": "SearchParameter", + "id": "EventDefinition-depends-on", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EventDefinition-depends-on", + "version": "4.0.1", + "name": "depends-on", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "depends-on", + "base": [ "EventDefinition" ], + "type": "reference", + "expression": "EventDefinition.relatedArtifact.where(type='depends-on').resource", + "xpath": "f:EventDefinition/f:relatedArtifact[f:type/@value='depends-on']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EventDefinition-derived-from", + "resource": { + "resourceType": "SearchParameter", + "id": "EventDefinition-derived-from", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EventDefinition-derived-from", + "version": "4.0.1", + "name": "derived-from", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "derived-from", + "base": [ "EventDefinition" ], + "type": "reference", + "expression": "EventDefinition.relatedArtifact.where(type='derived-from').resource", + "xpath": "f:EventDefinition/f:relatedArtifact[f:type/@value='derived-from']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EventDefinition-description", + "resource": { + "resourceType": "SearchParameter", + "id": "EventDefinition-description", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EventDefinition-description", + "version": "4.0.1", + "name": "description", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The description of the event definition", + "code": "description", + "base": [ "EventDefinition" ], + "type": "string", + "expression": "EventDefinition.description", + "xpath": "f:EventDefinition/f:description", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EventDefinition-effective", + "resource": { + "resourceType": "SearchParameter", + "id": "EventDefinition-effective", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EventDefinition-effective", + "version": "4.0.1", + "name": "effective", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The time during which the event definition is intended to be in use", + "code": "effective", + "base": [ "EventDefinition" ], + "type": "date", + "expression": "EventDefinition.effectivePeriod", + "xpath": "f:EventDefinition/f:effectivePeriod", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EventDefinition-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "EventDefinition-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EventDefinition-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "External identifier for the event definition", + "code": "identifier", + "base": [ "EventDefinition" ], + "type": "token", + "expression": "EventDefinition.identifier", + "xpath": "f:EventDefinition/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EventDefinition-jurisdiction", + "resource": { + "resourceType": "SearchParameter", + "id": "EventDefinition-jurisdiction", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EventDefinition-jurisdiction", + "version": "4.0.1", + "name": "jurisdiction", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Intended jurisdiction for the event definition", + "code": "jurisdiction", + "base": [ "EventDefinition" ], + "type": "token", + "expression": "EventDefinition.jurisdiction", + "xpath": "f:EventDefinition/f:jurisdiction", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EventDefinition-name", + "resource": { + "resourceType": "SearchParameter", + "id": "EventDefinition-name", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EventDefinition-name", + "version": "4.0.1", + "name": "name", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Computationally friendly name of the event definition", + "code": "name", + "base": [ "EventDefinition" ], + "type": "string", + "expression": "EventDefinition.name", + "xpath": "f:EventDefinition/f:name", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EventDefinition-predecessor", + "resource": { + "resourceType": "SearchParameter", + "id": "EventDefinition-predecessor", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EventDefinition-predecessor", + "version": "4.0.1", + "name": "predecessor", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "predecessor", + "base": [ "EventDefinition" ], + "type": "reference", + "expression": "EventDefinition.relatedArtifact.where(type='predecessor').resource", + "xpath": "f:EventDefinition/f:relatedArtifact[f:type/@value='predecessor']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EventDefinition-publisher", + "resource": { + "resourceType": "SearchParameter", + "id": "EventDefinition-publisher", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EventDefinition-publisher", + "version": "4.0.1", + "name": "publisher", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Name of the publisher of the event definition", + "code": "publisher", + "base": [ "EventDefinition" ], + "type": "string", + "expression": "EventDefinition.publisher", + "xpath": "f:EventDefinition/f:publisher", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EventDefinition-status", + "resource": { + "resourceType": "SearchParameter", + "id": "EventDefinition-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EventDefinition-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The current status of the event definition", + "code": "status", + "base": [ "EventDefinition" ], + "type": "token", + "expression": "EventDefinition.status", + "xpath": "f:EventDefinition/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EventDefinition-successor", + "resource": { + "resourceType": "SearchParameter", + "id": "EventDefinition-successor", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EventDefinition-successor", + "version": "4.0.1", + "name": "successor", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "successor", + "base": [ "EventDefinition" ], + "type": "reference", + "expression": "EventDefinition.relatedArtifact.where(type='successor').resource", + "xpath": "f:EventDefinition/f:relatedArtifact[f:type/@value='successor']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EventDefinition-title", + "resource": { + "resourceType": "SearchParameter", + "id": "EventDefinition-title", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EventDefinition-title", + "version": "4.0.1", + "name": "title", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The human-friendly name of the event definition", + "code": "title", + "base": [ "EventDefinition" ], + "type": "string", + "expression": "EventDefinition.title", + "xpath": "f:EventDefinition/f:title", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EventDefinition-topic", + "resource": { + "resourceType": "SearchParameter", + "id": "EventDefinition-topic", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EventDefinition-topic", + "version": "4.0.1", + "name": "topic", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Topics associated with the module", + "code": "topic", + "base": [ "EventDefinition" ], + "type": "token", + "expression": "EventDefinition.topic", + "xpath": "f:EventDefinition/f:topic", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EventDefinition-url", + "resource": { + "resourceType": "SearchParameter", + "id": "EventDefinition-url", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EventDefinition-url", + "version": "4.0.1", + "name": "url", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The uri that identifies the event definition", + "code": "url", + "base": [ "EventDefinition" ], + "type": "uri", + "expression": "EventDefinition.url", + "xpath": "f:EventDefinition/f:url", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EventDefinition-version", + "resource": { + "resourceType": "SearchParameter", + "id": "EventDefinition-version", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EventDefinition-version", + "version": "4.0.1", + "name": "version", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The business version of the event definition", + "code": "version", + "base": [ "EventDefinition" ], + "type": "token", + "expression": "EventDefinition.version", + "xpath": "f:EventDefinition/f:version", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EventDefinition-context-type-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "EventDefinition-context-type-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EventDefinition-context-type-quantity", + "version": "4.0.1", + "name": "context-type-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A use context type and quantity- or range-based value assigned to the event definition", + "code": "context-type-quantity", + "base": [ "EventDefinition" ], + "type": "composite", + "expression": "EventDefinition.useContext", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/EventDefinition-context-type", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/EventDefinition-context-quantity", + "expression": "value.as(Quantity) | value.as(Range)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EventDefinition-context-type-value", + "resource": { + "resourceType": "SearchParameter", + "id": "EventDefinition-context-type-value", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EventDefinition-context-type-value", + "version": "4.0.1", + "name": "context-type-value", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A use context type and value assigned to the event definition", + "code": "context-type-value", + "base": [ "EventDefinition" ], + "type": "composite", + "expression": "EventDefinition.useContext", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/EventDefinition-context-type", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/EventDefinition-context", + "expression": "value.as(CodeableConcept)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Evidence-composed-of", + "resource": { + "resourceType": "SearchParameter", + "id": "Evidence-composed-of", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Evidence-composed-of", + "version": "4.0.1", + "name": "composed-of", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "composed-of", + "base": [ "Evidence" ], + "type": "reference", + "expression": "Evidence.relatedArtifact.where(type='composed-of').resource", + "xpath": "f:Evidence/f:relatedArtifact[f:type/@value='composed-of']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Evidence-context", + "resource": { + "resourceType": "SearchParameter", + "id": "Evidence-context", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Evidence-context", + "version": "4.0.1", + "name": "context", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A use context assigned to the evidence", + "code": "context", + "base": [ "Evidence" ], + "type": "token", + "expression": "(Evidence.useContext.value as CodeableConcept)", + "xpath": "f:Evidence/f:useContext/f:valueCodeableConcept", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Evidence-context-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "Evidence-context-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Evidence-context-quantity", + "version": "4.0.1", + "name": "context-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A quantity- or range-valued use context assigned to the evidence", + "code": "context-quantity", + "base": [ "Evidence" ], + "type": "quantity", + "expression": "(Evidence.useContext.value as Quantity) | (Evidence.useContext.value as Range)", + "xpath": "f:Evidence/f:useContext/f:valueQuantity | f:Evidence/f:useContext/f:valueRange", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Evidence-context-type", + "resource": { + "resourceType": "SearchParameter", + "id": "Evidence-context-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Evidence-context-type", + "version": "4.0.1", + "name": "context-type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A type of use context assigned to the evidence", + "code": "context-type", + "base": [ "Evidence" ], + "type": "token", + "expression": "Evidence.useContext.code", + "xpath": "f:Evidence/f:useContext/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Evidence-date", + "resource": { + "resourceType": "SearchParameter", + "id": "Evidence-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Evidence-date", + "version": "4.0.1", + "name": "date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The evidence publication date", + "code": "date", + "base": [ "Evidence" ], + "type": "date", + "expression": "Evidence.date", + "xpath": "f:Evidence/f:date", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Evidence-depends-on", + "resource": { + "resourceType": "SearchParameter", + "id": "Evidence-depends-on", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Evidence-depends-on", + "version": "4.0.1", + "name": "depends-on", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "depends-on", + "base": [ "Evidence" ], + "type": "reference", + "expression": "Evidence.relatedArtifact.where(type='depends-on').resource", + "xpath": "f:Evidence/f:relatedArtifact[f:type/@value='depends-on']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Evidence-derived-from", + "resource": { + "resourceType": "SearchParameter", + "id": "Evidence-derived-from", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Evidence-derived-from", + "version": "4.0.1", + "name": "derived-from", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "derived-from", + "base": [ "Evidence" ], + "type": "reference", + "expression": "Evidence.relatedArtifact.where(type='derived-from').resource", + "xpath": "f:Evidence/f:relatedArtifact[f:type/@value='derived-from']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Evidence-description", + "resource": { + "resourceType": "SearchParameter", + "id": "Evidence-description", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Evidence-description", + "version": "4.0.1", + "name": "description", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The description of the evidence", + "code": "description", + "base": [ "Evidence" ], + "type": "string", + "expression": "Evidence.description", + "xpath": "f:Evidence/f:description", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Evidence-effective", + "resource": { + "resourceType": "SearchParameter", + "id": "Evidence-effective", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Evidence-effective", + "version": "4.0.1", + "name": "effective", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The time during which the evidence is intended to be in use", + "code": "effective", + "base": [ "Evidence" ], + "type": "date", + "expression": "Evidence.effectivePeriod", + "xpath": "f:Evidence/f:effectivePeriod", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Evidence-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "Evidence-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Evidence-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "External identifier for the evidence", + "code": "identifier", + "base": [ "Evidence" ], + "type": "token", + "expression": "Evidence.identifier", + "xpath": "f:Evidence/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Evidence-jurisdiction", + "resource": { + "resourceType": "SearchParameter", + "id": "Evidence-jurisdiction", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Evidence-jurisdiction", + "version": "4.0.1", + "name": "jurisdiction", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Intended jurisdiction for the evidence", + "code": "jurisdiction", + "base": [ "Evidence" ], + "type": "token", + "expression": "Evidence.jurisdiction", + "xpath": "f:Evidence/f:jurisdiction", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Evidence-name", + "resource": { + "resourceType": "SearchParameter", + "id": "Evidence-name", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Evidence-name", + "version": "4.0.1", + "name": "name", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Computationally friendly name of the evidence", + "code": "name", + "base": [ "Evidence" ], + "type": "string", + "expression": "Evidence.name", + "xpath": "f:Evidence/f:name", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Evidence-predecessor", + "resource": { + "resourceType": "SearchParameter", + "id": "Evidence-predecessor", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Evidence-predecessor", + "version": "4.0.1", + "name": "predecessor", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "predecessor", + "base": [ "Evidence" ], + "type": "reference", + "expression": "Evidence.relatedArtifact.where(type='predecessor').resource", + "xpath": "f:Evidence/f:relatedArtifact[f:type/@value='predecessor']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Evidence-publisher", + "resource": { + "resourceType": "SearchParameter", + "id": "Evidence-publisher", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Evidence-publisher", + "version": "4.0.1", + "name": "publisher", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Name of the publisher of the evidence", + "code": "publisher", + "base": [ "Evidence" ], + "type": "string", + "expression": "Evidence.publisher", + "xpath": "f:Evidence/f:publisher", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Evidence-status", + "resource": { + "resourceType": "SearchParameter", + "id": "Evidence-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Evidence-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The current status of the evidence", + "code": "status", + "base": [ "Evidence" ], + "type": "token", + "expression": "Evidence.status", + "xpath": "f:Evidence/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Evidence-successor", + "resource": { + "resourceType": "SearchParameter", + "id": "Evidence-successor", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Evidence-successor", + "version": "4.0.1", + "name": "successor", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "successor", + "base": [ "Evidence" ], + "type": "reference", + "expression": "Evidence.relatedArtifact.where(type='successor').resource", + "xpath": "f:Evidence/f:relatedArtifact[f:type/@value='successor']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Evidence-title", + "resource": { + "resourceType": "SearchParameter", + "id": "Evidence-title", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Evidence-title", + "version": "4.0.1", + "name": "title", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The human-friendly name of the evidence", + "code": "title", + "base": [ "Evidence" ], + "type": "string", + "expression": "Evidence.title", + "xpath": "f:Evidence/f:title", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Evidence-topic", + "resource": { + "resourceType": "SearchParameter", + "id": "Evidence-topic", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Evidence-topic", + "version": "4.0.1", + "name": "topic", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Topics associated with the Evidence", + "code": "topic", + "base": [ "Evidence" ], + "type": "token", + "expression": "Evidence.topic", + "xpath": "f:Evidence/f:topic", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Evidence-url", + "resource": { + "resourceType": "SearchParameter", + "id": "Evidence-url", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Evidence-url", + "version": "4.0.1", + "name": "url", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The uri that identifies the evidence", + "code": "url", + "base": [ "Evidence" ], + "type": "uri", + "expression": "Evidence.url", + "xpath": "f:Evidence/f:url", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Evidence-version", + "resource": { + "resourceType": "SearchParameter", + "id": "Evidence-version", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Evidence-version", + "version": "4.0.1", + "name": "version", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The business version of the evidence", + "code": "version", + "base": [ "Evidence" ], + "type": "token", + "expression": "Evidence.version", + "xpath": "f:Evidence/f:version", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Evidence-context-type-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "Evidence-context-type-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Evidence-context-type-quantity", + "version": "4.0.1", + "name": "context-type-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A use context type and quantity- or range-based value assigned to the evidence", + "code": "context-type-quantity", + "base": [ "Evidence" ], + "type": "composite", + "expression": "Evidence.useContext", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/Evidence-context-type", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/Evidence-context-quantity", + "expression": "value.as(Quantity) | value.as(Range)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Evidence-context-type-value", + "resource": { + "resourceType": "SearchParameter", + "id": "Evidence-context-type-value", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Evidence-context-type-value", + "version": "4.0.1", + "name": "context-type-value", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A use context type and value assigned to the evidence", + "code": "context-type-value", + "base": [ "Evidence" ], + "type": "composite", + "expression": "Evidence.useContext", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/Evidence-context-type", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/Evidence-context", + "expression": "value.as(CodeableConcept)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-composed-of", + "resource": { + "resourceType": "SearchParameter", + "id": "EvidenceVariable-composed-of", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-composed-of", + "version": "4.0.1", + "name": "composed-of", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "composed-of", + "base": [ "EvidenceVariable" ], + "type": "reference", + "expression": "EvidenceVariable.relatedArtifact.where(type='composed-of').resource", + "xpath": "f:EvidenceVariable/f:relatedArtifact[f:type/@value='composed-of']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-context", + "resource": { + "resourceType": "SearchParameter", + "id": "EvidenceVariable-context", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-context", + "version": "4.0.1", + "name": "context", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A use context assigned to the evidence variable", + "code": "context", + "base": [ "EvidenceVariable" ], + "type": "token", + "expression": "(EvidenceVariable.useContext.value as CodeableConcept)", + "xpath": "f:EvidenceVariable/f:useContext/f:valueCodeableConcept", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-context-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "EvidenceVariable-context-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-context-quantity", + "version": "4.0.1", + "name": "context-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A quantity- or range-valued use context assigned to the evidence variable", + "code": "context-quantity", + "base": [ "EvidenceVariable" ], + "type": "quantity", + "expression": "(EvidenceVariable.useContext.value as Quantity) | (EvidenceVariable.useContext.value as Range)", + "xpath": "f:EvidenceVariable/f:useContext/f:valueQuantity | f:EvidenceVariable/f:useContext/f:valueRange", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-context-type", + "resource": { + "resourceType": "SearchParameter", + "id": "EvidenceVariable-context-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-context-type", + "version": "4.0.1", + "name": "context-type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A type of use context assigned to the evidence variable", + "code": "context-type", + "base": [ "EvidenceVariable" ], + "type": "token", + "expression": "EvidenceVariable.useContext.code", + "xpath": "f:EvidenceVariable/f:useContext/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-date", + "resource": { + "resourceType": "SearchParameter", + "id": "EvidenceVariable-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-date", + "version": "4.0.1", + "name": "date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The evidence variable publication date", + "code": "date", + "base": [ "EvidenceVariable" ], + "type": "date", + "expression": "EvidenceVariable.date", + "xpath": "f:EvidenceVariable/f:date", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-depends-on", + "resource": { + "resourceType": "SearchParameter", + "id": "EvidenceVariable-depends-on", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-depends-on", + "version": "4.0.1", + "name": "depends-on", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "depends-on", + "base": [ "EvidenceVariable" ], + "type": "reference", + "expression": "EvidenceVariable.relatedArtifact.where(type='depends-on').resource", + "xpath": "f:EvidenceVariable/f:relatedArtifact[f:type/@value='depends-on']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-derived-from", + "resource": { + "resourceType": "SearchParameter", + "id": "EvidenceVariable-derived-from", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-derived-from", + "version": "4.0.1", + "name": "derived-from", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "derived-from", + "base": [ "EvidenceVariable" ], + "type": "reference", + "expression": "EvidenceVariable.relatedArtifact.where(type='derived-from').resource", + "xpath": "f:EvidenceVariable/f:relatedArtifact[f:type/@value='derived-from']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-description", + "resource": { + "resourceType": "SearchParameter", + "id": "EvidenceVariable-description", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-description", + "version": "4.0.1", + "name": "description", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The description of the evidence variable", + "code": "description", + "base": [ "EvidenceVariable" ], + "type": "string", + "expression": "EvidenceVariable.description", + "xpath": "f:EvidenceVariable/f:description", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-effective", + "resource": { + "resourceType": "SearchParameter", + "id": "EvidenceVariable-effective", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-effective", + "version": "4.0.1", + "name": "effective", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The time during which the evidence variable is intended to be in use", + "code": "effective", + "base": [ "EvidenceVariable" ], + "type": "date", + "expression": "EvidenceVariable.effectivePeriod", + "xpath": "f:EvidenceVariable/f:effectivePeriod", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "EvidenceVariable-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "External identifier for the evidence variable", + "code": "identifier", + "base": [ "EvidenceVariable" ], + "type": "token", + "expression": "EvidenceVariable.identifier", + "xpath": "f:EvidenceVariable/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-jurisdiction", + "resource": { + "resourceType": "SearchParameter", + "id": "EvidenceVariable-jurisdiction", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-jurisdiction", + "version": "4.0.1", + "name": "jurisdiction", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Intended jurisdiction for the evidence variable", + "code": "jurisdiction", + "base": [ "EvidenceVariable" ], + "type": "token", + "expression": "EvidenceVariable.jurisdiction", + "xpath": "f:EvidenceVariable/f:jurisdiction", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-name", + "resource": { + "resourceType": "SearchParameter", + "id": "EvidenceVariable-name", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-name", + "version": "4.0.1", + "name": "name", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Computationally friendly name of the evidence variable", + "code": "name", + "base": [ "EvidenceVariable" ], + "type": "string", + "expression": "EvidenceVariable.name", + "xpath": "f:EvidenceVariable/f:name", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-predecessor", + "resource": { + "resourceType": "SearchParameter", + "id": "EvidenceVariable-predecessor", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-predecessor", + "version": "4.0.1", + "name": "predecessor", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "predecessor", + "base": [ "EvidenceVariable" ], + "type": "reference", + "expression": "EvidenceVariable.relatedArtifact.where(type='predecessor').resource", + "xpath": "f:EvidenceVariable/f:relatedArtifact[f:type/@value='predecessor']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-publisher", + "resource": { + "resourceType": "SearchParameter", + "id": "EvidenceVariable-publisher", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-publisher", + "version": "4.0.1", + "name": "publisher", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Name of the publisher of the evidence variable", + "code": "publisher", + "base": [ "EvidenceVariable" ], + "type": "string", + "expression": "EvidenceVariable.publisher", + "xpath": "f:EvidenceVariable/f:publisher", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-status", + "resource": { + "resourceType": "SearchParameter", + "id": "EvidenceVariable-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The current status of the evidence variable", + "code": "status", + "base": [ "EvidenceVariable" ], + "type": "token", + "expression": "EvidenceVariable.status", + "xpath": "f:EvidenceVariable/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-successor", + "resource": { + "resourceType": "SearchParameter", + "id": "EvidenceVariable-successor", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-successor", + "version": "4.0.1", + "name": "successor", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "successor", + "base": [ "EvidenceVariable" ], + "type": "reference", + "expression": "EvidenceVariable.relatedArtifact.where(type='successor').resource", + "xpath": "f:EvidenceVariable/f:relatedArtifact[f:type/@value='successor']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-title", + "resource": { + "resourceType": "SearchParameter", + "id": "EvidenceVariable-title", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-title", + "version": "4.0.1", + "name": "title", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The human-friendly name of the evidence variable", + "code": "title", + "base": [ "EvidenceVariable" ], + "type": "string", + "expression": "EvidenceVariable.title", + "xpath": "f:EvidenceVariable/f:title", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-topic", + "resource": { + "resourceType": "SearchParameter", + "id": "EvidenceVariable-topic", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-topic", + "version": "4.0.1", + "name": "topic", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Topics associated with the EvidenceVariable", + "code": "topic", + "base": [ "EvidenceVariable" ], + "type": "token", + "expression": "EvidenceVariable.topic", + "xpath": "f:EvidenceVariable/f:topic", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-url", + "resource": { + "resourceType": "SearchParameter", + "id": "EvidenceVariable-url", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-url", + "version": "4.0.1", + "name": "url", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The uri that identifies the evidence variable", + "code": "url", + "base": [ "EvidenceVariable" ], + "type": "uri", + "expression": "EvidenceVariable.url", + "xpath": "f:EvidenceVariable/f:url", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-version", + "resource": { + "resourceType": "SearchParameter", + "id": "EvidenceVariable-version", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-version", + "version": "4.0.1", + "name": "version", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The business version of the evidence variable", + "code": "version", + "base": [ "EvidenceVariable" ], + "type": "token", + "expression": "EvidenceVariable.version", + "xpath": "f:EvidenceVariable/f:version", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-context-type-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "EvidenceVariable-context-type-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-context-type-quantity", + "version": "4.0.1", + "name": "context-type-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A use context type and quantity- or range-based value assigned to the evidence variable", + "code": "context-type-quantity", + "base": [ "EvidenceVariable" ], + "type": "composite", + "expression": "EvidenceVariable.useContext", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-context-type", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-context-quantity", + "expression": "value.as(Quantity) | value.as(Range)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-context-type-value", + "resource": { + "resourceType": "SearchParameter", + "id": "EvidenceVariable-context-type-value", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-context-type-value", + "version": "4.0.1", + "name": "context-type-value", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A use context type and value assigned to the evidence variable", + "code": "context-type-value", + "base": [ "EvidenceVariable" ], + "type": "composite", + "expression": "EvidenceVariable.useContext", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-context-type", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/EvidenceVariable-context", + "expression": "value.as(CodeableConcept)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ExampleScenario-context", + "resource": { + "resourceType": "SearchParameter", + "id": "ExampleScenario-context", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ExampleScenario-context", + "version": "4.0.1", + "name": "context", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "A use context assigned to the example scenario", + "code": "context", + "base": [ "ExampleScenario" ], + "type": "token", + "expression": "(ExampleScenario.useContext.value as CodeableConcept)", + "xpath": "f:ExampleScenario/f:useContext/f:valueCodeableConcept", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ExampleScenario-context-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "ExampleScenario-context-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ExampleScenario-context-quantity", + "version": "4.0.1", + "name": "context-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "A quantity- or range-valued use context assigned to the example scenario", + "code": "context-quantity", + "base": [ "ExampleScenario" ], + "type": "quantity", + "expression": "(ExampleScenario.useContext.value as Quantity) | (ExampleScenario.useContext.value as Range)", + "xpath": "f:ExampleScenario/f:useContext/f:valueQuantity | f:ExampleScenario/f:useContext/f:valueRange", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ExampleScenario-context-type", + "resource": { + "resourceType": "SearchParameter", + "id": "ExampleScenario-context-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ExampleScenario-context-type", + "version": "4.0.1", + "name": "context-type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "A type of use context assigned to the example scenario", + "code": "context-type", + "base": [ "ExampleScenario" ], + "type": "token", + "expression": "ExampleScenario.useContext.code", + "xpath": "f:ExampleScenario/f:useContext/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ExampleScenario-date", + "resource": { + "resourceType": "SearchParameter", + "id": "ExampleScenario-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ExampleScenario-date", + "version": "4.0.1", + "name": "date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The example scenario publication date", + "code": "date", + "base": [ "ExampleScenario" ], + "type": "date", + "expression": "ExampleScenario.date", + "xpath": "f:ExampleScenario/f:date", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ExampleScenario-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "ExampleScenario-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ExampleScenario-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "External identifier for the example scenario", + "code": "identifier", + "base": [ "ExampleScenario" ], + "type": "token", + "expression": "ExampleScenario.identifier", + "xpath": "f:ExampleScenario/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ExampleScenario-jurisdiction", + "resource": { + "resourceType": "SearchParameter", + "id": "ExampleScenario-jurisdiction", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ExampleScenario-jurisdiction", + "version": "4.0.1", + "name": "jurisdiction", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Intended jurisdiction for the example scenario", + "code": "jurisdiction", + "base": [ "ExampleScenario" ], + "type": "token", + "expression": "ExampleScenario.jurisdiction", + "xpath": "f:ExampleScenario/f:jurisdiction", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ExampleScenario-name", + "resource": { + "resourceType": "SearchParameter", + "id": "ExampleScenario-name", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ExampleScenario-name", + "version": "4.0.1", + "name": "name", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Computationally friendly name of the example scenario", + "code": "name", + "base": [ "ExampleScenario" ], + "type": "string", + "expression": "ExampleScenario.name", + "xpath": "f:ExampleScenario/f:name", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ExampleScenario-publisher", + "resource": { + "resourceType": "SearchParameter", + "id": "ExampleScenario-publisher", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ExampleScenario-publisher", + "version": "4.0.1", + "name": "publisher", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Name of the publisher of the example scenario", + "code": "publisher", + "base": [ "ExampleScenario" ], + "type": "string", + "expression": "ExampleScenario.publisher", + "xpath": "f:ExampleScenario/f:publisher", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ExampleScenario-status", + "resource": { + "resourceType": "SearchParameter", + "id": "ExampleScenario-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ExampleScenario-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The current status of the example scenario", + "code": "status", + "base": [ "ExampleScenario" ], + "type": "token", + "expression": "ExampleScenario.status", + "xpath": "f:ExampleScenario/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ExampleScenario-url", + "resource": { + "resourceType": "SearchParameter", + "id": "ExampleScenario-url", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ExampleScenario-url", + "version": "4.0.1", + "name": "url", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The uri that identifies the example scenario", + "code": "url", + "base": [ "ExampleScenario" ], + "type": "uri", + "expression": "ExampleScenario.url", + "xpath": "f:ExampleScenario/f:url", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ExampleScenario-version", + "resource": { + "resourceType": "SearchParameter", + "id": "ExampleScenario-version", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ExampleScenario-version", + "version": "4.0.1", + "name": "version", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The business version of the example scenario", + "code": "version", + "base": [ "ExampleScenario" ], + "type": "token", + "expression": "ExampleScenario.version", + "xpath": "f:ExampleScenario/f:version", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ExampleScenario-context-type-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "ExampleScenario-context-type-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ExampleScenario-context-type-quantity", + "version": "4.0.1", + "name": "context-type-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "A use context type and quantity- or range-based value assigned to the example scenario", + "code": "context-type-quantity", + "base": [ "ExampleScenario" ], + "type": "composite", + "expression": "ExampleScenario.useContext", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/ExampleScenario-context-type", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/ExampleScenario-context-quantity", + "expression": "value.as(Quantity) | value.as(Range)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ExampleScenario-context-type-value", + "resource": { + "resourceType": "SearchParameter", + "id": "ExampleScenario-context-type-value", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ExampleScenario-context-type-value", + "version": "4.0.1", + "name": "context-type-value", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "A use context type and value assigned to the example scenario", + "code": "context-type-value", + "base": [ "ExampleScenario" ], + "type": "composite", + "expression": "ExampleScenario.useContext", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/ExampleScenario-context-type", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/ExampleScenario-context", + "expression": "value.as(CodeableConcept)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ExplanationOfBenefit-care-team", + "resource": { + "resourceType": "SearchParameter", + "id": "ExplanationOfBenefit-care-team", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ExplanationOfBenefit-care-team", + "version": "4.0.1", + "name": "care-team", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "Member of the CareTeam", + "code": "care-team", + "base": [ "ExplanationOfBenefit" ], + "type": "reference", + "expression": "ExplanationOfBenefit.careTeam.provider", + "xpath": "f:ExplanationOfBenefit/f:careTeam/f:provider", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ExplanationOfBenefit-claim", + "resource": { + "resourceType": "SearchParameter", + "id": "ExplanationOfBenefit-claim", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ExplanationOfBenefit-claim", + "version": "4.0.1", + "name": "claim", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The reference to the claim", + "code": "claim", + "base": [ "ExplanationOfBenefit" ], + "type": "reference", + "expression": "ExplanationOfBenefit.claim", + "xpath": "f:ExplanationOfBenefit/f:claim", + "xpathUsage": "normal", + "target": [ "Claim" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ExplanationOfBenefit-coverage", + "resource": { + "resourceType": "SearchParameter", + "id": "ExplanationOfBenefit-coverage", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ExplanationOfBenefit-coverage", + "version": "4.0.1", + "name": "coverage", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The plan under which the claim was adjudicated", + "code": "coverage", + "base": [ "ExplanationOfBenefit" ], + "type": "reference", + "expression": "ExplanationOfBenefit.insurance.coverage", + "xpath": "f:ExplanationOfBenefit/f:insurance/f:coverage", + "xpathUsage": "normal", + "target": [ "Coverage" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ExplanationOfBenefit-created", + "resource": { + "resourceType": "SearchParameter", + "id": "ExplanationOfBenefit-created", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ExplanationOfBenefit-created", + "version": "4.0.1", + "name": "created", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The creation date for the EOB", + "code": "created", + "base": [ "ExplanationOfBenefit" ], + "type": "date", + "expression": "ExplanationOfBenefit.created", + "xpath": "f:ExplanationOfBenefit/f:created", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ExplanationOfBenefit-detail-udi", + "resource": { + "resourceType": "SearchParameter", + "id": "ExplanationOfBenefit-detail-udi", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ExplanationOfBenefit-detail-udi", + "version": "4.0.1", + "name": "detail-udi", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "UDI associated with a line item detail product or service", + "code": "detail-udi", + "base": [ "ExplanationOfBenefit" ], + "type": "reference", + "expression": "ExplanationOfBenefit.item.detail.udi", + "xpath": "f:ExplanationOfBenefit/f:item/f:detail/f:udi", + "xpathUsage": "normal", + "target": [ "Device" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ExplanationOfBenefit-disposition", + "resource": { + "resourceType": "SearchParameter", + "id": "ExplanationOfBenefit-disposition", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ExplanationOfBenefit-disposition", + "version": "4.0.1", + "name": "disposition", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The contents of the disposition message", + "code": "disposition", + "base": [ "ExplanationOfBenefit" ], + "type": "string", + "expression": "ExplanationOfBenefit.disposition", + "xpath": "f:ExplanationOfBenefit/f:disposition", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ExplanationOfBenefit-encounter", + "resource": { + "resourceType": "SearchParameter", + "id": "ExplanationOfBenefit-encounter", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ExplanationOfBenefit-encounter", + "version": "4.0.1", + "name": "encounter", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "Encounters associated with a billed line item", + "code": "encounter", + "base": [ "ExplanationOfBenefit" ], + "type": "reference", + "expression": "ExplanationOfBenefit.item.encounter", + "xpath": "f:ExplanationOfBenefit/f:item/f:encounter", + "xpathUsage": "normal", + "target": [ "Encounter" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ExplanationOfBenefit-enterer", + "resource": { + "resourceType": "SearchParameter", + "id": "ExplanationOfBenefit-enterer", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ExplanationOfBenefit-enterer", + "version": "4.0.1", + "name": "enterer", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The party responsible for the entry of the Claim", + "code": "enterer", + "base": [ "ExplanationOfBenefit" ], + "type": "reference", + "expression": "ExplanationOfBenefit.enterer", + "xpath": "f:ExplanationOfBenefit/f:enterer", + "xpathUsage": "normal", + "target": [ "Practitioner", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ExplanationOfBenefit-facility", + "resource": { + "resourceType": "SearchParameter", + "id": "ExplanationOfBenefit-facility", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ExplanationOfBenefit-facility", + "version": "4.0.1", + "name": "facility", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "Facility responsible for the goods and services", + "code": "facility", + "base": [ "ExplanationOfBenefit" ], + "type": "reference", + "expression": "ExplanationOfBenefit.facility", + "xpath": "f:ExplanationOfBenefit/f:facility", + "xpathUsage": "normal", + "target": [ "Location" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ExplanationOfBenefit-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "ExplanationOfBenefit-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ExplanationOfBenefit-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The business identifier of the Explanation of Benefit", + "code": "identifier", + "base": [ "ExplanationOfBenefit" ], + "type": "token", + "expression": "ExplanationOfBenefit.identifier", + "xpath": "f:ExplanationOfBenefit/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ExplanationOfBenefit-item-udi", + "resource": { + "resourceType": "SearchParameter", + "id": "ExplanationOfBenefit-item-udi", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ExplanationOfBenefit-item-udi", + "version": "4.0.1", + "name": "item-udi", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "UDI associated with a line item product or service", + "code": "item-udi", + "base": [ "ExplanationOfBenefit" ], + "type": "reference", + "expression": "ExplanationOfBenefit.item.udi", + "xpath": "f:ExplanationOfBenefit/f:item/f:udi", + "xpathUsage": "normal", + "target": [ "Device" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ExplanationOfBenefit-patient", + "resource": { + "resourceType": "SearchParameter", + "id": "ExplanationOfBenefit-patient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ExplanationOfBenefit-patient", + "version": "4.0.1", + "name": "patient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The reference to the patient", + "code": "patient", + "base": [ "ExplanationOfBenefit" ], + "type": "reference", + "expression": "ExplanationOfBenefit.patient", + "xpath": "f:ExplanationOfBenefit/f:patient", + "xpathUsage": "normal", + "target": [ "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ExplanationOfBenefit-payee", + "resource": { + "resourceType": "SearchParameter", + "id": "ExplanationOfBenefit-payee", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ExplanationOfBenefit-payee", + "version": "4.0.1", + "name": "payee", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The party receiving any payment for the Claim", + "code": "payee", + "base": [ "ExplanationOfBenefit" ], + "type": "reference", + "expression": "ExplanationOfBenefit.payee.party", + "xpath": "f:ExplanationOfBenefit/f:payee/f:party", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ExplanationOfBenefit-procedure-udi", + "resource": { + "resourceType": "SearchParameter", + "id": "ExplanationOfBenefit-procedure-udi", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ExplanationOfBenefit-procedure-udi", + "version": "4.0.1", + "name": "procedure-udi", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "UDI associated with a procedure", + "code": "procedure-udi", + "base": [ "ExplanationOfBenefit" ], + "type": "reference", + "expression": "ExplanationOfBenefit.procedure.udi", + "xpath": "f:ExplanationOfBenefit/f:procedure/f:udi", + "xpathUsage": "normal", + "target": [ "Device" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ExplanationOfBenefit-provider", + "resource": { + "resourceType": "SearchParameter", + "id": "ExplanationOfBenefit-provider", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ExplanationOfBenefit-provider", + "version": "4.0.1", + "name": "provider", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The reference to the provider", + "code": "provider", + "base": [ "ExplanationOfBenefit" ], + "type": "reference", + "expression": "ExplanationOfBenefit.provider", + "xpath": "f:ExplanationOfBenefit/f:provider", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ExplanationOfBenefit-status", + "resource": { + "resourceType": "SearchParameter", + "id": "ExplanationOfBenefit-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ExplanationOfBenefit-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "Status of the instance", + "code": "status", + "base": [ "ExplanationOfBenefit" ], + "type": "token", + "expression": "ExplanationOfBenefit.status", + "xpath": "f:ExplanationOfBenefit/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ExplanationOfBenefit-subdetail-udi", + "resource": { + "resourceType": "SearchParameter", + "id": "ExplanationOfBenefit-subdetail-udi", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ExplanationOfBenefit-subdetail-udi", + "version": "4.0.1", + "name": "subdetail-udi", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "UDI associated with a line item detail subdetail product or service", + "code": "subdetail-udi", + "base": [ "ExplanationOfBenefit" ], + "type": "reference", + "expression": "ExplanationOfBenefit.item.detail.subDetail.udi", + "xpath": "f:ExplanationOfBenefit/f:item/f:detail/f:subDetail/f:udi", + "xpathUsage": "normal", + "target": [ "Device" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/FamilyMemberHistory-instantiates-canonical", + "resource": { + "resourceType": "SearchParameter", + "id": "FamilyMemberHistory-instantiates-canonical", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/FamilyMemberHistory-instantiates-canonical", + "version": "4.0.1", + "name": "instantiates-canonical", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Instantiates FHIR protocol or definition", + "code": "instantiates-canonical", + "base": [ "FamilyMemberHistory" ], + "type": "reference", + "expression": "FamilyMemberHistory.instantiatesCanonical", + "xpath": "f:FamilyMemberHistory/f:instantiatesCanonical", + "xpathUsage": "normal", + "target": [ "Questionnaire", "Measure", "PlanDefinition", "OperationDefinition", "ActivityDefinition" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/FamilyMemberHistory-instantiates-uri", + "resource": { + "resourceType": "SearchParameter", + "id": "FamilyMemberHistory-instantiates-uri", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/FamilyMemberHistory-instantiates-uri", + "version": "4.0.1", + "name": "instantiates-uri", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Instantiates external protocol or definition", + "code": "instantiates-uri", + "base": [ "FamilyMemberHistory" ], + "type": "uri", + "expression": "FamilyMemberHistory.instantiatesUri", + "xpath": "f:FamilyMemberHistory/f:instantiatesUri", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/FamilyMemberHistory-relationship", + "resource": { + "resourceType": "SearchParameter", + "id": "FamilyMemberHistory-relationship", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/FamilyMemberHistory-relationship", + "version": "4.0.1", + "name": "relationship", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "A search by a relationship type", + "code": "relationship", + "base": [ "FamilyMemberHistory" ], + "type": "token", + "expression": "FamilyMemberHistory.relationship", + "xpath": "f:FamilyMemberHistory/f:relationship", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/FamilyMemberHistory-sex", + "resource": { + "resourceType": "SearchParameter", + "id": "FamilyMemberHistory-sex", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/FamilyMemberHistory-sex", + "version": "4.0.1", + "name": "sex", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "A search by a sex code of a family member", + "code": "sex", + "base": [ "FamilyMemberHistory" ], + "type": "token", + "expression": "FamilyMemberHistory.sex", + "xpath": "f:FamilyMemberHistory/f:sex", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/FamilyMemberHistory-status", + "resource": { + "resourceType": "SearchParameter", + "id": "FamilyMemberHistory-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/FamilyMemberHistory-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "partial | completed | entered-in-error | health-unknown", + "code": "status", + "base": [ "FamilyMemberHistory" ], + "type": "token", + "expression": "FamilyMemberHistory.status", + "xpath": "f:FamilyMemberHistory/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Flag-author", + "resource": { + "resourceType": "SearchParameter", + "id": "Flag-author", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Flag-author", + "version": "4.0.1", + "name": "author", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Flag creator", + "code": "author", + "base": [ "Flag" ], + "type": "reference", + "expression": "Flag.author", + "xpath": "f:Flag/f:author", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "Device", "Patient", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Flag-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "Flag-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Flag-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Business identifier", + "code": "identifier", + "base": [ "Flag" ], + "type": "token", + "expression": "Flag.identifier", + "xpath": "f:Flag/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Flag-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "Flag-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Flag-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "The identity of a subject to list flags for", + "code": "subject", + "base": [ "Flag" ], + "type": "reference", + "expression": "Flag.subject", + "xpath": "f:Flag/f:subject", + "xpathUsage": "normal", + "target": [ "Practitioner", "Group", "Organization", "Medication", "Patient", "PlanDefinition", "Procedure", "Location" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Goal-achievement-status", + "resource": { + "resourceType": "SearchParameter", + "id": "Goal-achievement-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Goal-achievement-status", + "version": "4.0.1", + "name": "achievement-status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "in-progress | improving | worsening | no-change | achieved | sustaining | not-achieved | no-progress | not-attainable", + "code": "achievement-status", + "base": [ "Goal" ], + "type": "token", + "expression": "Goal.achievementStatus", + "xpath": "f:Goal/f:achievementStatus", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Goal-category", + "resource": { + "resourceType": "SearchParameter", + "id": "Goal-category", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Goal-category", + "version": "4.0.1", + "name": "category", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "E.g. Treatment, dietary, behavioral, etc.", + "code": "category", + "base": [ "Goal" ], + "type": "token", + "expression": "Goal.category", + "xpath": "f:Goal/f:category", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Goal-lifecycle-status", + "resource": { + "resourceType": "SearchParameter", + "id": "Goal-lifecycle-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Goal-lifecycle-status", + "version": "4.0.1", + "name": "lifecycle-status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "proposed | planned | accepted | active | on-hold | completed | cancelled | entered-in-error | rejected", + "code": "lifecycle-status", + "base": [ "Goal" ], + "type": "token", + "expression": "Goal.lifecycleStatus", + "xpath": "f:Goal/f:lifecycleStatus", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Goal-start-date", + "resource": { + "resourceType": "SearchParameter", + "id": "Goal-start-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Goal-start-date", + "version": "4.0.1", + "name": "start-date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "When goal pursuit begins", + "code": "start-date", + "base": [ "Goal" ], + "type": "date", + "expression": "(Goal.start as date)", + "xpath": "f:Goal/f:startDate", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Goal-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "Goal-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Goal-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Who this goal is intended for", + "code": "subject", + "base": [ "Goal" ], + "type": "reference", + "expression": "Goal.subject", + "xpath": "f:Goal/f:subject", + "xpathUsage": "normal", + "target": [ "Group", "Organization", "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Goal-target-date", + "resource": { + "resourceType": "SearchParameter", + "id": "Goal-target-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Goal-target-date", + "version": "4.0.1", + "name": "target-date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Reach goal on or before", + "code": "target-date", + "base": [ "Goal" ], + "type": "date", + "expression": "(Goal.target.due as date)", + "xpath": "f:Goal/f:target/f:dueDate", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/GraphDefinition-start", + "resource": { + "resourceType": "SearchParameter", + "id": "GraphDefinition-start", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/GraphDefinition-start", + "version": "4.0.1", + "name": "start", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Type of resource at which the graph starts", + "code": "start", + "base": [ "GraphDefinition" ], + "type": "token", + "expression": "GraphDefinition.start", + "xpath": "f:GraphDefinition/f:start", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Group-actual", + "resource": { + "resourceType": "SearchParameter", + "id": "Group-actual", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Group-actual", + "version": "4.0.1", + "name": "actual", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Descriptive or actual", + "code": "actual", + "base": [ "Group" ], + "type": "token", + "expression": "Group.actual", + "xpath": "f:Group/f:actual", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Group-characteristic", + "resource": { + "resourceType": "SearchParameter", + "id": "Group-characteristic", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Group-characteristic", + "version": "4.0.1", + "name": "characteristic", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Kind of characteristic", + "code": "characteristic", + "base": [ "Group" ], + "type": "token", + "expression": "Group.characteristic.code", + "xpath": "f:Group/f:characteristic/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Group-code", + "resource": { + "resourceType": "SearchParameter", + "id": "Group-code", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Group-code", + "version": "4.0.1", + "name": "code", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The kind of resources contained", + "code": "code", + "base": [ "Group" ], + "type": "token", + "expression": "Group.code", + "xpath": "f:Group/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Group-exclude", + "resource": { + "resourceType": "SearchParameter", + "id": "Group-exclude", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Group-exclude", + "version": "4.0.1", + "name": "exclude", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Group includes or excludes", + "code": "exclude", + "base": [ "Group" ], + "type": "token", + "expression": "Group.characteristic.exclude", + "xpath": "f:Group/f:characteristic/f:exclude", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Group-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "Group-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Group-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Unique id", + "code": "identifier", + "base": [ "Group" ], + "type": "token", + "expression": "Group.identifier", + "xpath": "f:Group/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Group-managing-entity", + "resource": { + "resourceType": "SearchParameter", + "id": "Group-managing-entity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Group-managing-entity", + "version": "4.0.1", + "name": "managing-entity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Entity that is the custodian of the Group's definition", + "code": "managing-entity", + "base": [ "Group" ], + "type": "reference", + "expression": "Group.managingEntity", + "xpath": "f:Group/f:managingEntity", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Group-member", + "resource": { + "resourceType": "SearchParameter", + "id": "Group-member", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Group-member", + "version": "4.0.1", + "name": "member", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Reference to the group member", + "code": "member", + "base": [ "Group" ], + "type": "reference", + "expression": "Group.member.entity", + "xpath": "f:Group/f:member/f:entity", + "xpathUsage": "normal", + "target": [ "Practitioner", "Group", "Device", "Medication", "Patient", "Substance", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Group-type", + "resource": { + "resourceType": "SearchParameter", + "id": "Group-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Group-type", + "version": "4.0.1", + "name": "type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The type of resources the group contains", + "code": "type", + "base": [ "Group" ], + "type": "token", + "expression": "Group.type", + "xpath": "f:Group/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Group-value", + "resource": { + "resourceType": "SearchParameter", + "id": "Group-value", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Group-value", + "version": "4.0.1", + "name": "value", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Value held by characteristic", + "code": "value", + "base": [ "Group" ], + "type": "token", + "expression": "(Group.characteristic.value as CodeableConcept) | (Group.characteristic.value as boolean)", + "xpath": "f:Group/f:characteristic/f:valueCodeableConcept | f:Group/f:characteristic/f:valueBoolean | f:Group/f:characteristic/f:valueQuantity | f:Group/f:characteristic/f:valueRange | f:Group/f:characteristic/f:valueReference", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Group-characteristic-value", + "resource": { + "resourceType": "SearchParameter", + "id": "Group-characteristic-value", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Group-characteristic-value", + "version": "4.0.1", + "name": "characteristic-value", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "A composite of both characteristic and value", + "code": "characteristic-value", + "base": [ "Group" ], + "type": "composite", + "expression": "Group.characteristic", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/Group-characteristic", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/Group-value", + "expression": "value" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/GuidanceResponse-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "GuidanceResponse-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/GuidanceResponse-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The identifier of the guidance response", + "code": "identifier", + "base": [ "GuidanceResponse" ], + "type": "token", + "expression": "GuidanceResponse.identifier", + "xpath": "f:GuidanceResponse/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/GuidanceResponse-patient", + "resource": { + "resourceType": "SearchParameter", + "id": "GuidanceResponse-patient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/GuidanceResponse-patient", + "version": "4.0.1", + "name": "patient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The identity of a patient to search for guidance response results", + "code": "patient", + "base": [ "GuidanceResponse" ], + "type": "reference", + "expression": "GuidanceResponse.subject.where(resolve() is Patient)", + "xpath": "f:GuidanceResponse/f:subject", + "xpathUsage": "normal", + "target": [ "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/GuidanceResponse-request", + "resource": { + "resourceType": "SearchParameter", + "id": "GuidanceResponse-request", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/GuidanceResponse-request", + "version": "4.0.1", + "name": "request", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The identifier of the request associated with the response", + "code": "request", + "base": [ "GuidanceResponse" ], + "type": "token", + "expression": "GuidanceResponse.requestIdentifier", + "xpath": "f:GuidanceResponse/f:requestIdentifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/GuidanceResponse-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "GuidanceResponse-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/GuidanceResponse-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The subject that the guidance response is about", + "code": "subject", + "base": [ "GuidanceResponse" ], + "type": "reference", + "expression": "GuidanceResponse.subject", + "xpath": "f:GuidanceResponse/f:subject", + "xpathUsage": "normal", + "target": [ "Group", "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/HealthcareService-active", + "resource": { + "resourceType": "SearchParameter", + "id": "HealthcareService-active", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/HealthcareService-active", + "version": "4.0.1", + "name": "active", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The Healthcare Service is currently marked as active", + "code": "active", + "base": [ "HealthcareService" ], + "type": "token", + "expression": "HealthcareService.active", + "xpath": "f:HealthcareService/f:active", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/HealthcareService-characteristic", + "resource": { + "resourceType": "SearchParameter", + "id": "HealthcareService-characteristic", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/HealthcareService-characteristic", + "version": "4.0.1", + "name": "characteristic", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "One of the HealthcareService's characteristics", + "code": "characteristic", + "base": [ "HealthcareService" ], + "type": "token", + "expression": "HealthcareService.characteristic", + "xpath": "f:HealthcareService/f:characteristic", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/HealthcareService-coverage-area", + "resource": { + "resourceType": "SearchParameter", + "id": "HealthcareService-coverage-area", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/HealthcareService-coverage-area", + "version": "4.0.1", + "name": "coverage-area", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Location(s) service is intended for/available to", + "code": "coverage-area", + "base": [ "HealthcareService" ], + "type": "reference", + "expression": "HealthcareService.coverageArea", + "xpath": "f:HealthcareService/f:coverageArea", + "xpathUsage": "normal", + "target": [ "Location" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/HealthcareService-endpoint", + "resource": { + "resourceType": "SearchParameter", + "id": "HealthcareService-endpoint", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/HealthcareService-endpoint", + "version": "4.0.1", + "name": "endpoint", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Technical endpoints providing access to electronic services operated for the healthcare service", + "code": "endpoint", + "base": [ "HealthcareService" ], + "type": "reference", + "expression": "HealthcareService.endpoint", + "xpath": "f:HealthcareService/f:endpoint", + "xpathUsage": "normal", + "target": [ "Endpoint" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/HealthcareService-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "HealthcareService-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/HealthcareService-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "External identifiers for this item", + "code": "identifier", + "base": [ "HealthcareService" ], + "type": "token", + "expression": "HealthcareService.identifier", + "xpath": "f:HealthcareService/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/HealthcareService-location", + "resource": { + "resourceType": "SearchParameter", + "id": "HealthcareService-location", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/HealthcareService-location", + "version": "4.0.1", + "name": "location", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The location of the Healthcare Service", + "code": "location", + "base": [ "HealthcareService" ], + "type": "reference", + "expression": "HealthcareService.location", + "xpath": "f:HealthcareService/f:location", + "xpathUsage": "normal", + "target": [ "Location" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/HealthcareService-name", + "resource": { + "resourceType": "SearchParameter", + "id": "HealthcareService-name", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/HealthcareService-name", + "version": "4.0.1", + "name": "name", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A portion of the Healthcare service name", + "code": "name", + "base": [ "HealthcareService" ], + "type": "string", + "expression": "HealthcareService.name", + "xpath": "f:HealthcareService/f:name", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/HealthcareService-organization", + "resource": { + "resourceType": "SearchParameter", + "id": "HealthcareService-organization", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/HealthcareService-organization", + "version": "4.0.1", + "name": "organization", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The organization that provides this Healthcare Service", + "code": "organization", + "base": [ "HealthcareService" ], + "type": "reference", + "expression": "HealthcareService.providedBy", + "xpath": "f:HealthcareService/f:providedBy", + "xpathUsage": "normal", + "target": [ "Organization" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/HealthcareService-program", + "resource": { + "resourceType": "SearchParameter", + "id": "HealthcareService-program", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/HealthcareService-program", + "version": "4.0.1", + "name": "program", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "One of the Programs supported by this HealthcareService", + "code": "program", + "base": [ "HealthcareService" ], + "type": "token", + "expression": "HealthcareService.program", + "xpath": "f:HealthcareService/f:program", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/HealthcareService-service-category", + "resource": { + "resourceType": "SearchParameter", + "id": "HealthcareService-service-category", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/HealthcareService-service-category", + "version": "4.0.1", + "name": "service-category", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Service Category of the Healthcare Service", + "code": "service-category", + "base": [ "HealthcareService" ], + "type": "token", + "expression": "HealthcareService.category", + "xpath": "f:HealthcareService/f:category", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/HealthcareService-service-type", + "resource": { + "resourceType": "SearchParameter", + "id": "HealthcareService-service-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/HealthcareService-service-type", + "version": "4.0.1", + "name": "service-type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The type of service provided by this healthcare service", + "code": "service-type", + "base": [ "HealthcareService" ], + "type": "token", + "expression": "HealthcareService.type", + "xpath": "f:HealthcareService/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/HealthcareService-specialty", + "resource": { + "resourceType": "SearchParameter", + "id": "HealthcareService-specialty", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/HealthcareService-specialty", + "version": "4.0.1", + "name": "specialty", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The specialty of the service provided by this healthcare service", + "code": "specialty", + "base": [ "HealthcareService" ], + "type": "token", + "expression": "HealthcareService.specialty", + "xpath": "f:HealthcareService/f:specialty", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ImagingStudy-basedon", + "resource": { + "resourceType": "SearchParameter", + "id": "ImagingStudy-basedon", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ImagingStudy-basedon", + "version": "4.0.1", + "name": "basedon", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Imaging Integration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/imagemgt/index.cfm" + } ] + } ], + "description": "The order for the image", + "code": "basedon", + "base": [ "ImagingStudy" ], + "type": "reference", + "expression": "ImagingStudy.basedOn", + "xpath": "f:ImagingStudy/f:basedOn", + "xpathUsage": "normal", + "target": [ "Appointment", "AppointmentResponse", "CarePlan", "Task", "ServiceRequest" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ImagingStudy-bodysite", + "resource": { + "resourceType": "SearchParameter", + "id": "ImagingStudy-bodysite", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ImagingStudy-bodysite", + "version": "4.0.1", + "name": "bodysite", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Imaging Integration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/imagemgt/index.cfm" + } ] + } ], + "description": "The body site studied", + "code": "bodysite", + "base": [ "ImagingStudy" ], + "type": "token", + "expression": "ImagingStudy.series.bodySite", + "xpath": "f:ImagingStudy/f:series/f:bodySite", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ImagingStudy-dicom-class", + "resource": { + "resourceType": "SearchParameter", + "id": "ImagingStudy-dicom-class", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ImagingStudy-dicom-class", + "version": "4.0.1", + "name": "dicom-class", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Imaging Integration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/imagemgt/index.cfm" + } ] + } ], + "description": "The type of the instance", + "code": "dicom-class", + "base": [ "ImagingStudy" ], + "type": "token", + "expression": "ImagingStudy.series.instance.sopClass", + "xpath": "f:ImagingStudy/f:series/f:instance/f:sopClass", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ImagingStudy-encounter", + "resource": { + "resourceType": "SearchParameter", + "id": "ImagingStudy-encounter", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ImagingStudy-encounter", + "version": "4.0.1", + "name": "encounter", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Imaging Integration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/imagemgt/index.cfm" + } ] + } ], + "description": "The context of the study", + "code": "encounter", + "base": [ "ImagingStudy" ], + "type": "reference", + "expression": "ImagingStudy.encounter", + "xpath": "f:ImagingStudy/f:encounter", + "xpathUsage": "normal", + "target": [ "Encounter" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ImagingStudy-endpoint", + "resource": { + "resourceType": "SearchParameter", + "id": "ImagingStudy-endpoint", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ImagingStudy-endpoint", + "version": "4.0.1", + "name": "endpoint", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Imaging Integration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/imagemgt/index.cfm" + } ] + } ], + "description": "The endpoint for the study or series", + "code": "endpoint", + "base": [ "ImagingStudy" ], + "type": "reference", + "expression": "ImagingStudy.endpoint | ImagingStudy.series.endpoint", + "xpath": "f:ImagingStudy/f:endpoint | f:ImagingStudy/f:series/f:endpoint", + "xpathUsage": "normal", + "target": [ "Endpoint" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ImagingStudy-instance", + "resource": { + "resourceType": "SearchParameter", + "id": "ImagingStudy-instance", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ImagingStudy-instance", + "version": "4.0.1", + "name": "instance", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Imaging Integration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/imagemgt/index.cfm" + } ] + } ], + "description": "SOP Instance UID for an instance", + "code": "instance", + "base": [ "ImagingStudy" ], + "type": "token", + "expression": "ImagingStudy.series.instance.uid", + "xpath": "f:ImagingStudy/f:series/f:instance/f:uid", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ImagingStudy-interpreter", + "resource": { + "resourceType": "SearchParameter", + "id": "ImagingStudy-interpreter", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ImagingStudy-interpreter", + "version": "4.0.1", + "name": "interpreter", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Imaging Integration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/imagemgt/index.cfm" + } ] + } ], + "description": "Who interpreted the images", + "code": "interpreter", + "base": [ "ImagingStudy" ], + "type": "reference", + "expression": "ImagingStudy.interpreter", + "xpath": "f:ImagingStudy/f:interpreter", + "xpathUsage": "normal", + "target": [ "Practitioner", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ImagingStudy-modality", + "resource": { + "resourceType": "SearchParameter", + "id": "ImagingStudy-modality", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ImagingStudy-modality", + "version": "4.0.1", + "name": "modality", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Imaging Integration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/imagemgt/index.cfm" + } ] + } ], + "description": "The modality of the series", + "code": "modality", + "base": [ "ImagingStudy" ], + "type": "token", + "expression": "ImagingStudy.series.modality", + "xpath": "f:ImagingStudy/f:series/f:modality", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ImagingStudy-performer", + "resource": { + "resourceType": "SearchParameter", + "id": "ImagingStudy-performer", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ImagingStudy-performer", + "version": "4.0.1", + "name": "performer", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Imaging Integration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/imagemgt/index.cfm" + } ] + } ], + "description": "The person who performed the study", + "code": "performer", + "base": [ "ImagingStudy" ], + "type": "reference", + "expression": "ImagingStudy.series.performer.actor", + "xpath": "f:ImagingStudy/f:series/f:performer/f:actor", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "CareTeam", "Device", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ImagingStudy-reason", + "resource": { + "resourceType": "SearchParameter", + "id": "ImagingStudy-reason", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ImagingStudy-reason", + "version": "4.0.1", + "name": "reason", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Imaging Integration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/imagemgt/index.cfm" + } ] + } ], + "description": "The reason for the study", + "code": "reason", + "base": [ "ImagingStudy" ], + "type": "token", + "expression": "ImagingStudy.reasonCode", + "xpath": "f:ImagingStudy/f:reasonCode", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ImagingStudy-referrer", + "resource": { + "resourceType": "SearchParameter", + "id": "ImagingStudy-referrer", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ImagingStudy-referrer", + "version": "4.0.1", + "name": "referrer", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Imaging Integration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/imagemgt/index.cfm" + } ] + } ], + "description": "The referring physician", + "code": "referrer", + "base": [ "ImagingStudy" ], + "type": "reference", + "expression": "ImagingStudy.referrer", + "xpath": "f:ImagingStudy/f:referrer", + "xpathUsage": "normal", + "target": [ "Practitioner", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ImagingStudy-series", + "resource": { + "resourceType": "SearchParameter", + "id": "ImagingStudy-series", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ImagingStudy-series", + "version": "4.0.1", + "name": "series", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Imaging Integration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/imagemgt/index.cfm" + } ] + } ], + "description": "DICOM Series Instance UID for a series", + "code": "series", + "base": [ "ImagingStudy" ], + "type": "token", + "expression": "ImagingStudy.series.uid", + "xpath": "f:ImagingStudy/f:series/f:uid", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ImagingStudy-started", + "resource": { + "resourceType": "SearchParameter", + "id": "ImagingStudy-started", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ImagingStudy-started", + "version": "4.0.1", + "name": "started", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Imaging Integration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/imagemgt/index.cfm" + } ] + } ], + "description": "When the study was started", + "code": "started", + "base": [ "ImagingStudy" ], + "type": "date", + "expression": "ImagingStudy.started", + "xpath": "f:ImagingStudy/f:started", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ImagingStudy-status", + "resource": { + "resourceType": "SearchParameter", + "id": "ImagingStudy-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ImagingStudy-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Imaging Integration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/imagemgt/index.cfm" + } ] + } ], + "description": "The status of the study", + "code": "status", + "base": [ "ImagingStudy" ], + "type": "token", + "expression": "ImagingStudy.status", + "xpath": "f:ImagingStudy/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ImagingStudy-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "ImagingStudy-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ImagingStudy-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Imaging Integration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/imagemgt/index.cfm" + } ] + } ], + "description": "Who the study is about", + "code": "subject", + "base": [ "ImagingStudy" ], + "type": "reference", + "expression": "ImagingStudy.subject", + "xpath": "f:ImagingStudy/f:subject", + "xpathUsage": "normal", + "target": [ "Group", "Device", "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Immunization-location", + "resource": { + "resourceType": "SearchParameter", + "id": "Immunization-location", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Immunization-location", + "version": "4.0.1", + "name": "location", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Public Health and Emergency Response)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pher/index.cfm" + } ] + } ], + "description": "The service delivery location or facility in which the vaccine was / was to be administered", + "code": "location", + "base": [ "Immunization" ], + "type": "reference", + "expression": "Immunization.location", + "xpath": "f:Immunization/f:location", + "xpathUsage": "normal", + "target": [ "Location" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Immunization-lot-number", + "resource": { + "resourceType": "SearchParameter", + "id": "Immunization-lot-number", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Immunization-lot-number", + "version": "4.0.1", + "name": "lot-number", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Public Health and Emergency Response)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pher/index.cfm" + } ] + } ], + "description": "Vaccine Lot Number", + "code": "lot-number", + "base": [ "Immunization" ], + "type": "string", + "expression": "Immunization.lotNumber", + "xpath": "f:Immunization/f:lotNumber", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Immunization-manufacturer", + "resource": { + "resourceType": "SearchParameter", + "id": "Immunization-manufacturer", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Immunization-manufacturer", + "version": "4.0.1", + "name": "manufacturer", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Public Health and Emergency Response)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pher/index.cfm" + } ] + } ], + "description": "Vaccine Manufacturer", + "code": "manufacturer", + "base": [ "Immunization" ], + "type": "reference", + "expression": "Immunization.manufacturer", + "xpath": "f:Immunization/f:manufacturer", + "xpathUsage": "normal", + "target": [ "Organization" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Immunization-performer", + "resource": { + "resourceType": "SearchParameter", + "id": "Immunization-performer", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Immunization-performer", + "version": "4.0.1", + "name": "performer", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Public Health and Emergency Response)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pher/index.cfm" + } ] + } ], + "description": "The practitioner or organization who played a role in the vaccination", + "code": "performer", + "base": [ "Immunization" ], + "type": "reference", + "expression": "Immunization.performer.actor", + "xpath": "f:Immunization/f:performer/f:actor", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Immunization-reaction", + "resource": { + "resourceType": "SearchParameter", + "id": "Immunization-reaction", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Immunization-reaction", + "version": "4.0.1", + "name": "reaction", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Public Health and Emergency Response)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pher/index.cfm" + } ] + } ], + "description": "Additional information on reaction", + "code": "reaction", + "base": [ "Immunization" ], + "type": "reference", + "expression": "Immunization.reaction.detail", + "xpath": "f:Immunization/f:reaction/f:detail", + "xpathUsage": "normal", + "target": [ "Observation" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Immunization-reaction-date", + "resource": { + "resourceType": "SearchParameter", + "id": "Immunization-reaction-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Immunization-reaction-date", + "version": "4.0.1", + "name": "reaction-date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Public Health and Emergency Response)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pher/index.cfm" + } ] + } ], + "description": "When reaction started", + "code": "reaction-date", + "base": [ "Immunization" ], + "type": "date", + "expression": "Immunization.reaction.date", + "xpath": "f:Immunization/f:reaction/f:date", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Immunization-reason-code", + "resource": { + "resourceType": "SearchParameter", + "id": "Immunization-reason-code", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Immunization-reason-code", + "version": "4.0.1", + "name": "reason-code", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Public Health and Emergency Response)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pher/index.cfm" + } ] + } ], + "description": "Reason why the vaccine was administered", + "code": "reason-code", + "base": [ "Immunization" ], + "type": "token", + "expression": "Immunization.reasonCode", + "xpath": "f:Immunization/f:reasonCode", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Immunization-reason-reference", + "resource": { + "resourceType": "SearchParameter", + "id": "Immunization-reason-reference", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Immunization-reason-reference", + "version": "4.0.1", + "name": "reason-reference", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Public Health and Emergency Response)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pher/index.cfm" + } ] + } ], + "description": "Why immunization occurred", + "code": "reason-reference", + "base": [ "Immunization" ], + "type": "reference", + "expression": "Immunization.reasonReference", + "xpath": "f:Immunization/f:reasonReference", + "xpathUsage": "normal", + "target": [ "Condition", "Observation", "DiagnosticReport" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Immunization-series", + "resource": { + "resourceType": "SearchParameter", + "id": "Immunization-series", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Immunization-series", + "version": "4.0.1", + "name": "series", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Public Health and Emergency Response)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pher/index.cfm" + } ] + } ], + "description": "The series being followed by the provider", + "code": "series", + "base": [ "Immunization" ], + "type": "string", + "expression": "Immunization.protocolApplied.series", + "xpath": "f:Immunization/f:protocolApplied/f:series", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Immunization-status", + "resource": { + "resourceType": "SearchParameter", + "id": "Immunization-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Immunization-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Public Health and Emergency Response)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pher/index.cfm" + } ] + } ], + "description": "Immunization event status", + "code": "status", + "base": [ "Immunization" ], + "type": "token", + "expression": "Immunization.status", + "xpath": "f:Immunization/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Immunization-status-reason", + "resource": { + "resourceType": "SearchParameter", + "id": "Immunization-status-reason", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Immunization-status-reason", + "version": "4.0.1", + "name": "status-reason", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Public Health and Emergency Response)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pher/index.cfm" + } ] + } ], + "description": "Reason why the vaccine was not administered", + "code": "status-reason", + "base": [ "Immunization" ], + "type": "token", + "expression": "Immunization.statusReason", + "xpath": "f:Immunization/f:statusReason", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Immunization-target-disease", + "resource": { + "resourceType": "SearchParameter", + "id": "Immunization-target-disease", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Immunization-target-disease", + "version": "4.0.1", + "name": "target-disease", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Public Health and Emergency Response)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pher/index.cfm" + } ] + } ], + "description": "The target disease the dose is being administered against", + "code": "target-disease", + "base": [ "Immunization" ], + "type": "token", + "expression": "Immunization.protocolApplied.targetDisease", + "xpath": "f:Immunization/f:protocolApplied/f:targetDisease", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Immunization-vaccine-code", + "resource": { + "resourceType": "SearchParameter", + "id": "Immunization-vaccine-code", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Immunization-vaccine-code", + "version": "4.0.1", + "name": "vaccine-code", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Public Health and Emergency Response)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pher/index.cfm" + } ] + } ], + "description": "Vaccine Product Administered", + "code": "vaccine-code", + "base": [ "Immunization" ], + "type": "token", + "expression": "Immunization.vaccineCode", + "xpath": "f:Immunization/f:vaccineCode", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ImmunizationEvaluation-date", + "resource": { + "resourceType": "SearchParameter", + "id": "ImmunizationEvaluation-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ImmunizationEvaluation-date", + "version": "4.0.1", + "name": "date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Public Health and Emergency Response)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pher/index.cfm" + } ] + } ], + "description": "Date the evaluation was generated", + "code": "date", + "base": [ "ImmunizationEvaluation" ], + "type": "date", + "expression": "ImmunizationEvaluation.date", + "xpath": "f:ImmunizationEvaluation/f:date", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ImmunizationEvaluation-dose-status", + "resource": { + "resourceType": "SearchParameter", + "id": "ImmunizationEvaluation-dose-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ImmunizationEvaluation-dose-status", + "version": "4.0.1", + "name": "dose-status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Public Health and Emergency Response)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pher/index.cfm" + } ] + } ], + "description": "The status of the dose relative to published recommendations", + "code": "dose-status", + "base": [ "ImmunizationEvaluation" ], + "type": "token", + "expression": "ImmunizationEvaluation.doseStatus", + "xpath": "f:ImmunizationEvaluation/f:doseStatus", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ImmunizationEvaluation-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "ImmunizationEvaluation-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ImmunizationEvaluation-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Public Health and Emergency Response)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pher/index.cfm" + } ] + } ], + "description": "ID of the evaluation", + "code": "identifier", + "base": [ "ImmunizationEvaluation" ], + "type": "token", + "expression": "ImmunizationEvaluation.identifier", + "xpath": "f:ImmunizationEvaluation/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ImmunizationEvaluation-immunization-event", + "resource": { + "resourceType": "SearchParameter", + "id": "ImmunizationEvaluation-immunization-event", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ImmunizationEvaluation-immunization-event", + "version": "4.0.1", + "name": "immunization-event", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Public Health and Emergency Response)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pher/index.cfm" + } ] + } ], + "description": "The vaccine administration event being evaluated", + "code": "immunization-event", + "base": [ "ImmunizationEvaluation" ], + "type": "reference", + "expression": "ImmunizationEvaluation.immunizationEvent", + "xpath": "f:ImmunizationEvaluation/f:immunizationEvent", + "xpathUsage": "normal", + "target": [ "Immunization" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ImmunizationEvaluation-patient", + "resource": { + "resourceType": "SearchParameter", + "id": "ImmunizationEvaluation-patient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ImmunizationEvaluation-patient", + "version": "4.0.1", + "name": "patient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Public Health and Emergency Response)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pher/index.cfm" + } ] + } ], + "description": "The patient being evaluated", + "code": "patient", + "base": [ "ImmunizationEvaluation" ], + "type": "reference", + "expression": "ImmunizationEvaluation.patient", + "xpath": "f:ImmunizationEvaluation/f:patient", + "xpathUsage": "normal", + "target": [ "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ImmunizationEvaluation-status", + "resource": { + "resourceType": "SearchParameter", + "id": "ImmunizationEvaluation-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ImmunizationEvaluation-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Public Health and Emergency Response)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pher/index.cfm" + } ] + } ], + "description": "Immunization evaluation status", + "code": "status", + "base": [ "ImmunizationEvaluation" ], + "type": "token", + "expression": "ImmunizationEvaluation.status", + "xpath": "f:ImmunizationEvaluation/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ImmunizationEvaluation-target-disease", + "resource": { + "resourceType": "SearchParameter", + "id": "ImmunizationEvaluation-target-disease", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ImmunizationEvaluation-target-disease", + "version": "4.0.1", + "name": "target-disease", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Public Health and Emergency Response)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pher/index.cfm" + } ] + } ], + "description": "The vaccine preventable disease being evaluated against", + "code": "target-disease", + "base": [ "ImmunizationEvaluation" ], + "type": "token", + "expression": "ImmunizationEvaluation.targetDisease", + "xpath": "f:ImmunizationEvaluation/f:targetDisease", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ImmunizationRecommendation-date", + "resource": { + "resourceType": "SearchParameter", + "id": "ImmunizationRecommendation-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ImmunizationRecommendation-date", + "version": "4.0.1", + "name": "date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Public Health and Emergency Response)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pher/index.cfm" + } ] + } ], + "description": "Date recommendation(s) created", + "code": "date", + "base": [ "ImmunizationRecommendation" ], + "type": "date", + "expression": "ImmunizationRecommendation.date", + "xpath": "f:ImmunizationRecommendation/f:date", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ImmunizationRecommendation-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "ImmunizationRecommendation-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ImmunizationRecommendation-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Public Health and Emergency Response)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pher/index.cfm" + } ] + } ], + "description": "Business identifier", + "code": "identifier", + "base": [ "ImmunizationRecommendation" ], + "type": "token", + "expression": "ImmunizationRecommendation.identifier", + "xpath": "f:ImmunizationRecommendation/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ImmunizationRecommendation-information", + "resource": { + "resourceType": "SearchParameter", + "id": "ImmunizationRecommendation-information", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ImmunizationRecommendation-information", + "version": "4.0.1", + "name": "information", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Public Health and Emergency Response)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pher/index.cfm" + } ] + } ], + "description": "Patient observations supporting recommendation", + "code": "information", + "base": [ "ImmunizationRecommendation" ], + "type": "reference", + "expression": "ImmunizationRecommendation.recommendation.supportingPatientInformation", + "xpath": "f:ImmunizationRecommendation/f:recommendation/f:supportingPatientInformation", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ImmunizationRecommendation-patient", + "resource": { + "resourceType": "SearchParameter", + "id": "ImmunizationRecommendation-patient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ImmunizationRecommendation-patient", + "version": "4.0.1", + "name": "patient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Public Health and Emergency Response)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pher/index.cfm" + } ] + } ], + "description": "Who this profile is for", + "code": "patient", + "base": [ "ImmunizationRecommendation" ], + "type": "reference", + "expression": "ImmunizationRecommendation.patient", + "xpath": "f:ImmunizationRecommendation/f:patient", + "xpathUsage": "normal", + "target": [ "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ImmunizationRecommendation-status", + "resource": { + "resourceType": "SearchParameter", + "id": "ImmunizationRecommendation-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ImmunizationRecommendation-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Public Health and Emergency Response)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pher/index.cfm" + } ] + } ], + "description": "Vaccine recommendation status", + "code": "status", + "base": [ "ImmunizationRecommendation" ], + "type": "token", + "expression": "ImmunizationRecommendation.recommendation.forecastStatus", + "xpath": "f:ImmunizationRecommendation/f:recommendation/f:forecastStatus", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ImmunizationRecommendation-support", + "resource": { + "resourceType": "SearchParameter", + "id": "ImmunizationRecommendation-support", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ImmunizationRecommendation-support", + "version": "4.0.1", + "name": "support", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Public Health and Emergency Response)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pher/index.cfm" + } ] + } ], + "description": "Past immunizations supporting recommendation", + "code": "support", + "base": [ "ImmunizationRecommendation" ], + "type": "reference", + "expression": "ImmunizationRecommendation.recommendation.supportingImmunization", + "xpath": "f:ImmunizationRecommendation/f:recommendation/f:supportingImmunization", + "xpathUsage": "normal", + "target": [ "Immunization", "ImmunizationEvaluation" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ImmunizationRecommendation-target-disease", + "resource": { + "resourceType": "SearchParameter", + "id": "ImmunizationRecommendation-target-disease", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ImmunizationRecommendation-target-disease", + "version": "4.0.1", + "name": "target-disease", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Public Health and Emergency Response)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pher/index.cfm" + } ] + } ], + "description": "Disease to be immunized against", + "code": "target-disease", + "base": [ "ImmunizationRecommendation" ], + "type": "token", + "expression": "ImmunizationRecommendation.recommendation.targetDisease", + "xpath": "f:ImmunizationRecommendation/f:recommendation/f:targetDisease", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ImmunizationRecommendation-vaccine-type", + "resource": { + "resourceType": "SearchParameter", + "id": "ImmunizationRecommendation-vaccine-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ImmunizationRecommendation-vaccine-type", + "version": "4.0.1", + "name": "vaccine-type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Public Health and Emergency Response)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pher/index.cfm" + } ] + } ], + "description": "Vaccine or vaccine group recommendation applies to", + "code": "vaccine-type", + "base": [ "ImmunizationRecommendation" ], + "type": "token", + "expression": "ImmunizationRecommendation.recommendation.vaccineCode", + "xpath": "f:ImmunizationRecommendation/f:recommendation/f:vaccineCode", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ImplementationGuide-depends-on", + "resource": { + "resourceType": "SearchParameter", + "id": "ImplementationGuide-depends-on", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ImplementationGuide-depends-on", + "version": "4.0.1", + "name": "depends-on", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Identity of the IG that this depends on", + "code": "depends-on", + "base": [ "ImplementationGuide" ], + "type": "reference", + "expression": "ImplementationGuide.dependsOn.uri", + "xpath": "f:ImplementationGuide/f:dependsOn/f:uri", + "xpathUsage": "normal", + "target": [ "ImplementationGuide" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ImplementationGuide-experimental", + "resource": { + "resourceType": "SearchParameter", + "id": "ImplementationGuide-experimental", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ImplementationGuide-experimental", + "version": "4.0.1", + "name": "experimental", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "For testing purposes, not real usage", + "code": "experimental", + "base": [ "ImplementationGuide" ], + "type": "token", + "expression": "ImplementationGuide.experimental", + "xpath": "f:ImplementationGuide/f:experimental", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ImplementationGuide-global", + "resource": { + "resourceType": "SearchParameter", + "id": "ImplementationGuide-global", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ImplementationGuide-global", + "version": "4.0.1", + "name": "global", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Profile that all resources must conform to", + "code": "global", + "base": [ "ImplementationGuide" ], + "type": "reference", + "expression": "ImplementationGuide.global.profile", + "xpath": "f:ImplementationGuide/f:global/f:profile", + "xpathUsage": "normal", + "target": [ "StructureDefinition" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ImplementationGuide-resource", + "resource": { + "resourceType": "SearchParameter", + "id": "ImplementationGuide-resource", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ImplementationGuide-resource", + "version": "4.0.1", + "name": "resource", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Location of the resource", + "code": "resource", + "base": [ "ImplementationGuide" ], + "type": "reference", + "expression": "ImplementationGuide.definition.resource.reference", + "xpath": "f:ImplementationGuide/f:definition/f:resource/f:reference", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/InsurancePlan-address", + "resource": { + "resourceType": "SearchParameter", + "id": "InsurancePlan-address", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/InsurancePlan-address", + "version": "4.0.1", + "name": "address", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A server defined search that may match any of the string fields in the Address, including line, city, district, state, country, postalCode, and/or text", + "code": "address", + "base": [ "InsurancePlan" ], + "type": "string", + "expression": "InsurancePlan.contact.address", + "xpath": "f:InsurancePlan/f:contact/f:address", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/InsurancePlan-address-city", + "resource": { + "resourceType": "SearchParameter", + "id": "InsurancePlan-address-city", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/InsurancePlan-address-city", + "version": "4.0.1", + "name": "address-city", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A city specified in an address", + "code": "address-city", + "base": [ "InsurancePlan" ], + "type": "string", + "expression": "InsurancePlan.contact.address.city", + "xpath": "f:InsurancePlan/f:contact/f:address/f:city", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/InsurancePlan-address-country", + "resource": { + "resourceType": "SearchParameter", + "id": "InsurancePlan-address-country", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/InsurancePlan-address-country", + "version": "4.0.1", + "name": "address-country", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A country specified in an address", + "code": "address-country", + "base": [ "InsurancePlan" ], + "type": "string", + "expression": "InsurancePlan.contact.address.country", + "xpath": "f:InsurancePlan/f:contact/f:address/f:country", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/InsurancePlan-address-postalcode", + "resource": { + "resourceType": "SearchParameter", + "id": "InsurancePlan-address-postalcode", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/InsurancePlan-address-postalcode", + "version": "4.0.1", + "name": "address-postalcode", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A postal code specified in an address", + "code": "address-postalcode", + "base": [ "InsurancePlan" ], + "type": "string", + "expression": "InsurancePlan.contact.address.postalCode", + "xpath": "f:InsurancePlan/f:contact/f:address/f:postalCode", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/InsurancePlan-address-state", + "resource": { + "resourceType": "SearchParameter", + "id": "InsurancePlan-address-state", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/InsurancePlan-address-state", + "version": "4.0.1", + "name": "address-state", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A state specified in an address", + "code": "address-state", + "base": [ "InsurancePlan" ], + "type": "string", + "expression": "InsurancePlan.contact.address.state", + "xpath": "f:InsurancePlan/f:contact/f:address/f:state", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/InsurancePlan-address-use", + "resource": { + "resourceType": "SearchParameter", + "id": "InsurancePlan-address-use", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/InsurancePlan-address-use", + "version": "4.0.1", + "name": "address-use", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A use code specified in an address", + "code": "address-use", + "base": [ "InsurancePlan" ], + "type": "token", + "expression": "InsurancePlan.contact.address.use", + "xpath": "f:InsurancePlan/f:contact/f:address/f:use", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/InsurancePlan-administered-by", + "resource": { + "resourceType": "SearchParameter", + "id": "InsurancePlan-administered-by", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/InsurancePlan-administered-by", + "version": "4.0.1", + "name": "administered-by", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Product administrator", + "code": "administered-by", + "base": [ "InsurancePlan" ], + "type": "reference", + "expression": "InsurancePlan.administeredBy", + "xpath": "f:InsurancePlan/f:administeredBy", + "xpathUsage": "normal", + "target": [ "Organization" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/InsurancePlan-endpoint", + "resource": { + "resourceType": "SearchParameter", + "id": "InsurancePlan-endpoint", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/InsurancePlan-endpoint", + "version": "4.0.1", + "name": "endpoint", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Technical endpoint", + "code": "endpoint", + "base": [ "InsurancePlan" ], + "type": "reference", + "expression": "InsurancePlan.endpoint", + "xpath": "f:InsurancePlan/f:endpoint", + "xpathUsage": "normal", + "target": [ "Endpoint" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/InsurancePlan-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "InsurancePlan-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/InsurancePlan-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Any identifier for the organization (not the accreditation issuer's identifier)", + "code": "identifier", + "base": [ "InsurancePlan" ], + "type": "token", + "expression": "InsurancePlan.identifier", + "xpath": "f:InsurancePlan/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/InsurancePlan-name", + "resource": { + "resourceType": "SearchParameter", + "id": "InsurancePlan-name", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/InsurancePlan-name", + "version": "4.0.1", + "name": "name", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A portion of the organization's name or alias", + "code": "name", + "base": [ "InsurancePlan" ], + "type": "string", + "expression": "name | alias", + "xpath": "f:InsurancePlan/f:name | f:InsurancePlan/f:alias", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/InsurancePlan-owned-by", + "resource": { + "resourceType": "SearchParameter", + "id": "InsurancePlan-owned-by", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/InsurancePlan-owned-by", + "version": "4.0.1", + "name": "owned-by", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "An organization of which this organization forms a part", + "code": "owned-by", + "base": [ "InsurancePlan" ], + "type": "reference", + "expression": "InsurancePlan.ownedBy", + "xpath": "f:InsurancePlan/f:ownedBy", + "xpathUsage": "normal", + "target": [ "Organization" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/InsurancePlan-phonetic", + "resource": { + "resourceType": "SearchParameter", + "id": "InsurancePlan-phonetic", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/InsurancePlan-phonetic", + "version": "4.0.1", + "name": "phonetic", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A portion of the organization's name using some kind of phonetic matching algorithm", + "code": "phonetic", + "base": [ "InsurancePlan" ], + "type": "string", + "expression": "InsurancePlan.name", + "xpath": "f:InsurancePlan/f:name", + "xpathUsage": "phonetic" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/InsurancePlan-status", + "resource": { + "resourceType": "SearchParameter", + "id": "InsurancePlan-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/InsurancePlan-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Is the Organization record active", + "code": "status", + "base": [ "InsurancePlan" ], + "type": "token", + "expression": "InsurancePlan.status", + "xpath": "f:InsurancePlan/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/InsurancePlan-type", + "resource": { + "resourceType": "SearchParameter", + "id": "InsurancePlan-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/InsurancePlan-type", + "version": "4.0.1", + "name": "type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A code for the type of organization", + "code": "type", + "base": [ "InsurancePlan" ], + "type": "token", + "expression": "InsurancePlan.type", + "xpath": "f:InsurancePlan/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Invoice-account", + "resource": { + "resourceType": "SearchParameter", + "id": "Invoice-account", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Invoice-account", + "version": "4.0.1", + "name": "account", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "Account that is being balanced", + "code": "account", + "base": [ "Invoice" ], + "type": "reference", + "expression": "Invoice.account", + "xpath": "f:Invoice/f:account", + "xpathUsage": "normal", + "target": [ "Account" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Invoice-date", + "resource": { + "resourceType": "SearchParameter", + "id": "Invoice-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Invoice-date", + "version": "4.0.1", + "name": "date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "Invoice date / posting date", + "code": "date", + "base": [ "Invoice" ], + "type": "date", + "expression": "Invoice.date", + "xpath": "f:Invoice/f:date", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Invoice-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "Invoice-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Invoice-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "Business Identifier for item", + "code": "identifier", + "base": [ "Invoice" ], + "type": "token", + "expression": "Invoice.identifier", + "xpath": "f:Invoice/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Invoice-issuer", + "resource": { + "resourceType": "SearchParameter", + "id": "Invoice-issuer", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Invoice-issuer", + "version": "4.0.1", + "name": "issuer", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "Issuing Organization of Invoice", + "code": "issuer", + "base": [ "Invoice" ], + "type": "reference", + "expression": "Invoice.issuer", + "xpath": "f:Invoice/f:issuer", + "xpathUsage": "normal", + "target": [ "Organization" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Invoice-participant", + "resource": { + "resourceType": "SearchParameter", + "id": "Invoice-participant", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Invoice-participant", + "version": "4.0.1", + "name": "participant", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "Individual who was involved", + "code": "participant", + "base": [ "Invoice" ], + "type": "reference", + "expression": "Invoice.participant.actor", + "xpath": "f:Invoice/f:participant/f:actor", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "Device", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Invoice-participant-role", + "resource": { + "resourceType": "SearchParameter", + "id": "Invoice-participant-role", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Invoice-participant-role", + "version": "4.0.1", + "name": "participant-role", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "Type of involvement in creation of this Invoice", + "code": "participant-role", + "base": [ "Invoice" ], + "type": "token", + "expression": "Invoice.participant.role", + "xpath": "f:Invoice/f:participant/f:role", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Invoice-patient", + "resource": { + "resourceType": "SearchParameter", + "id": "Invoice-patient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Invoice-patient", + "version": "4.0.1", + "name": "patient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "Recipient(s) of goods and services", + "code": "patient", + "base": [ "Invoice" ], + "type": "reference", + "expression": "Invoice.subject.where(resolve() is Patient)", + "xpath": "f:Invoice/f:subject", + "xpathUsage": "normal", + "target": [ "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Invoice-recipient", + "resource": { + "resourceType": "SearchParameter", + "id": "Invoice-recipient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Invoice-recipient", + "version": "4.0.1", + "name": "recipient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "Recipient of this invoice", + "code": "recipient", + "base": [ "Invoice" ], + "type": "reference", + "expression": "Invoice.recipient", + "xpath": "f:Invoice/f:recipient", + "xpathUsage": "normal", + "target": [ "Organization", "Patient", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Invoice-status", + "resource": { + "resourceType": "SearchParameter", + "id": "Invoice-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Invoice-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "draft | issued | balanced | cancelled | entered-in-error", + "code": "status", + "base": [ "Invoice" ], + "type": "token", + "expression": "Invoice.status", + "xpath": "f:Invoice/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Invoice-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "Invoice-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Invoice-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "Recipient(s) of goods and services", + "code": "subject", + "base": [ "Invoice" ], + "type": "reference", + "expression": "Invoice.subject", + "xpath": "f:Invoice/f:subject", + "xpathUsage": "normal", + "target": [ "Group", "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Invoice-totalgross", + "resource": { + "resourceType": "SearchParameter", + "id": "Invoice-totalgross", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Invoice-totalgross", + "version": "4.0.1", + "name": "totalgross", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "Gross total of this Invoice", + "code": "totalgross", + "base": [ "Invoice" ], + "type": "quantity", + "expression": "Invoice.totalGross", + "xpath": "f:Invoice/f:totalGross", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Invoice-totalnet", + "resource": { + "resourceType": "SearchParameter", + "id": "Invoice-totalnet", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Invoice-totalnet", + "version": "4.0.1", + "name": "totalnet", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "Net total of this Invoice", + "code": "totalnet", + "base": [ "Invoice" ], + "type": "quantity", + "expression": "Invoice.totalNet", + "xpath": "f:Invoice/f:totalNet", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Invoice-type", + "resource": { + "resourceType": "SearchParameter", + "id": "Invoice-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Invoice-type", + "version": "4.0.1", + "name": "type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "Type of Invoice", + "code": "type", + "base": [ "Invoice" ], + "type": "token", + "expression": "Invoice.type", + "xpath": "f:Invoice/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Library-composed-of", + "resource": { + "resourceType": "SearchParameter", + "id": "Library-composed-of", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Library-composed-of", + "version": "4.0.1", + "name": "composed-of", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "composed-of", + "base": [ "Library" ], + "type": "reference", + "expression": "Library.relatedArtifact.where(type='composed-of').resource", + "xpath": "f:Library/f:relatedArtifact[f:type/@value='composed-of']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Library-content-type", + "resource": { + "resourceType": "SearchParameter", + "id": "Library-content-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Library-content-type", + "version": "4.0.1", + "name": "content-type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The type of content in the library (e.g. text/cql)", + "code": "content-type", + "base": [ "Library" ], + "type": "token", + "expression": "Library.content.contentType", + "xpath": "f:Library/f:content/f:contentType", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Library-context", + "resource": { + "resourceType": "SearchParameter", + "id": "Library-context", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Library-context", + "version": "4.0.1", + "name": "context", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A use context assigned to the library", + "code": "context", + "base": [ "Library" ], + "type": "token", + "expression": "(Library.useContext.value as CodeableConcept)", + "xpath": "f:Library/f:useContext/f:valueCodeableConcept", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Library-context-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "Library-context-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Library-context-quantity", + "version": "4.0.1", + "name": "context-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A quantity- or range-valued use context assigned to the library", + "code": "context-quantity", + "base": [ "Library" ], + "type": "quantity", + "expression": "(Library.useContext.value as Quantity) | (Library.useContext.value as Range)", + "xpath": "f:Library/f:useContext/f:valueQuantity | f:Library/f:useContext/f:valueRange", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Library-context-type", + "resource": { + "resourceType": "SearchParameter", + "id": "Library-context-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Library-context-type", + "version": "4.0.1", + "name": "context-type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A type of use context assigned to the library", + "code": "context-type", + "base": [ "Library" ], + "type": "token", + "expression": "Library.useContext.code", + "xpath": "f:Library/f:useContext/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Library-date", + "resource": { + "resourceType": "SearchParameter", + "id": "Library-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Library-date", + "version": "4.0.1", + "name": "date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The library publication date", + "code": "date", + "base": [ "Library" ], + "type": "date", + "expression": "Library.date", + "xpath": "f:Library/f:date", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Library-depends-on", + "resource": { + "resourceType": "SearchParameter", + "id": "Library-depends-on", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Library-depends-on", + "version": "4.0.1", + "name": "depends-on", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "depends-on", + "base": [ "Library" ], + "type": "reference", + "expression": "Library.relatedArtifact.where(type='depends-on').resource", + "xpath": "f:Library/f:relatedArtifact[f:type/@value='depends-on']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Library-derived-from", + "resource": { + "resourceType": "SearchParameter", + "id": "Library-derived-from", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Library-derived-from", + "version": "4.0.1", + "name": "derived-from", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "derived-from", + "base": [ "Library" ], + "type": "reference", + "expression": "Library.relatedArtifact.where(type='derived-from').resource", + "xpath": "f:Library/f:relatedArtifact[f:type/@value='derived-from']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Library-description", + "resource": { + "resourceType": "SearchParameter", + "id": "Library-description", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Library-description", + "version": "4.0.1", + "name": "description", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The description of the library", + "code": "description", + "base": [ "Library" ], + "type": "string", + "expression": "Library.description", + "xpath": "f:Library/f:description", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Library-effective", + "resource": { + "resourceType": "SearchParameter", + "id": "Library-effective", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Library-effective", + "version": "4.0.1", + "name": "effective", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The time during which the library is intended to be in use", + "code": "effective", + "base": [ "Library" ], + "type": "date", + "expression": "Library.effectivePeriod", + "xpath": "f:Library/f:effectivePeriod", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Library-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "Library-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Library-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "External identifier for the library", + "code": "identifier", + "base": [ "Library" ], + "type": "token", + "expression": "Library.identifier", + "xpath": "f:Library/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Library-jurisdiction", + "resource": { + "resourceType": "SearchParameter", + "id": "Library-jurisdiction", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Library-jurisdiction", + "version": "4.0.1", + "name": "jurisdiction", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Intended jurisdiction for the library", + "code": "jurisdiction", + "base": [ "Library" ], + "type": "token", + "expression": "Library.jurisdiction", + "xpath": "f:Library/f:jurisdiction", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Library-name", + "resource": { + "resourceType": "SearchParameter", + "id": "Library-name", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Library-name", + "version": "4.0.1", + "name": "name", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Computationally friendly name of the library", + "code": "name", + "base": [ "Library" ], + "type": "string", + "expression": "Library.name", + "xpath": "f:Library/f:name", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Library-predecessor", + "resource": { + "resourceType": "SearchParameter", + "id": "Library-predecessor", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Library-predecessor", + "version": "4.0.1", + "name": "predecessor", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "predecessor", + "base": [ "Library" ], + "type": "reference", + "expression": "Library.relatedArtifact.where(type='predecessor').resource", + "xpath": "f:Library/f:relatedArtifact[f:type/@value='predecessor']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Library-publisher", + "resource": { + "resourceType": "SearchParameter", + "id": "Library-publisher", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Library-publisher", + "version": "4.0.1", + "name": "publisher", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Name of the publisher of the library", + "code": "publisher", + "base": [ "Library" ], + "type": "string", + "expression": "Library.publisher", + "xpath": "f:Library/f:publisher", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Library-status", + "resource": { + "resourceType": "SearchParameter", + "id": "Library-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Library-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The current status of the library", + "code": "status", + "base": [ "Library" ], + "type": "token", + "expression": "Library.status", + "xpath": "f:Library/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Library-successor", + "resource": { + "resourceType": "SearchParameter", + "id": "Library-successor", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Library-successor", + "version": "4.0.1", + "name": "successor", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "successor", + "base": [ "Library" ], + "type": "reference", + "expression": "Library.relatedArtifact.where(type='successor').resource", + "xpath": "f:Library/f:relatedArtifact[f:type/@value='successor']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Library-title", + "resource": { + "resourceType": "SearchParameter", + "id": "Library-title", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Library-title", + "version": "4.0.1", + "name": "title", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The human-friendly name of the library", + "code": "title", + "base": [ "Library" ], + "type": "string", + "expression": "Library.title", + "xpath": "f:Library/f:title", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Library-topic", + "resource": { + "resourceType": "SearchParameter", + "id": "Library-topic", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Library-topic", + "version": "4.0.1", + "name": "topic", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Topics associated with the module", + "code": "topic", + "base": [ "Library" ], + "type": "token", + "expression": "Library.topic", + "xpath": "f:Library/f:topic", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Library-type", + "resource": { + "resourceType": "SearchParameter", + "id": "Library-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Library-type", + "version": "4.0.1", + "name": "type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The type of the library (e.g. logic-library, model-definition, asset-collection, module-definition)", + "code": "type", + "base": [ "Library" ], + "type": "token", + "expression": "Library.type", + "xpath": "f:Library/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Library-url", + "resource": { + "resourceType": "SearchParameter", + "id": "Library-url", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Library-url", + "version": "4.0.1", + "name": "url", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The uri that identifies the library", + "code": "url", + "base": [ "Library" ], + "type": "uri", + "expression": "Library.url", + "xpath": "f:Library/f:url", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Library-version", + "resource": { + "resourceType": "SearchParameter", + "id": "Library-version", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Library-version", + "version": "4.0.1", + "name": "version", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The business version of the library", + "code": "version", + "base": [ "Library" ], + "type": "token", + "expression": "Library.version", + "xpath": "f:Library/f:version", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Library-context-type-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "Library-context-type-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Library-context-type-quantity", + "version": "4.0.1", + "name": "context-type-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A use context type and quantity- or range-based value assigned to the library", + "code": "context-type-quantity", + "base": [ "Library" ], + "type": "composite", + "expression": "Library.useContext", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/Library-context-type", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/Library-context-quantity", + "expression": "value.as(Quantity) | value.as(Range)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Library-context-type-value", + "resource": { + "resourceType": "SearchParameter", + "id": "Library-context-type-value", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Library-context-type-value", + "version": "4.0.1", + "name": "context-type-value", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A use context type and value assigned to the library", + "code": "context-type-value", + "base": [ "Library" ], + "type": "composite", + "expression": "Library.useContext", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/Library-context-type", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/Library-context", + "expression": "value.as(CodeableConcept)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Linkage-author", + "resource": { + "resourceType": "SearchParameter", + "id": "Linkage-author", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Linkage-author", + "version": "4.0.1", + "name": "author", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Author of the Linkage", + "code": "author", + "base": [ "Linkage" ], + "type": "reference", + "expression": "Linkage.author", + "xpath": "f:Linkage/f:author", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Linkage-item", + "resource": { + "resourceType": "SearchParameter", + "id": "Linkage-item", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Linkage-item", + "version": "4.0.1", + "name": "item", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Matches on any item in the Linkage", + "code": "item", + "base": [ "Linkage" ], + "type": "reference", + "expression": "Linkage.item.resource", + "xpath": "f:Linkage/f:item/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Linkage-source", + "resource": { + "resourceType": "SearchParameter", + "id": "Linkage-source", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Linkage-source", + "version": "4.0.1", + "name": "source", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Matches on any item in the Linkage with a type of 'source'", + "code": "source", + "base": [ "Linkage" ], + "type": "reference", + "expression": "Linkage.item.resource", + "xpath": "f:Linkage/f:item/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/List-empty-reason", + "resource": { + "resourceType": "SearchParameter", + "id": "List-empty-reason", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/List-empty-reason", + "version": "4.0.1", + "name": "empty-reason", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Why list is empty", + "code": "empty-reason", + "base": [ "List" ], + "type": "token", + "expression": "List.emptyReason", + "xpath": "f:List/f:emptyReason", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/List-item", + "resource": { + "resourceType": "SearchParameter", + "id": "List-item", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/List-item", + "version": "4.0.1", + "name": "item", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Actual entry", + "code": "item", + "base": [ "List" ], + "type": "reference", + "expression": "List.entry.item", + "xpath": "f:List/f:entry/f:item", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/List-notes", + "resource": { + "resourceType": "SearchParameter", + "id": "List-notes", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/List-notes", + "version": "4.0.1", + "name": "notes", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The annotation - text content (as markdown)", + "code": "notes", + "base": [ "List" ], + "type": "string", + "expression": "List.note.text", + "xpath": "f:List/f:note/f:text", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/List-source", + "resource": { + "resourceType": "SearchParameter", + "id": "List-source", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/List-source", + "version": "4.0.1", + "name": "source", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Who and/or what defined the list contents (aka Author)", + "code": "source", + "base": [ "List" ], + "type": "reference", + "expression": "List.source", + "xpath": "f:List/f:source", + "xpathUsage": "normal", + "target": [ "Practitioner", "Device", "Patient", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/List-status", + "resource": { + "resourceType": "SearchParameter", + "id": "List-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/List-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "current | retired | entered-in-error", + "code": "status", + "base": [ "List" ], + "type": "token", + "expression": "List.status", + "xpath": "f:List/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/List-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "List-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/List-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "If all resources have the same subject", + "code": "subject", + "base": [ "List" ], + "type": "reference", + "expression": "List.subject", + "xpath": "f:List/f:subject", + "xpathUsage": "normal", + "target": [ "Group", "Device", "Patient", "Location" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/List-title", + "resource": { + "resourceType": "SearchParameter", + "id": "List-title", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/List-title", + "version": "4.0.1", + "name": "title", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Descriptive name for the list", + "code": "title", + "base": [ "List" ], + "type": "string", + "expression": "List.title", + "xpath": "f:List/f:title", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Location-address", + "resource": { + "resourceType": "SearchParameter", + "id": "Location-address", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Location-address", + "version": "4.0.1", + "name": "address", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A (part of the) address of the location", + "code": "address", + "base": [ "Location" ], + "type": "string", + "expression": "Location.address", + "xpath": "f:Location/f:address", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Location-address-city", + "resource": { + "resourceType": "SearchParameter", + "id": "Location-address-city", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Location-address-city", + "version": "4.0.1", + "name": "address-city", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A city specified in an address", + "code": "address-city", + "base": [ "Location" ], + "type": "string", + "expression": "Location.address.city", + "xpath": "f:Location/f:address/f:city", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Location-address-country", + "resource": { + "resourceType": "SearchParameter", + "id": "Location-address-country", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Location-address-country", + "version": "4.0.1", + "name": "address-country", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A country specified in an address", + "code": "address-country", + "base": [ "Location" ], + "type": "string", + "expression": "Location.address.country", + "xpath": "f:Location/f:address/f:country", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Location-address-postalcode", + "resource": { + "resourceType": "SearchParameter", + "id": "Location-address-postalcode", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Location-address-postalcode", + "version": "4.0.1", + "name": "address-postalcode", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A postal code specified in an address", + "code": "address-postalcode", + "base": [ "Location" ], + "type": "string", + "expression": "Location.address.postalCode", + "xpath": "f:Location/f:address/f:postalCode", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Location-address-state", + "resource": { + "resourceType": "SearchParameter", + "id": "Location-address-state", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Location-address-state", + "version": "4.0.1", + "name": "address-state", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A state specified in an address", + "code": "address-state", + "base": [ "Location" ], + "type": "string", + "expression": "Location.address.state", + "xpath": "f:Location/f:address/f:state", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Location-address-use", + "resource": { + "resourceType": "SearchParameter", + "id": "Location-address-use", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Location-address-use", + "version": "4.0.1", + "name": "address-use", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A use code specified in an address", + "code": "address-use", + "base": [ "Location" ], + "type": "token", + "expression": "Location.address.use", + "xpath": "f:Location/f:address/f:use", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Location-endpoint", + "resource": { + "resourceType": "SearchParameter", + "id": "Location-endpoint", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Location-endpoint", + "version": "4.0.1", + "name": "endpoint", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Technical endpoints providing access to services operated for the location", + "code": "endpoint", + "base": [ "Location" ], + "type": "reference", + "expression": "Location.endpoint", + "xpath": "f:Location/f:endpoint", + "xpathUsage": "normal", + "target": [ "Endpoint" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Location-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "Location-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Location-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "An identifier for the location", + "code": "identifier", + "base": [ "Location" ], + "type": "token", + "expression": "Location.identifier", + "xpath": "f:Location/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Location-name", + "resource": { + "resourceType": "SearchParameter", + "id": "Location-name", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Location-name", + "version": "4.0.1", + "name": "name", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A portion of the location's name or alias", + "code": "name", + "base": [ "Location" ], + "type": "string", + "expression": "Location.name | Location.alias", + "xpath": "f:Location/f:name | f:Location/f:alias", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Location-near", + "resource": { + "resourceType": "SearchParameter", + "id": "Location-near", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Location-near", + "version": "4.0.1", + "name": "near", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Search for locations where the location.position is near to, or within a specified distance of, the provided coordinates expressed as [latitude]|[longitude]|[distance]|[units] (using the WGS84 datum, see notes).\nIf the units are omitted, then kms should be assumed. If the distance is omitted, then the server can use its own discretion as to what distances should be considered near (and units are irrelevant)\n\nServers may search using various techniques that might have differing accuracies, depending on implementation efficiency.\n\nRequires the near-distance parameter to be provided also", + "code": "near", + "base": [ "Location" ], + "type": "special", + "expression": "Location.position", + "xpath": "f:Location/f:position", + "xpathUsage": "nearby" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Location-operational-status", + "resource": { + "resourceType": "SearchParameter", + "id": "Location-operational-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Location-operational-status", + "version": "4.0.1", + "name": "operational-status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Searches for locations (typically bed/room) that have an operational status (e.g. contaminated, housekeeping)", + "code": "operational-status", + "base": [ "Location" ], + "type": "token", + "expression": "Location.operationalStatus", + "xpath": "f:Location/f:operationalStatus", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Location-organization", + "resource": { + "resourceType": "SearchParameter", + "id": "Location-organization", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Location-organization", + "version": "4.0.1", + "name": "organization", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Searches for locations that are managed by the provided organization", + "code": "organization", + "base": [ "Location" ], + "type": "reference", + "expression": "Location.managingOrganization", + "xpath": "f:Location/f:managingOrganization", + "xpathUsage": "normal", + "target": [ "Organization" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Location-partof", + "resource": { + "resourceType": "SearchParameter", + "id": "Location-partof", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Location-partof", + "version": "4.0.1", + "name": "partof", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A location of which this location is a part", + "code": "partof", + "base": [ "Location" ], + "type": "reference", + "expression": "Location.partOf", + "xpath": "f:Location/f:partOf", + "xpathUsage": "normal", + "target": [ "Location" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Location-status", + "resource": { + "resourceType": "SearchParameter", + "id": "Location-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Location-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Searches for locations with a specific kind of status", + "code": "status", + "base": [ "Location" ], + "type": "token", + "expression": "Location.status", + "xpath": "f:Location/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Location-type", + "resource": { + "resourceType": "SearchParameter", + "id": "Location-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Location-type", + "version": "4.0.1", + "name": "type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A code for the type of location", + "code": "type", + "base": [ "Location" ], + "type": "token", + "expression": "Location.type", + "xpath": "f:Location/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Measure-composed-of", + "resource": { + "resourceType": "SearchParameter", + "id": "Measure-composed-of", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Measure-composed-of", + "version": "4.0.1", + "name": "composed-of", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Quality Information)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/cqi/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "composed-of", + "base": [ "Measure" ], + "type": "reference", + "expression": "Measure.relatedArtifact.where(type='composed-of').resource", + "xpath": "f:Measure/f:relatedArtifact[f:type/@value='composed-of']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Measure-context", + "resource": { + "resourceType": "SearchParameter", + "id": "Measure-context", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Measure-context", + "version": "4.0.1", + "name": "context", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Quality Information)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/cqi/index.cfm" + } ] + } ], + "description": "A use context assigned to the measure", + "code": "context", + "base": [ "Measure" ], + "type": "token", + "expression": "(Measure.useContext.value as CodeableConcept)", + "xpath": "f:Measure/f:useContext/f:valueCodeableConcept", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Measure-context-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "Measure-context-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Measure-context-quantity", + "version": "4.0.1", + "name": "context-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Quality Information)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/cqi/index.cfm" + } ] + } ], + "description": "A quantity- or range-valued use context assigned to the measure", + "code": "context-quantity", + "base": [ "Measure" ], + "type": "quantity", + "expression": "(Measure.useContext.value as Quantity) | (Measure.useContext.value as Range)", + "xpath": "f:Measure/f:useContext/f:valueQuantity | f:Measure/f:useContext/f:valueRange", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Measure-context-type", + "resource": { + "resourceType": "SearchParameter", + "id": "Measure-context-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Measure-context-type", + "version": "4.0.1", + "name": "context-type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Quality Information)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/cqi/index.cfm" + } ] + } ], + "description": "A type of use context assigned to the measure", + "code": "context-type", + "base": [ "Measure" ], + "type": "token", + "expression": "Measure.useContext.code", + "xpath": "f:Measure/f:useContext/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Measure-date", + "resource": { + "resourceType": "SearchParameter", + "id": "Measure-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Measure-date", + "version": "4.0.1", + "name": "date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Quality Information)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/cqi/index.cfm" + } ] + } ], + "description": "The measure publication date", + "code": "date", + "base": [ "Measure" ], + "type": "date", + "expression": "Measure.date", + "xpath": "f:Measure/f:date", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Measure-depends-on", + "resource": { + "resourceType": "SearchParameter", + "id": "Measure-depends-on", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Measure-depends-on", + "version": "4.0.1", + "name": "depends-on", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Quality Information)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/cqi/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "depends-on", + "base": [ "Measure" ], + "type": "reference", + "expression": "Measure.relatedArtifact.where(type='depends-on').resource | Measure.library", + "xpath": "f:Measure/f:relatedArtifact[f:type/@value='depends-on']/f:resource | f:Measure/f:library", + "xpathUsage": "normal", + "target": [ "Library", "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Measure-derived-from", + "resource": { + "resourceType": "SearchParameter", + "id": "Measure-derived-from", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Measure-derived-from", + "version": "4.0.1", + "name": "derived-from", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Quality Information)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/cqi/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "derived-from", + "base": [ "Measure" ], + "type": "reference", + "expression": "Measure.relatedArtifact.where(type='derived-from').resource", + "xpath": "f:Measure/f:relatedArtifact[f:type/@value='derived-from']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Measure-description", + "resource": { + "resourceType": "SearchParameter", + "id": "Measure-description", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Measure-description", + "version": "4.0.1", + "name": "description", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Quality Information)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/cqi/index.cfm" + } ] + } ], + "description": "The description of the measure", + "code": "description", + "base": [ "Measure" ], + "type": "string", + "expression": "Measure.description", + "xpath": "f:Measure/f:description", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Measure-effective", + "resource": { + "resourceType": "SearchParameter", + "id": "Measure-effective", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Measure-effective", + "version": "4.0.1", + "name": "effective", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Quality Information)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/cqi/index.cfm" + } ] + } ], + "description": "The time during which the measure is intended to be in use", + "code": "effective", + "base": [ "Measure" ], + "type": "date", + "expression": "Measure.effectivePeriod", + "xpath": "f:Measure/f:effectivePeriod", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Measure-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "Measure-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Measure-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Quality Information)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/cqi/index.cfm" + } ] + } ], + "description": "External identifier for the measure", + "code": "identifier", + "base": [ "Measure" ], + "type": "token", + "expression": "Measure.identifier", + "xpath": "f:Measure/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Measure-jurisdiction", + "resource": { + "resourceType": "SearchParameter", + "id": "Measure-jurisdiction", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Measure-jurisdiction", + "version": "4.0.1", + "name": "jurisdiction", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Quality Information)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/cqi/index.cfm" + } ] + } ], + "description": "Intended jurisdiction for the measure", + "code": "jurisdiction", + "base": [ "Measure" ], + "type": "token", + "expression": "Measure.jurisdiction", + "xpath": "f:Measure/f:jurisdiction", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Measure-name", + "resource": { + "resourceType": "SearchParameter", + "id": "Measure-name", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Measure-name", + "version": "4.0.1", + "name": "name", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Quality Information)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/cqi/index.cfm" + } ] + } ], + "description": "Computationally friendly name of the measure", + "code": "name", + "base": [ "Measure" ], + "type": "string", + "expression": "Measure.name", + "xpath": "f:Measure/f:name", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Measure-predecessor", + "resource": { + "resourceType": "SearchParameter", + "id": "Measure-predecessor", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Measure-predecessor", + "version": "4.0.1", + "name": "predecessor", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Quality Information)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/cqi/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "predecessor", + "base": [ "Measure" ], + "type": "reference", + "expression": "Measure.relatedArtifact.where(type='predecessor').resource", + "xpath": "f:Measure/f:relatedArtifact[f:type/@value='predecessor']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Measure-publisher", + "resource": { + "resourceType": "SearchParameter", + "id": "Measure-publisher", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Measure-publisher", + "version": "4.0.1", + "name": "publisher", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Quality Information)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/cqi/index.cfm" + } ] + } ], + "description": "Name of the publisher of the measure", + "code": "publisher", + "base": [ "Measure" ], + "type": "string", + "expression": "Measure.publisher", + "xpath": "f:Measure/f:publisher", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Measure-status", + "resource": { + "resourceType": "SearchParameter", + "id": "Measure-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Measure-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Quality Information)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/cqi/index.cfm" + } ] + } ], + "description": "The current status of the measure", + "code": "status", + "base": [ "Measure" ], + "type": "token", + "expression": "Measure.status", + "xpath": "f:Measure/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Measure-successor", + "resource": { + "resourceType": "SearchParameter", + "id": "Measure-successor", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Measure-successor", + "version": "4.0.1", + "name": "successor", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Quality Information)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/cqi/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "successor", + "base": [ "Measure" ], + "type": "reference", + "expression": "Measure.relatedArtifact.where(type='successor').resource", + "xpath": "f:Measure/f:relatedArtifact[f:type/@value='successor']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Measure-title", + "resource": { + "resourceType": "SearchParameter", + "id": "Measure-title", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Measure-title", + "version": "4.0.1", + "name": "title", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Quality Information)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/cqi/index.cfm" + } ] + } ], + "description": "The human-friendly name of the measure", + "code": "title", + "base": [ "Measure" ], + "type": "string", + "expression": "Measure.title", + "xpath": "f:Measure/f:title", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Measure-topic", + "resource": { + "resourceType": "SearchParameter", + "id": "Measure-topic", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Measure-topic", + "version": "4.0.1", + "name": "topic", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Quality Information)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/cqi/index.cfm" + } ] + } ], + "description": "Topics associated with the measure", + "code": "topic", + "base": [ "Measure" ], + "type": "token", + "expression": "Measure.topic", + "xpath": "f:Measure/f:topic", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Measure-url", + "resource": { + "resourceType": "SearchParameter", + "id": "Measure-url", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Measure-url", + "version": "4.0.1", + "name": "url", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Quality Information)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/cqi/index.cfm" + } ] + } ], + "description": "The uri that identifies the measure", + "code": "url", + "base": [ "Measure" ], + "type": "uri", + "expression": "Measure.url", + "xpath": "f:Measure/f:url", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Measure-version", + "resource": { + "resourceType": "SearchParameter", + "id": "Measure-version", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Measure-version", + "version": "4.0.1", + "name": "version", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Quality Information)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/cqi/index.cfm" + } ] + } ], + "description": "The business version of the measure", + "code": "version", + "base": [ "Measure" ], + "type": "token", + "expression": "Measure.version", + "xpath": "f:Measure/f:version", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Measure-context-type-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "Measure-context-type-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Measure-context-type-quantity", + "version": "4.0.1", + "name": "context-type-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Quality Information)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/cqi/index.cfm" + } ] + } ], + "description": "A use context type and quantity- or range-based value assigned to the measure", + "code": "context-type-quantity", + "base": [ "Measure" ], + "type": "composite", + "expression": "Measure.useContext", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/Measure-context-type", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/Measure-context-quantity", + "expression": "value.as(Quantity) | value.as(Range)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Measure-context-type-value", + "resource": { + "resourceType": "SearchParameter", + "id": "Measure-context-type-value", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Measure-context-type-value", + "version": "4.0.1", + "name": "context-type-value", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Quality Information)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/cqi/index.cfm" + } ] + } ], + "description": "A use context type and value assigned to the measure", + "code": "context-type-value", + "base": [ "Measure" ], + "type": "composite", + "expression": "Measure.useContext", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/Measure-context-type", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/Measure-context", + "expression": "value.as(CodeableConcept)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MeasureReport-date", + "resource": { + "resourceType": "SearchParameter", + "id": "MeasureReport-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MeasureReport-date", + "version": "4.0.1", + "name": "date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Quality Information)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/cqi/index.cfm" + } ] + } ], + "description": "The date of the measure report", + "code": "date", + "base": [ "MeasureReport" ], + "type": "date", + "expression": "MeasureReport.date", + "xpath": "f:MeasureReport/f:date", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MeasureReport-evaluated-resource", + "resource": { + "resourceType": "SearchParameter", + "id": "MeasureReport-evaluated-resource", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MeasureReport-evaluated-resource", + "version": "4.0.1", + "name": "evaluated-resource", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Quality Information)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/cqi/index.cfm" + } ] + } ], + "description": "An evaluated resource referenced by the measure report", + "code": "evaluated-resource", + "base": [ "MeasureReport" ], + "type": "reference", + "expression": "MeasureReport.evaluatedResource", + "xpath": "f:MeasureReport/f:evaluatedResource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MeasureReport-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "MeasureReport-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MeasureReport-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Quality Information)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/cqi/index.cfm" + } ] + } ], + "description": "External identifier of the measure report to be returned", + "code": "identifier", + "base": [ "MeasureReport" ], + "type": "token", + "expression": "MeasureReport.identifier", + "xpath": "f:MeasureReport/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MeasureReport-measure", + "resource": { + "resourceType": "SearchParameter", + "id": "MeasureReport-measure", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MeasureReport-measure", + "version": "4.0.1", + "name": "measure", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Quality Information)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/cqi/index.cfm" + } ] + } ], + "description": "The measure to return measure report results for", + "code": "measure", + "base": [ "MeasureReport" ], + "type": "reference", + "expression": "MeasureReport.measure", + "xpath": "f:MeasureReport/f:measure", + "xpathUsage": "normal", + "target": [ "Measure" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MeasureReport-patient", + "resource": { + "resourceType": "SearchParameter", + "id": "MeasureReport-patient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MeasureReport-patient", + "version": "4.0.1", + "name": "patient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Quality Information)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/cqi/index.cfm" + } ] + } ], + "description": "The identity of a patient to search for individual measure report results for", + "code": "patient", + "base": [ "MeasureReport" ], + "type": "reference", + "expression": "MeasureReport.subject.where(resolve() is Patient)", + "xpath": "f:MeasureReport/f:subject", + "xpathUsage": "normal", + "target": [ "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MeasureReport-period", + "resource": { + "resourceType": "SearchParameter", + "id": "MeasureReport-period", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MeasureReport-period", + "version": "4.0.1", + "name": "period", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Quality Information)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/cqi/index.cfm" + } ] + } ], + "description": "The period of the measure report", + "code": "period", + "base": [ "MeasureReport" ], + "type": "date", + "expression": "MeasureReport.period", + "xpath": "f:MeasureReport/f:period", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MeasureReport-reporter", + "resource": { + "resourceType": "SearchParameter", + "id": "MeasureReport-reporter", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MeasureReport-reporter", + "version": "4.0.1", + "name": "reporter", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Quality Information)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/cqi/index.cfm" + } ] + } ], + "description": "The reporter to return measure report results for", + "code": "reporter", + "base": [ "MeasureReport" ], + "type": "reference", + "expression": "MeasureReport.reporter", + "xpath": "f:MeasureReport/f:reporter", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "PractitionerRole", "Location" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MeasureReport-status", + "resource": { + "resourceType": "SearchParameter", + "id": "MeasureReport-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MeasureReport-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Quality Information)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/cqi/index.cfm" + } ] + } ], + "description": "The status of the measure report", + "code": "status", + "base": [ "MeasureReport" ], + "type": "token", + "expression": "MeasureReport.status", + "xpath": "f:MeasureReport/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MeasureReport-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "MeasureReport-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MeasureReport-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Quality Information)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/cqi/index.cfm" + } ] + } ], + "description": "The identity of a subject to search for individual measure report results for", + "code": "subject", + "base": [ "MeasureReport" ], + "type": "reference", + "expression": "MeasureReport.subject", + "xpath": "f:MeasureReport/f:subject", + "xpathUsage": "normal", + "target": [ "Practitioner", "Group", "Device", "Patient", "PractitionerRole", "RelatedPerson", "Location" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Media-based-on", + "resource": { + "resourceType": "SearchParameter", + "id": "Media-based-on", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Media-based-on", + "version": "4.0.1", + "name": "based-on", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Procedure that caused this media to be created", + "code": "based-on", + "base": [ "Media" ], + "type": "reference", + "expression": "Media.basedOn", + "xpath": "f:Media/f:basedOn", + "xpathUsage": "normal", + "target": [ "CarePlan", "ServiceRequest" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Media-created", + "resource": { + "resourceType": "SearchParameter", + "id": "Media-created", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Media-created", + "version": "4.0.1", + "name": "created", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "When Media was collected", + "code": "created", + "base": [ "Media" ], + "type": "date", + "expression": "Media.created", + "xpath": "f:Media/f:createdDateTime | f:Media/f:createdPeriod", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Media-device", + "resource": { + "resourceType": "SearchParameter", + "id": "Media-device", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Media-device", + "version": "4.0.1", + "name": "device", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Observing Device", + "code": "device", + "base": [ "Media" ], + "type": "reference", + "expression": "Media.device", + "xpath": "f:Media/f:device", + "xpathUsage": "normal", + "target": [ "Device", "DeviceMetric" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Media-encounter", + "resource": { + "resourceType": "SearchParameter", + "id": "Media-encounter", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Media-encounter", + "version": "4.0.1", + "name": "encounter", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Encounter associated with media", + "code": "encounter", + "base": [ "Media" ], + "type": "reference", + "expression": "Media.encounter", + "xpath": "f:Media/f:encounter", + "xpathUsage": "normal", + "target": [ "Encounter" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Media-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "Media-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Media-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Identifier(s) for the image", + "code": "identifier", + "base": [ "Media" ], + "type": "token", + "expression": "Media.identifier", + "xpath": "f:Media/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Media-modality", + "resource": { + "resourceType": "SearchParameter", + "id": "Media-modality", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Media-modality", + "version": "4.0.1", + "name": "modality", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The type of acquisition equipment/process", + "code": "modality", + "base": [ "Media" ], + "type": "token", + "expression": "Media.modality", + "xpath": "f:Media/f:modality", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Media-operator", + "resource": { + "resourceType": "SearchParameter", + "id": "Media-operator", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Media-operator", + "version": "4.0.1", + "name": "operator", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The person who generated the image", + "code": "operator", + "base": [ "Media" ], + "type": "reference", + "expression": "Media.operator", + "xpath": "f:Media/f:operator", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "CareTeam", "Device", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Media-patient", + "resource": { + "resourceType": "SearchParameter", + "id": "Media-patient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Media-patient", + "version": "4.0.1", + "name": "patient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Who/What this Media is a record of", + "code": "patient", + "base": [ "Media" ], + "type": "reference", + "expression": "Media.subject.where(resolve() is Patient)", + "xpath": "f:Media/f:subject", + "xpathUsage": "normal", + "target": [ "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Media-site", + "resource": { + "resourceType": "SearchParameter", + "id": "Media-site", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Media-site", + "version": "4.0.1", + "name": "site", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Observed body part", + "code": "site", + "base": [ "Media" ], + "type": "token", + "expression": "Media.bodySite", + "xpath": "f:Media/f:bodySite", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Media-status", + "resource": { + "resourceType": "SearchParameter", + "id": "Media-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Media-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "preparation | in-progress | not-done | on-hold | stopped | completed | entered-in-error | unknown", + "code": "status", + "base": [ "Media" ], + "type": "token", + "expression": "Media.status", + "xpath": "f:Media/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Media-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "Media-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Media-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Who/What this Media is a record of", + "code": "subject", + "base": [ "Media" ], + "type": "reference", + "expression": "Media.subject", + "xpath": "f:Media/f:subject", + "xpathUsage": "normal", + "target": [ "Practitioner", "Group", "Specimen", "Device", "Patient", "PractitionerRole", "Location" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Media-type", + "resource": { + "resourceType": "SearchParameter", + "id": "Media-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Media-type", + "version": "4.0.1", + "name": "type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Classification of media as image, video, or audio", + "code": "type", + "base": [ "Media" ], + "type": "token", + "expression": "Media.type", + "xpath": "f:Media/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Media-view", + "resource": { + "resourceType": "SearchParameter", + "id": "Media-view", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Media-view", + "version": "4.0.1", + "name": "view", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Imaging view, e.g. Lateral or Antero-posterior", + "code": "view", + "base": [ "Media" ], + "type": "token", + "expression": "Media.view", + "xpath": "f:Media/f:view", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Medication-expiration-date", + "resource": { + "resourceType": "SearchParameter", + "id": "Medication-expiration-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Medication-expiration-date", + "version": "4.0.1", + "name": "expiration-date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Returns medications in a batch with this expiration date", + "code": "expiration-date", + "base": [ "Medication" ], + "type": "date", + "expression": "Medication.batch.expirationDate", + "xpath": "f:Medication/f:batch/f:expirationDate", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Medication-form", + "resource": { + "resourceType": "SearchParameter", + "id": "Medication-form", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Medication-form", + "version": "4.0.1", + "name": "form", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Returns medications for a specific dose form", + "code": "form", + "base": [ "Medication" ], + "type": "token", + "expression": "Medication.form", + "xpath": "f:Medication/f:form", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Medication-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "Medication-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Medication-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Returns medications with this external identifier", + "code": "identifier", + "base": [ "Medication" ], + "type": "token", + "expression": "Medication.identifier", + "xpath": "f:Medication/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Medication-ingredient", + "resource": { + "resourceType": "SearchParameter", + "id": "Medication-ingredient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Medication-ingredient", + "version": "4.0.1", + "name": "ingredient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Returns medications for this ingredient reference", + "code": "ingredient", + "base": [ "Medication" ], + "type": "reference", + "expression": "(Medication.ingredient.item as Reference)", + "xpath": "f:Medication/f:ingredient/f:itemReference", + "xpathUsage": "normal", + "target": [ "Medication", "Substance" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Medication-ingredient-code", + "resource": { + "resourceType": "SearchParameter", + "id": "Medication-ingredient-code", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Medication-ingredient-code", + "version": "4.0.1", + "name": "ingredient-code", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Returns medications for this ingredient code", + "code": "ingredient-code", + "base": [ "Medication" ], + "type": "token", + "expression": "(Medication.ingredient.item as CodeableConcept)", + "xpath": "f:Medication/f:ingredient/f:itemCodeableConcept", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Medication-lot-number", + "resource": { + "resourceType": "SearchParameter", + "id": "Medication-lot-number", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Medication-lot-number", + "version": "4.0.1", + "name": "lot-number", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Returns medications in a batch with this lot number", + "code": "lot-number", + "base": [ "Medication" ], + "type": "token", + "expression": "Medication.batch.lotNumber", + "xpath": "f:Medication/f:batch/f:lotNumber", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Medication-manufacturer", + "resource": { + "resourceType": "SearchParameter", + "id": "Medication-manufacturer", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Medication-manufacturer", + "version": "4.0.1", + "name": "manufacturer", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Returns medications made or sold for this manufacturer", + "code": "manufacturer", + "base": [ "Medication" ], + "type": "reference", + "expression": "Medication.manufacturer", + "xpath": "f:Medication/f:manufacturer", + "xpathUsage": "normal", + "target": [ "Organization" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Medication-status", + "resource": { + "resourceType": "SearchParameter", + "id": "Medication-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Medication-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Returns medications for this status", + "code": "status", + "base": [ "Medication" ], + "type": "token", + "expression": "Medication.status", + "xpath": "f:Medication/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationAdministration-context", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationAdministration-context", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationAdministration-context", + "version": "4.0.1", + "name": "context", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Return administrations that share this encounter or episode of care", + "code": "context", + "base": [ "MedicationAdministration" ], + "type": "reference", + "expression": "MedicationAdministration.context", + "xpath": "f:MedicationAdministration/f:context", + "xpathUsage": "normal", + "target": [ "EpisodeOfCare", "Encounter" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationAdministration-device", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationAdministration-device", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationAdministration-device", + "version": "4.0.1", + "name": "device", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Return administrations with this administration device identity", + "code": "device", + "base": [ "MedicationAdministration" ], + "type": "reference", + "expression": "MedicationAdministration.device", + "xpath": "f:MedicationAdministration/f:device", + "xpathUsage": "normal", + "target": [ "Device" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationAdministration-effective-time", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationAdministration-effective-time", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationAdministration-effective-time", + "version": "4.0.1", + "name": "effective-time", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Date administration happened (or did not happen)", + "code": "effective-time", + "base": [ "MedicationAdministration" ], + "type": "date", + "expression": "MedicationAdministration.effective", + "xpath": "f:MedicationAdministration/f:effectiveDateTime | f:MedicationAdministration/f:effectivePeriod", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/medications-medication", + "resource": { + "resourceType": "SearchParameter", + "id": "medications-medication", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/medications-medication", + "version": "4.0.1", + "name": "medication", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [MedicationAdministration](medicationadministration.html): Return administrations of this medication resource\r\n* [MedicationDispense](medicationdispense.html): Returns dispenses of this medicine resource\r\n* [MedicationRequest](medicationrequest.html): Return prescriptions for this medication reference\r\n* [MedicationStatement](medicationstatement.html): Return statements of this medication reference\r\n", + "code": "medication", + "base": [ "MedicationAdministration", "MedicationDispense", "MedicationRequest", "MedicationStatement" ], + "type": "reference", + "expression": "(MedicationAdministration.medication as Reference) | (MedicationDispense.medication as Reference) | (MedicationRequest.medication as Reference) | (MedicationStatement.medication as Reference)", + "xpath": "f:MedicationAdministration/f:medicationReference | f:MedicationDispense/f:medicationReference | f:MedicationRequest/f:medicationReference | f:MedicationStatement/f:medicationReference", + "xpathUsage": "normal", + "target": [ "Medication" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationAdministration-performer", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationAdministration-performer", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationAdministration-performer", + "version": "4.0.1", + "name": "performer", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "The identity of the individual who administered the medication", + "code": "performer", + "base": [ "MedicationAdministration" ], + "type": "reference", + "expression": "MedicationAdministration.performer.actor", + "xpath": "f:MedicationAdministration/f:performer/f:actor", + "xpathUsage": "normal", + "target": [ "Practitioner", "Device", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationAdministration-reason-given", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationAdministration-reason-given", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationAdministration-reason-given", + "version": "4.0.1", + "name": "reason-given", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Reasons for administering the medication", + "code": "reason-given", + "base": [ "MedicationAdministration" ], + "type": "token", + "expression": "MedicationAdministration.reasonCode", + "xpath": "f:MedicationAdministration/f:reasonCode", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationAdministration-reason-not-given", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationAdministration-reason-not-given", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationAdministration-reason-not-given", + "version": "4.0.1", + "name": "reason-not-given", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Reasons for not administering the medication", + "code": "reason-not-given", + "base": [ "MedicationAdministration" ], + "type": "token", + "expression": "MedicationAdministration.statusReason", + "xpath": "f:MedicationAdministration/f:statusReason", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationAdministration-request", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationAdministration-request", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationAdministration-request", + "version": "4.0.1", + "name": "request", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "The identity of a request to list administrations from", + "code": "request", + "base": [ "MedicationAdministration" ], + "type": "reference", + "expression": "MedicationAdministration.request", + "xpath": "f:MedicationAdministration/f:request", + "xpathUsage": "normal", + "target": [ "MedicationRequest" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/medications-status", + "resource": { + "resourceType": "SearchParameter", + "id": "medications-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/medications-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [MedicationAdministration](medicationadministration.html): MedicationAdministration event status (for example one of active/paused/completed/nullified)\r\n* [MedicationDispense](medicationdispense.html): Returns dispenses with a specified dispense status\r\n* [MedicationRequest](medicationrequest.html): Status of the prescription\r\n* [MedicationStatement](medicationstatement.html): Return statements that match the given status\r\n", + "code": "status", + "base": [ "MedicationAdministration", "MedicationDispense", "MedicationRequest", "MedicationStatement" ], + "type": "token", + "expression": "MedicationAdministration.status | MedicationDispense.status | MedicationRequest.status | MedicationStatement.status", + "xpath": "f:MedicationAdministration/f:status | f:MedicationDispense/f:status | f:MedicationRequest/f:status | f:MedicationStatement/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationAdministration-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationAdministration-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationAdministration-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "The identity of the individual or group to list administrations for", + "code": "subject", + "base": [ "MedicationAdministration" ], + "type": "reference", + "expression": "MedicationAdministration.subject", + "xpath": "f:MedicationAdministration/f:subject", + "xpathUsage": "normal", + "target": [ "Group", "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationDispense-context", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationDispense-context", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationDispense-context", + "version": "4.0.1", + "name": "context", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Returns dispenses with a specific context (episode or episode of care)", + "code": "context", + "base": [ "MedicationDispense" ], + "type": "reference", + "expression": "MedicationDispense.context", + "xpath": "f:MedicationDispense/f:context", + "xpathUsage": "normal", + "target": [ "EpisodeOfCare", "Encounter" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationDispense-destination", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationDispense-destination", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationDispense-destination", + "version": "4.0.1", + "name": "destination", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Returns dispenses that should be sent to a specific destination", + "code": "destination", + "base": [ "MedicationDispense" ], + "type": "reference", + "expression": "MedicationDispense.destination", + "xpath": "f:MedicationDispense/f:destination", + "xpathUsage": "normal", + "target": [ "Location" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationDispense-performer", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationDispense-performer", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationDispense-performer", + "version": "4.0.1", + "name": "performer", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Returns dispenses performed by a specific individual", + "code": "performer", + "base": [ "MedicationDispense" ], + "type": "reference", + "expression": "MedicationDispense.performer.actor", + "xpath": "f:MedicationDispense/f:performer/f:actor", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "Device", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/medications-prescription", + "resource": { + "resourceType": "SearchParameter", + "id": "medications-prescription", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/medications-prescription", + "version": "4.0.1", + "name": "prescription", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [MedicationDispense](medicationdispense.html): The identity of a prescription to list dispenses from\r\n", + "code": "prescription", + "base": [ "MedicationDispense" ], + "type": "reference", + "expression": "MedicationDispense.authorizingPrescription", + "xpath": "f:MedicationDispense/f:authorizingPrescription", + "xpathUsage": "normal", + "target": [ "MedicationRequest" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationDispense-receiver", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationDispense-receiver", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationDispense-receiver", + "version": "4.0.1", + "name": "receiver", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "The identity of a receiver to list dispenses for", + "code": "receiver", + "base": [ "MedicationDispense" ], + "type": "reference", + "expression": "MedicationDispense.receiver", + "xpath": "f:MedicationDispense/f:receiver", + "xpathUsage": "normal", + "target": [ "Practitioner", "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationDispense-responsibleparty", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationDispense-responsibleparty", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationDispense-responsibleparty", + "version": "4.0.1", + "name": "responsibleparty", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Returns dispenses with the specified responsible party", + "code": "responsibleparty", + "base": [ "MedicationDispense" ], + "type": "reference", + "expression": "MedicationDispense.substitution.responsibleParty", + "xpath": "f:MedicationDispense/f:substitution/f:responsibleParty", + "xpathUsage": "normal", + "target": [ "Practitioner", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationDispense-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationDispense-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationDispense-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "The identity of a patient for whom to list dispenses", + "code": "subject", + "base": [ "MedicationDispense" ], + "type": "reference", + "expression": "MedicationDispense.subject", + "xpath": "f:MedicationDispense/f:subject", + "xpathUsage": "normal", + "target": [ "Group", "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationDispense-type", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationDispense-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationDispense-type", + "version": "4.0.1", + "name": "type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Returns dispenses of a specific type", + "code": "type", + "base": [ "MedicationDispense" ], + "type": "token", + "expression": "MedicationDispense.type", + "xpath": "f:MedicationDispense/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationDispense-whenhandedover", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationDispense-whenhandedover", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationDispense-whenhandedover", + "version": "4.0.1", + "name": "whenhandedover", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Returns dispenses handed over on this date", + "code": "whenhandedover", + "base": [ "MedicationDispense" ], + "type": "date", + "expression": "MedicationDispense.whenHandedOver", + "xpath": "f:MedicationDispense/f:whenHandedOver", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationDispense-whenprepared", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationDispense-whenprepared", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationDispense-whenprepared", + "version": "4.0.1", + "name": "whenprepared", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Returns dispenses prepared on this date", + "code": "whenprepared", + "base": [ "MedicationDispense" ], + "type": "date", + "expression": "MedicationDispense.whenPrepared", + "xpath": "f:MedicationDispense/f:whenPrepared", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationKnowledge-classification", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationKnowledge-classification", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationKnowledge-classification", + "version": "4.0.1", + "name": "classification", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Specific category assigned to the medication", + "code": "classification", + "base": [ "MedicationKnowledge" ], + "type": "token", + "expression": "MedicationKnowledge.medicineClassification.classification", + "xpath": "f:MedicationKnowledge/f:medicineClassification/f:classification", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationKnowledge-classification-type", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationKnowledge-classification-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationKnowledge-classification-type", + "version": "4.0.1", + "name": "classification-type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "The type of category for the medication (for example, therapeutic classification, therapeutic sub-classification)", + "code": "classification-type", + "base": [ "MedicationKnowledge" ], + "type": "token", + "expression": "MedicationKnowledge.medicineClassification.type", + "xpath": "f:MedicationKnowledge/f:medicineClassification/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationKnowledge-code", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationKnowledge-code", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationKnowledge-code", + "version": "4.0.1", + "name": "code", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Code that identifies this medication", + "code": "code", + "base": [ "MedicationKnowledge" ], + "type": "token", + "expression": "MedicationKnowledge.code", + "xpath": "f:MedicationKnowledge/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationKnowledge-doseform", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationKnowledge-doseform", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationKnowledge-doseform", + "version": "4.0.1", + "name": "doseform", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "powder | tablets | capsule +", + "code": "doseform", + "base": [ "MedicationKnowledge" ], + "type": "token", + "expression": "MedicationKnowledge.doseForm", + "xpath": "f:MedicationKnowledge/f:doseForm", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationKnowledge-ingredient", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationKnowledge-ingredient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationKnowledge-ingredient", + "version": "4.0.1", + "name": "ingredient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Medication(s) or substance(s) contained in the medication", + "code": "ingredient", + "base": [ "MedicationKnowledge" ], + "type": "reference", + "expression": "(MedicationKnowledge.ingredient.item as Reference)", + "xpath": "f:MedicationKnowledge/f:ingredient/f:itemReference", + "xpathUsage": "normal", + "target": [ "Substance" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationKnowledge-ingredient-code", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationKnowledge-ingredient-code", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationKnowledge-ingredient-code", + "version": "4.0.1", + "name": "ingredient-code", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Medication(s) or substance(s) contained in the medication", + "code": "ingredient-code", + "base": [ "MedicationKnowledge" ], + "type": "token", + "expression": "(MedicationKnowledge.ingredient.item as CodeableConcept)", + "xpath": "f:MedicationKnowledge/f:ingredient/f:itemCodeableConcept", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationKnowledge-manufacturer", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationKnowledge-manufacturer", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationKnowledge-manufacturer", + "version": "4.0.1", + "name": "manufacturer", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Manufacturer of the item", + "code": "manufacturer", + "base": [ "MedicationKnowledge" ], + "type": "reference", + "expression": "MedicationKnowledge.manufacturer", + "xpath": "f:MedicationKnowledge/f:manufacturer", + "xpathUsage": "normal", + "target": [ "Organization" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationKnowledge-monitoring-program-name", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationKnowledge-monitoring-program-name", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationKnowledge-monitoring-program-name", + "version": "4.0.1", + "name": "monitoring-program-name", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Name of the reviewing program", + "code": "monitoring-program-name", + "base": [ "MedicationKnowledge" ], + "type": "token", + "expression": "MedicationKnowledge.monitoringProgram.name", + "xpath": "f:MedicationKnowledge/f:monitoringProgram/f:name", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationKnowledge-monitoring-program-type", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationKnowledge-monitoring-program-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationKnowledge-monitoring-program-type", + "version": "4.0.1", + "name": "monitoring-program-type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Type of program under which the medication is monitored", + "code": "monitoring-program-type", + "base": [ "MedicationKnowledge" ], + "type": "token", + "expression": "MedicationKnowledge.monitoringProgram.type", + "xpath": "f:MedicationKnowledge/f:monitoringProgram/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationKnowledge-monograph", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationKnowledge-monograph", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationKnowledge-monograph", + "version": "4.0.1", + "name": "monograph", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Associated documentation about the medication", + "code": "monograph", + "base": [ "MedicationKnowledge" ], + "type": "reference", + "expression": "MedicationKnowledge.monograph.source", + "xpath": "f:MedicationKnowledge/f:monograph/f:source", + "xpathUsage": "normal", + "target": [ "Media", "DocumentReference" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationKnowledge-monograph-type", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationKnowledge-monograph-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationKnowledge-monograph-type", + "version": "4.0.1", + "name": "monograph-type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "The category of medication document", + "code": "monograph-type", + "base": [ "MedicationKnowledge" ], + "type": "token", + "expression": "MedicationKnowledge.monograph.type", + "xpath": "f:MedicationKnowledge/f:monograph/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationKnowledge-source-cost", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationKnowledge-source-cost", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationKnowledge-source-cost", + "version": "4.0.1", + "name": "source-cost", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "The source or owner for the price information", + "code": "source-cost", + "base": [ "MedicationKnowledge" ], + "type": "token", + "expression": "MedicationKnowledge.cost.source", + "xpath": "f:MedicationKnowledge/f:cost/f:source", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationKnowledge-status", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationKnowledge-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationKnowledge-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "active | inactive | entered-in-error", + "code": "status", + "base": [ "MedicationKnowledge" ], + "type": "token", + "expression": "MedicationKnowledge.status", + "xpath": "f:MedicationKnowledge/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationRequest-authoredon", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationRequest-authoredon", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationRequest-authoredon", + "version": "4.0.1", + "name": "authoredon", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Return prescriptions written on this date", + "code": "authoredon", + "base": [ "MedicationRequest" ], + "type": "date", + "expression": "MedicationRequest.authoredOn", + "xpath": "f:MedicationRequest/f:authoredOn", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationRequest-category", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationRequest-category", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationRequest-category", + "version": "4.0.1", + "name": "category", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Returns prescriptions with different categories", + "code": "category", + "base": [ "MedicationRequest" ], + "type": "token", + "expression": "MedicationRequest.category", + "xpath": "f:MedicationRequest/f:category", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/medications-date", + "resource": { + "resourceType": "SearchParameter", + "id": "medications-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/medications-date", + "version": "4.0.1", + "name": "date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [MedicationRequest](medicationrequest.html): Returns medication request to be administered on a specific date\r\n", + "code": "date", + "base": [ "MedicationRequest" ], + "type": "date", + "expression": "MedicationRequest.dosageInstruction.timing.event", + "xpath": "f:MedicationRequest/f:dosageInstruction/f:timing/f:event", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/medications-encounter", + "resource": { + "resourceType": "SearchParameter", + "id": "medications-encounter", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/medications-encounter", + "version": "4.0.1", + "name": "encounter", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [MedicationRequest](medicationrequest.html): Return prescriptions with this encounter identifier\r\n", + "code": "encounter", + "base": [ "MedicationRequest" ], + "type": "reference", + "expression": "MedicationRequest.encounter", + "xpath": "f:MedicationRequest/f:encounter", + "xpathUsage": "normal", + "target": [ "Encounter" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationRequest-intended-dispenser", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationRequest-intended-dispenser", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationRequest-intended-dispenser", + "version": "4.0.1", + "name": "intended-dispenser", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Returns prescriptions intended to be dispensed by this Organization", + "code": "intended-dispenser", + "base": [ "MedicationRequest" ], + "type": "reference", + "expression": "MedicationRequest.dispenseRequest.performer", + "xpath": "f:MedicationRequest/f:dispenseRequest/f:performer", + "xpathUsage": "normal", + "target": [ "Organization" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationRequest-intended-performer", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationRequest-intended-performer", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationRequest-intended-performer", + "version": "4.0.1", + "name": "intended-performer", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Returns the intended performer of the administration of the medication request", + "code": "intended-performer", + "base": [ "MedicationRequest" ], + "type": "reference", + "expression": "MedicationRequest.performer", + "xpath": "f:MedicationRequest/f:performer", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "CareTeam", "Device", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationRequest-intended-performertype", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationRequest-intended-performertype", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationRequest-intended-performertype", + "version": "4.0.1", + "name": "intended-performertype", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Returns requests for a specific type of performer", + "code": "intended-performertype", + "base": [ "MedicationRequest" ], + "type": "token", + "expression": "MedicationRequest.performerType", + "xpath": "f:MedicationRequest/f:performerType", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationRequest-intent", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationRequest-intent", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationRequest-intent", + "version": "4.0.1", + "name": "intent", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Returns prescriptions with different intents", + "code": "intent", + "base": [ "MedicationRequest" ], + "type": "token", + "expression": "MedicationRequest.intent", + "xpath": "f:MedicationRequest/f:intent", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationRequest-priority", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationRequest-priority", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationRequest-priority", + "version": "4.0.1", + "name": "priority", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Returns prescriptions with different priorities", + "code": "priority", + "base": [ "MedicationRequest" ], + "type": "token", + "expression": "MedicationRequest.priority", + "xpath": "f:MedicationRequest/f:priority", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationRequest-requester", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationRequest-requester", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationRequest-requester", + "version": "4.0.1", + "name": "requester", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Returns prescriptions prescribed by this prescriber", + "code": "requester", + "base": [ "MedicationRequest" ], + "type": "reference", + "expression": "MedicationRequest.requester", + "xpath": "f:MedicationRequest/f:requester", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "Device", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationRequest-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationRequest-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationRequest-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "The identity of a patient to list orders for", + "code": "subject", + "base": [ "MedicationRequest" ], + "type": "reference", + "expression": "MedicationRequest.subject", + "xpath": "f:MedicationRequest/f:subject", + "xpathUsage": "normal", + "target": [ "Group", "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationStatement-category", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationStatement-category", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationStatement-category", + "version": "4.0.1", + "name": "category", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Returns statements of this category of medicationstatement", + "code": "category", + "base": [ "MedicationStatement" ], + "type": "token", + "expression": "MedicationStatement.category", + "xpath": "f:MedicationStatement/f:category", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationStatement-context", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationStatement-context", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationStatement-context", + "version": "4.0.1", + "name": "context", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Returns statements for a specific context (episode or episode of Care).", + "code": "context", + "base": [ "MedicationStatement" ], + "type": "reference", + "expression": "MedicationStatement.context", + "xpath": "f:MedicationStatement/f:context", + "xpathUsage": "normal", + "target": [ "EpisodeOfCare", "Encounter" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationStatement-effective", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationStatement-effective", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationStatement-effective", + "version": "4.0.1", + "name": "effective", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Date when patient was taking (or not taking) the medication", + "code": "effective", + "base": [ "MedicationStatement" ], + "type": "date", + "expression": "MedicationStatement.effective", + "xpath": "f:MedicationStatement/f:effectiveDateTime | f:MedicationStatement/f:effectivePeriod", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationStatement-part-of", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationStatement-part-of", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationStatement-part-of", + "version": "4.0.1", + "name": "part-of", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Returns statements that are part of another event.", + "code": "part-of", + "base": [ "MedicationStatement" ], + "type": "reference", + "expression": "MedicationStatement.partOf", + "xpath": "f:MedicationStatement/f:partOf", + "xpathUsage": "normal", + "target": [ "MedicationDispense", "Observation", "MedicationAdministration", "Procedure", "MedicationStatement" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationStatement-source", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationStatement-source", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationStatement-source", + "version": "4.0.1", + "name": "source", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "Who or where the information in the statement came from", + "code": "source", + "base": [ "MedicationStatement" ], + "type": "reference", + "expression": "MedicationStatement.informationSource", + "xpath": "f:MedicationStatement/f:informationSource", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicationStatement-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicationStatement-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicationStatement-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Pharmacy)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/medication/index.cfm" + } ] + } ], + "description": "The identity of a patient, animal or group to list statements for", + "code": "subject", + "base": [ "MedicationStatement" ], + "type": "reference", + "expression": "MedicationStatement.subject", + "xpath": "f:MedicationStatement/f:subject", + "xpathUsage": "normal", + "target": [ "Group", "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicinalProduct-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicinalProduct-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicinalProduct-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Biomedical Research and Regulation)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/rcrim/index.cfm" + } ] + } ], + "description": "Business identifier for this product. Could be an MPID", + "code": "identifier", + "base": [ "MedicinalProduct" ], + "type": "token", + "expression": "MedicinalProduct.identifier", + "xpath": "f:MedicinalProduct/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicinalProduct-name", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicinalProduct-name", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicinalProduct-name", + "version": "4.0.1", + "name": "name", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Biomedical Research and Regulation)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/rcrim/index.cfm" + } ] + } ], + "description": "The full product name", + "code": "name", + "base": [ "MedicinalProduct" ], + "type": "string", + "expression": "MedicinalProduct.name.productName", + "xpath": "f:MedicinalProduct/f:name/f:productName", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicinalProduct-name-language", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicinalProduct-name-language", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicinalProduct-name-language", + "version": "4.0.1", + "name": "name-language", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Biomedical Research and Regulation)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/rcrim/index.cfm" + } ] + } ], + "description": "Language code for this name", + "code": "name-language", + "base": [ "MedicinalProduct" ], + "type": "token", + "expression": "MedicinalProduct.name.countryLanguage.language", + "xpath": "f:MedicinalProduct/f:name/f:countryLanguage/f:language", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicinalProductAuthorization-country", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicinalProductAuthorization-country", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicinalProductAuthorization-country", + "version": "4.0.1", + "name": "country", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Biomedical Research and Regulation)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/rcrim/index.cfm" + } ] + } ], + "description": "The country in which the marketing authorization has been granted", + "code": "country", + "base": [ "MedicinalProductAuthorization" ], + "type": "token", + "expression": "MedicinalProductAuthorization.country", + "xpath": "f:MedicinalProductAuthorization/f:country", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicinalProductAuthorization-holder", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicinalProductAuthorization-holder", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicinalProductAuthorization-holder", + "version": "4.0.1", + "name": "holder", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Biomedical Research and Regulation)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/rcrim/index.cfm" + } ] + } ], + "description": "Marketing Authorization Holder", + "code": "holder", + "base": [ "MedicinalProductAuthorization" ], + "type": "reference", + "expression": "MedicinalProductAuthorization.holder", + "xpath": "f:MedicinalProductAuthorization/f:holder", + "xpathUsage": "normal", + "target": [ "Organization" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicinalProductAuthorization-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicinalProductAuthorization-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicinalProductAuthorization-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Biomedical Research and Regulation)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/rcrim/index.cfm" + } ] + } ], + "description": "Business identifier for the marketing authorization, as assigned by a regulator", + "code": "identifier", + "base": [ "MedicinalProductAuthorization" ], + "type": "token", + "expression": "MedicinalProductAuthorization.identifier", + "xpath": "f:MedicinalProductAuthorization/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicinalProductAuthorization-status", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicinalProductAuthorization-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicinalProductAuthorization-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Biomedical Research and Regulation)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/rcrim/index.cfm" + } ] + } ], + "description": "The status of the marketing authorization", + "code": "status", + "base": [ "MedicinalProductAuthorization" ], + "type": "token", + "expression": "MedicinalProductAuthorization.status", + "xpath": "f:MedicinalProductAuthorization/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicinalProductAuthorization-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicinalProductAuthorization-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicinalProductAuthorization-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Biomedical Research and Regulation)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/rcrim/index.cfm" + } ] + } ], + "description": "The medicinal product that is being authorized", + "code": "subject", + "base": [ "MedicinalProductAuthorization" ], + "type": "reference", + "expression": "MedicinalProductAuthorization.subject", + "xpath": "f:MedicinalProductAuthorization/f:subject", + "xpathUsage": "normal", + "target": [ "MedicinalProductPackaged", "MedicinalProduct" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicinalProductContraindication-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicinalProductContraindication-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicinalProductContraindication-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Biomedical Research and Regulation)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/rcrim/index.cfm" + } ] + } ], + "description": "The medication for which this is an contraindication", + "code": "subject", + "base": [ "MedicinalProductContraindication" ], + "type": "reference", + "expression": "MedicinalProductContraindication.subject", + "xpath": "f:MedicinalProductContraindication/f:subject", + "xpathUsage": "normal", + "target": [ "Medication", "MedicinalProduct" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicinalProductIndication-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicinalProductIndication-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicinalProductIndication-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Biomedical Research and Regulation)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/rcrim/index.cfm" + } ] + } ], + "description": "The medication for which this is an indication", + "code": "subject", + "base": [ "MedicinalProductIndication" ], + "type": "reference", + "expression": "MedicinalProductIndication.subject", + "xpath": "f:MedicinalProductIndication/f:subject", + "xpathUsage": "normal", + "target": [ "Medication", "MedicinalProduct" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicinalProductInteraction-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicinalProductInteraction-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicinalProductInteraction-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Biomedical Research and Regulation)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/rcrim/index.cfm" + } ] + } ], + "description": "The medication for which this is an interaction", + "code": "subject", + "base": [ "MedicinalProductInteraction" ], + "type": "reference", + "expression": "MedicinalProductInteraction.subject", + "xpath": "f:MedicinalProductInteraction/f:subject", + "xpathUsage": "normal", + "target": [ "Medication", "Substance", "MedicinalProduct" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicinalProductPackaged-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicinalProductPackaged-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicinalProductPackaged-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Biomedical Research and Regulation)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/rcrim/index.cfm" + } ] + } ], + "description": "Unique identifier", + "code": "identifier", + "base": [ "MedicinalProductPackaged" ], + "type": "token", + "expression": "MedicinalProductPackaged.identifier", + "xpath": "f:MedicinalProductPackaged/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicinalProductPackaged-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicinalProductPackaged-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicinalProductPackaged-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Biomedical Research and Regulation)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/rcrim/index.cfm" + } ] + } ], + "description": "The product with this is a pack for", + "code": "subject", + "base": [ "MedicinalProductPackaged" ], + "type": "reference", + "expression": "MedicinalProductPackaged.subject", + "xpath": "f:MedicinalProductPackaged/f:subject", + "xpathUsage": "normal", + "target": [ "MedicinalProduct" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicinalProductPharmaceutical-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicinalProductPharmaceutical-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicinalProductPharmaceutical-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Biomedical Research and Regulation)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/rcrim/index.cfm" + } ] + } ], + "description": "An identifier for the pharmaceutical medicinal product", + "code": "identifier", + "base": [ "MedicinalProductPharmaceutical" ], + "type": "token", + "expression": "MedicinalProductPharmaceutical.identifier", + "xpath": "f:MedicinalProductPharmaceutical/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicinalProductPharmaceutical-route", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicinalProductPharmaceutical-route", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicinalProductPharmaceutical-route", + "version": "4.0.1", + "name": "route", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Biomedical Research and Regulation)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/rcrim/index.cfm" + } ] + } ], + "description": "Coded expression for the route", + "code": "route", + "base": [ "MedicinalProductPharmaceutical" ], + "type": "token", + "expression": "MedicinalProductPharmaceutical.routeOfAdministration.code", + "xpath": "f:MedicinalProductPharmaceutical/f:routeOfAdministration/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicinalProductPharmaceutical-target-species", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicinalProductPharmaceutical-target-species", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicinalProductPharmaceutical-target-species", + "version": "4.0.1", + "name": "target-species", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Biomedical Research and Regulation)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/rcrim/index.cfm" + } ] + } ], + "description": "Coded expression for the species", + "code": "target-species", + "base": [ "MedicinalProductPharmaceutical" ], + "type": "token", + "expression": "MedicinalProductPharmaceutical.routeOfAdministration.targetSpecies.code", + "xpath": "f:MedicinalProductPharmaceutical/f:routeOfAdministration/f:targetSpecies/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MedicinalProductUndesirableEffect-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "MedicinalProductUndesirableEffect-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MedicinalProductUndesirableEffect-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Biomedical Research and Regulation)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/rcrim/index.cfm" + } ] + } ], + "description": "The medication for which this is an undesirable effect", + "code": "subject", + "base": [ "MedicinalProductUndesirableEffect" ], + "type": "reference", + "expression": "MedicinalProductUndesirableEffect.subject", + "xpath": "f:MedicinalProductUndesirableEffect/f:subject", + "xpathUsage": "normal", + "target": [ "Medication", "MedicinalProduct" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MessageDefinition-category", + "resource": { + "resourceType": "SearchParameter", + "id": "MessageDefinition-category", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MessageDefinition-category", + "version": "4.0.1", + "name": "category", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Infrastructure And Messaging)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/special/committees/inm/index.cfm" + } ] + } ], + "description": "The behavior associated with the message", + "code": "category", + "base": [ "MessageDefinition" ], + "type": "token", + "expression": "MessageDefinition.category", + "xpath": "f:MessageDefinition/f:category", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MessageDefinition-event", + "resource": { + "resourceType": "SearchParameter", + "id": "MessageDefinition-event", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MessageDefinition-event", + "version": "4.0.1", + "name": "event", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Infrastructure And Messaging)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/special/committees/inm/index.cfm" + } ] + } ], + "description": "The event that triggers the message or link to the event definition.", + "code": "event", + "base": [ "MessageDefinition" ], + "type": "token", + "expression": "MessageDefinition.event", + "xpath": "f:MessageDefinition/f:eventCoding | f:MessageDefinition/f:eventUri", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MessageDefinition-focus", + "resource": { + "resourceType": "SearchParameter", + "id": "MessageDefinition-focus", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MessageDefinition-focus", + "version": "4.0.1", + "name": "focus", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Infrastructure And Messaging)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/special/committees/inm/index.cfm" + } ] + } ], + "description": "A resource that is a permitted focus of the message", + "code": "focus", + "base": [ "MessageDefinition" ], + "type": "token", + "expression": "MessageDefinition.focus.code", + "xpath": "f:MessageDefinition/f:focus/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MessageDefinition-parent", + "resource": { + "resourceType": "SearchParameter", + "id": "MessageDefinition-parent", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MessageDefinition-parent", + "version": "4.0.1", + "name": "parent", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Infrastructure And Messaging)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/special/committees/inm/index.cfm" + } ] + } ], + "description": "A resource that is the parent of the definition", + "code": "parent", + "base": [ "MessageDefinition" ], + "type": "reference", + "expression": "MessageDefinition.parent", + "xpath": "f:MessageDefinition/f:parent", + "xpathUsage": "normal", + "target": [ "PlanDefinition", "ActivityDefinition" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MessageHeader-author", + "resource": { + "resourceType": "SearchParameter", + "id": "MessageHeader-author", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MessageHeader-author", + "version": "4.0.1", + "name": "author", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Infrastructure And Messaging)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/special/committees/inm/index.cfm" + } ] + } ], + "description": "The source of the decision", + "code": "author", + "base": [ "MessageHeader" ], + "type": "reference", + "expression": "MessageHeader.author", + "xpath": "f:MessageHeader/f:author", + "xpathUsage": "normal", + "target": [ "Practitioner", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MessageHeader-code", + "resource": { + "resourceType": "SearchParameter", + "id": "MessageHeader-code", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MessageHeader-code", + "version": "4.0.1", + "name": "code", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Infrastructure And Messaging)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/special/committees/inm/index.cfm" + } ] + } ], + "description": "ok | transient-error | fatal-error", + "code": "code", + "base": [ "MessageHeader" ], + "type": "token", + "expression": "MessageHeader.response.code", + "xpath": "f:MessageHeader/f:response/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MessageHeader-destination", + "resource": { + "resourceType": "SearchParameter", + "id": "MessageHeader-destination", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MessageHeader-destination", + "version": "4.0.1", + "name": "destination", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Infrastructure And Messaging)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/special/committees/inm/index.cfm" + } ] + } ], + "description": "Name of system", + "code": "destination", + "base": [ "MessageHeader" ], + "type": "string", + "expression": "MessageHeader.destination.name", + "xpath": "f:MessageHeader/f:destination/f:name", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MessageHeader-destination-uri", + "resource": { + "resourceType": "SearchParameter", + "id": "MessageHeader-destination-uri", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MessageHeader-destination-uri", + "version": "4.0.1", + "name": "destination-uri", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Infrastructure And Messaging)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/special/committees/inm/index.cfm" + } ] + } ], + "description": "Actual destination address or id", + "code": "destination-uri", + "base": [ "MessageHeader" ], + "type": "uri", + "expression": "MessageHeader.destination.endpoint", + "xpath": "f:MessageHeader/f:destination/f:endpoint", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MessageHeader-enterer", + "resource": { + "resourceType": "SearchParameter", + "id": "MessageHeader-enterer", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MessageHeader-enterer", + "version": "4.0.1", + "name": "enterer", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Infrastructure And Messaging)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/special/committees/inm/index.cfm" + } ] + } ], + "description": "The source of the data entry", + "code": "enterer", + "base": [ "MessageHeader" ], + "type": "reference", + "expression": "MessageHeader.enterer", + "xpath": "f:MessageHeader/f:enterer", + "xpathUsage": "normal", + "target": [ "Practitioner", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MessageHeader-event", + "resource": { + "resourceType": "SearchParameter", + "id": "MessageHeader-event", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MessageHeader-event", + "version": "4.0.1", + "name": "event", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Infrastructure And Messaging)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/special/committees/inm/index.cfm" + } ] + } ], + "description": "Code for the event this message represents or link to event definition", + "code": "event", + "base": [ "MessageHeader" ], + "type": "token", + "expression": "MessageHeader.event", + "xpath": "f:MessageHeader/f:eventCoding | f:MessageHeader/f:eventUri", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MessageHeader-focus", + "resource": { + "resourceType": "SearchParameter", + "id": "MessageHeader-focus", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MessageHeader-focus", + "version": "4.0.1", + "name": "focus", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Infrastructure And Messaging)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/special/committees/inm/index.cfm" + } ] + } ], + "description": "The actual content of the message", + "code": "focus", + "base": [ "MessageHeader" ], + "type": "reference", + "expression": "MessageHeader.focus", + "xpath": "f:MessageHeader/f:focus", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MessageHeader-receiver", + "resource": { + "resourceType": "SearchParameter", + "id": "MessageHeader-receiver", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MessageHeader-receiver", + "version": "4.0.1", + "name": "receiver", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Infrastructure And Messaging)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/special/committees/inm/index.cfm" + } ] + } ], + "description": "Intended \"real-world\" recipient for the data", + "code": "receiver", + "base": [ "MessageHeader" ], + "type": "reference", + "expression": "MessageHeader.destination.receiver", + "xpath": "f:MessageHeader/f:destination/f:receiver", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MessageHeader-response-id", + "resource": { + "resourceType": "SearchParameter", + "id": "MessageHeader-response-id", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MessageHeader-response-id", + "version": "4.0.1", + "name": "response-id", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Infrastructure And Messaging)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/special/committees/inm/index.cfm" + } ] + } ], + "description": "Id of original message", + "code": "response-id", + "base": [ "MessageHeader" ], + "type": "token", + "expression": "MessageHeader.response.identifier", + "xpath": "f:MessageHeader/f:response/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MessageHeader-responsible", + "resource": { + "resourceType": "SearchParameter", + "id": "MessageHeader-responsible", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MessageHeader-responsible", + "version": "4.0.1", + "name": "responsible", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Infrastructure And Messaging)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/special/committees/inm/index.cfm" + } ] + } ], + "description": "Final responsibility for event", + "code": "responsible", + "base": [ "MessageHeader" ], + "type": "reference", + "expression": "MessageHeader.responsible", + "xpath": "f:MessageHeader/f:responsible", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MessageHeader-sender", + "resource": { + "resourceType": "SearchParameter", + "id": "MessageHeader-sender", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MessageHeader-sender", + "version": "4.0.1", + "name": "sender", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Infrastructure And Messaging)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/special/committees/inm/index.cfm" + } ] + } ], + "description": "Real world sender of the message", + "code": "sender", + "base": [ "MessageHeader" ], + "type": "reference", + "expression": "MessageHeader.sender", + "xpath": "f:MessageHeader/f:sender", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MessageHeader-source", + "resource": { + "resourceType": "SearchParameter", + "id": "MessageHeader-source", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MessageHeader-source", + "version": "4.0.1", + "name": "source", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Infrastructure And Messaging)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/special/committees/inm/index.cfm" + } ] + } ], + "description": "Name of system", + "code": "source", + "base": [ "MessageHeader" ], + "type": "string", + "expression": "MessageHeader.source.name", + "xpath": "f:MessageHeader/f:source/f:name", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MessageHeader-source-uri", + "resource": { + "resourceType": "SearchParameter", + "id": "MessageHeader-source-uri", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MessageHeader-source-uri", + "version": "4.0.1", + "name": "source-uri", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Infrastructure And Messaging)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/special/committees/inm/index.cfm" + } ] + } ], + "description": "Actual message source address or id", + "code": "source-uri", + "base": [ "MessageHeader" ], + "type": "uri", + "expression": "MessageHeader.source.endpoint", + "xpath": "f:MessageHeader/f:source/f:endpoint", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MessageHeader-target", + "resource": { + "resourceType": "SearchParameter", + "id": "MessageHeader-target", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MessageHeader-target", + "version": "4.0.1", + "name": "target", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Infrastructure And Messaging)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/special/committees/inm/index.cfm" + } ] + } ], + "description": "Particular delivery destination within the destination", + "code": "target", + "base": [ "MessageHeader" ], + "type": "reference", + "expression": "MessageHeader.destination.target", + "xpath": "f:MessageHeader/f:destination/f:target", + "xpathUsage": "normal", + "target": [ "Device" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MolecularSequence-chromosome", + "resource": { + "resourceType": "SearchParameter", + "id": "MolecularSequence-chromosome", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MolecularSequence-chromosome", + "version": "4.0.1", + "name": "chromosome", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Genomics)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/clingenomics/index.cfm" + } ] + } ], + "description": "Chromosome number of the reference sequence", + "code": "chromosome", + "base": [ "MolecularSequence" ], + "type": "token", + "expression": "MolecularSequence.referenceSeq.chromosome", + "xpath": "f:MolecularSequence/f:referenceSeq/f:chromosome", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MolecularSequence-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "MolecularSequence-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MolecularSequence-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Genomics)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/clingenomics/index.cfm" + } ] + } ], + "description": "The unique identity for a particular sequence", + "code": "identifier", + "base": [ "MolecularSequence" ], + "type": "token", + "expression": "MolecularSequence.identifier", + "xpath": "f:MolecularSequence/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MolecularSequence-patient", + "resource": { + "resourceType": "SearchParameter", + "id": "MolecularSequence-patient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MolecularSequence-patient", + "version": "4.0.1", + "name": "patient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Genomics)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/clingenomics/index.cfm" + } ] + } ], + "description": "The subject that the observation is about", + "code": "patient", + "base": [ "MolecularSequence" ], + "type": "reference", + "expression": "MolecularSequence.patient", + "xpath": "f:MolecularSequence/f:patient", + "xpathUsage": "normal", + "target": [ "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MolecularSequence-referenceseqid", + "resource": { + "resourceType": "SearchParameter", + "id": "MolecularSequence-referenceseqid", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MolecularSequence-referenceseqid", + "version": "4.0.1", + "name": "referenceseqid", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Genomics)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/clingenomics/index.cfm" + } ] + } ], + "description": "Reference Sequence of the sequence", + "code": "referenceseqid", + "base": [ "MolecularSequence" ], + "type": "token", + "expression": "MolecularSequence.referenceSeq.referenceSeqId", + "xpath": "f:MolecularSequence/f:referenceSeq/f:referenceSeqId", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MolecularSequence-type", + "resource": { + "resourceType": "SearchParameter", + "id": "MolecularSequence-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MolecularSequence-type", + "version": "4.0.1", + "name": "type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Genomics)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/clingenomics/index.cfm" + } ] + } ], + "description": "Amino Acid Sequence/ DNA Sequence / RNA Sequence", + "code": "type", + "base": [ "MolecularSequence" ], + "type": "token", + "expression": "MolecularSequence.type", + "xpath": "f:MolecularSequence/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MolecularSequence-variant-end", + "resource": { + "resourceType": "SearchParameter", + "id": "MolecularSequence-variant-end", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MolecularSequence-variant-end", + "version": "4.0.1", + "name": "variant-end", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Genomics)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/clingenomics/index.cfm" + } ] + } ], + "description": "End position (0-based exclusive, which menas the acid at this position will not be included, 1-based inclusive, which means the acid at this position will be included) of the variant.", + "code": "variant-end", + "base": [ "MolecularSequence" ], + "type": "number", + "expression": "MolecularSequence.variant.end", + "xpath": "f:MolecularSequence/f:variant/f:end", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MolecularSequence-variant-start", + "resource": { + "resourceType": "SearchParameter", + "id": "MolecularSequence-variant-start", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MolecularSequence-variant-start", + "version": "4.0.1", + "name": "variant-start", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Genomics)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/clingenomics/index.cfm" + } ] + } ], + "description": "Start position (0-based inclusive, 1-based inclusive, that means the nucleic acid or amino acid at this position will be included) of the variant.", + "code": "variant-start", + "base": [ "MolecularSequence" ], + "type": "number", + "expression": "MolecularSequence.variant.start", + "xpath": "f:MolecularSequence/f:variant/f:start", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MolecularSequence-window-end", + "resource": { + "resourceType": "SearchParameter", + "id": "MolecularSequence-window-end", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MolecularSequence-window-end", + "version": "4.0.1", + "name": "window-end", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Genomics)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/clingenomics/index.cfm" + } ] + } ], + "description": "End position (0-based exclusive, which menas the acid at this position will not be included, 1-based inclusive, which means the acid at this position will be included) of the reference sequence.", + "code": "window-end", + "base": [ "MolecularSequence" ], + "type": "number", + "expression": "MolecularSequence.referenceSeq.windowEnd", + "xpath": "f:MolecularSequence/f:referenceSeq/f:windowEnd", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MolecularSequence-window-start", + "resource": { + "resourceType": "SearchParameter", + "id": "MolecularSequence-window-start", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MolecularSequence-window-start", + "version": "4.0.1", + "name": "window-start", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Genomics)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/clingenomics/index.cfm" + } ] + } ], + "description": "Start position (0-based inclusive, 1-based inclusive, that means the nucleic acid or amino acid at this position will be included) of the reference sequence.", + "code": "window-start", + "base": [ "MolecularSequence" ], + "type": "number", + "expression": "MolecularSequence.referenceSeq.windowStart", + "xpath": "f:MolecularSequence/f:referenceSeq/f:windowStart", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MolecularSequence-chromosome-variant-coordinate", + "resource": { + "resourceType": "SearchParameter", + "id": "MolecularSequence-chromosome-variant-coordinate", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MolecularSequence-chromosome-variant-coordinate", + "version": "4.0.1", + "name": "chromosome-variant-coordinate", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Genomics)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/clingenomics/index.cfm" + } ] + } ], + "description": "Search parameter by chromosome and variant coordinate. This will refer to part of a locus or part of a gene where search region will be represented in 1-based system. Since the coordinateSystem can either be 0-based or 1-based, this search query will include the result of both coordinateSystem that contains the equivalent segment of the gene or whole genome sequence. For example, a search for sequence can be represented as `chromosome-variant-coordinate=1$lt345$gt123`, this means it will search for the MolecularSequence resource with variants on chromosome 1 and with position >123 and <345, where in 1-based system resource, all strings within region 1:124-344 will be revealed, while in 0-based system resource, all strings within region 1:123-344 will be revealed. You may want to check detail about 0-based v.s. 1-based above.", + "code": "chromosome-variant-coordinate", + "base": [ "MolecularSequence" ], + "type": "composite", + "expression": "MolecularSequence.variant", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/MolecularSequence-chromosome", + "expression": "%resource.referenceSeq.chromosome" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/MolecularSequence-variant-start", + "expression": "start" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/MolecularSequence-variant-end", + "expression": "end" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MolecularSequence-chromosome-window-coordinate", + "resource": { + "resourceType": "SearchParameter", + "id": "MolecularSequence-chromosome-window-coordinate", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MolecularSequence-chromosome-window-coordinate", + "version": "4.0.1", + "name": "chromosome-window-coordinate", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Genomics)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/clingenomics/index.cfm" + } ] + } ], + "description": "Search parameter by chromosome and window. This will refer to part of a locus or part of a gene where search region will be represented in 1-based system. Since the coordinateSystem can either be 0-based or 1-based, this search query will include the result of both coordinateSystem that contains the equivalent segment of the gene or whole genome sequence. For example, a search for sequence can be represented as `chromosome-window-coordinate=1$lt345$gt123`, this means it will search for the MolecularSequence resource with a window on chromosome 1 and with position >123 and <345, where in 1-based system resource, all strings within region 1:124-344 will be revealed, while in 0-based system resource, all strings within region 1:123-344 will be revealed. You may want to check detail about 0-based v.s. 1-based above.", + "code": "chromosome-window-coordinate", + "base": [ "MolecularSequence" ], + "type": "composite", + "expression": "MolecularSequence.referenceSeq", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/MolecularSequence-chromosome", + "expression": "chromosome" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/MolecularSequence-window-start", + "expression": "windowStart" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/MolecularSequence-window-end", + "expression": "windowEnd" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MolecularSequence-referenceseqid-variant-coordinate", + "resource": { + "resourceType": "SearchParameter", + "id": "MolecularSequence-referenceseqid-variant-coordinate", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MolecularSequence-referenceseqid-variant-coordinate", + "version": "4.0.1", + "name": "referenceseqid-variant-coordinate", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Genomics)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/clingenomics/index.cfm" + } ] + } ], + "description": "Search parameter by reference sequence and variant coordinate. This will refer to part of a locus or part of a gene where search region will be represented in 1-based system. Since the coordinateSystem can either be 0-based or 1-based, this search query will include the result of both coordinateSystem that contains the equivalent segment of the gene or whole genome sequence. For example, a search for sequence can be represented as `referenceSeqId-variant-coordinate=NC_000001.11$lt345$gt123`, this means it will search for the MolecularSequence resource with variants on NC_000001.11 and with position >123 and <345, where in 1-based system resource, all strings within region NC_000001.11:124-344 will be revealed, while in 0-based system resource, all strings within region NC_000001.11:123-344 will be revealed. You may want to check detail about 0-based v.s. 1-based above.", + "code": "referenceseqid-variant-coordinate", + "base": [ "MolecularSequence" ], + "type": "composite", + "expression": "MolecularSequence.variant", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/MolecularSequence-referenceseqid", + "expression": "%resource.referenceSeq.referenceSeqId" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/MolecularSequence-variant-start", + "expression": "start" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/MolecularSequence-variant-end", + "expression": "end" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/MolecularSequence-referenceseqid-window-coordinate", + "resource": { + "resourceType": "SearchParameter", + "id": "MolecularSequence-referenceseqid-window-coordinate", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/MolecularSequence-referenceseqid-window-coordinate", + "version": "4.0.1", + "name": "referenceseqid-window-coordinate", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Genomics)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/clingenomics/index.cfm" + } ] + } ], + "description": "Search parameter by reference sequence and window. This will refer to part of a locus or part of a gene where search region will be represented in 1-based system. Since the coordinateSystem can either be 0-based or 1-based, this search query will include the result of both coordinateSystem that contains the equivalent segment of the gene or whole genome sequence. For example, a search for sequence can be represented as `referenceSeqId-window-coordinate=NC_000001.11$lt345$gt123`, this means it will search for the MolecularSequence resource with a window on NC_000001.11 and with position >123 and <345, where in 1-based system resource, all strings within region NC_000001.11:124-344 will be revealed, while in 0-based system resource, all strings within region NC_000001.11:123-344 will be revealed. You may want to check detail about 0-based v.s. 1-based above.", + "code": "referenceseqid-window-coordinate", + "base": [ "MolecularSequence" ], + "type": "composite", + "expression": "MolecularSequence.referenceSeq", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/MolecularSequence-referenceseqid", + "expression": "referenceSeqId" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/MolecularSequence-window-start", + "expression": "windowStart" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/MolecularSequence-window-end", + "expression": "windowEnd" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/NamingSystem-contact", + "resource": { + "resourceType": "SearchParameter", + "id": "NamingSystem-contact", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/NamingSystem-contact", + "version": "4.0.1", + "name": "contact", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Name of an individual to contact", + "code": "contact", + "base": [ "NamingSystem" ], + "type": "string", + "expression": "NamingSystem.contact.name", + "xpath": "f:NamingSystem/f:contact/f:name", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/NamingSystem-id-type", + "resource": { + "resourceType": "SearchParameter", + "id": "NamingSystem-id-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/NamingSystem-id-type", + "version": "4.0.1", + "name": "id-type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "oid | uuid | uri | other", + "code": "id-type", + "base": [ "NamingSystem" ], + "type": "token", + "expression": "NamingSystem.uniqueId.type", + "xpath": "f:NamingSystem/f:uniqueId/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/NamingSystem-kind", + "resource": { + "resourceType": "SearchParameter", + "id": "NamingSystem-kind", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/NamingSystem-kind", + "version": "4.0.1", + "name": "kind", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "codesystem | identifier | root", + "code": "kind", + "base": [ "NamingSystem" ], + "type": "token", + "expression": "NamingSystem.kind", + "xpath": "f:NamingSystem/f:kind", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/NamingSystem-period", + "resource": { + "resourceType": "SearchParameter", + "id": "NamingSystem-period", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/NamingSystem-period", + "version": "4.0.1", + "name": "period", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "When is identifier valid?", + "code": "period", + "base": [ "NamingSystem" ], + "type": "date", + "expression": "NamingSystem.uniqueId.period", + "xpath": "f:NamingSystem/f:uniqueId/f:period", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/NamingSystem-responsible", + "resource": { + "resourceType": "SearchParameter", + "id": "NamingSystem-responsible", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/NamingSystem-responsible", + "version": "4.0.1", + "name": "responsible", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Who maintains system namespace?", + "code": "responsible", + "base": [ "NamingSystem" ], + "type": "string", + "expression": "NamingSystem.responsible", + "xpath": "f:NamingSystem/f:responsible", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/NamingSystem-telecom", + "resource": { + "resourceType": "SearchParameter", + "id": "NamingSystem-telecom", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/NamingSystem-telecom", + "version": "4.0.1", + "name": "telecom", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Contact details for individual or organization", + "code": "telecom", + "base": [ "NamingSystem" ], + "type": "token", + "expression": "NamingSystem.contact.telecom", + "xpath": "f:NamingSystem/f:contact/f:telecom", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/NamingSystem-type", + "resource": { + "resourceType": "SearchParameter", + "id": "NamingSystem-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/NamingSystem-type", + "version": "4.0.1", + "name": "type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "e.g. driver, provider, patient, bank etc.", + "code": "type", + "base": [ "NamingSystem" ], + "type": "token", + "expression": "NamingSystem.type", + "xpath": "f:NamingSystem/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/NamingSystem-value", + "resource": { + "resourceType": "SearchParameter", + "id": "NamingSystem-value", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/NamingSystem-value", + "version": "4.0.1", + "name": "value", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The unique identifier", + "code": "value", + "base": [ "NamingSystem" ], + "type": "string", + "expression": "NamingSystem.uniqueId.value", + "xpath": "f:NamingSystem/f:uniqueId/f:value", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/NutritionOrder-additive", + "resource": { + "resourceType": "SearchParameter", + "id": "NutritionOrder-additive", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/NutritionOrder-additive", + "version": "4.0.1", + "name": "additive", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Type of module component to add to the feeding", + "code": "additive", + "base": [ "NutritionOrder" ], + "type": "token", + "expression": "NutritionOrder.enteralFormula.additiveType", + "xpath": "f:NutritionOrder/f:enteralFormula/f:additiveType", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/NutritionOrder-datetime", + "resource": { + "resourceType": "SearchParameter", + "id": "NutritionOrder-datetime", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/NutritionOrder-datetime", + "version": "4.0.1", + "name": "datetime", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Return nutrition orders requested on this date", + "code": "datetime", + "base": [ "NutritionOrder" ], + "type": "date", + "expression": "NutritionOrder.dateTime", + "xpath": "f:NutritionOrder/f:dateTime", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/NutritionOrder-formula", + "resource": { + "resourceType": "SearchParameter", + "id": "NutritionOrder-formula", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/NutritionOrder-formula", + "version": "4.0.1", + "name": "formula", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Type of enteral or infant formula", + "code": "formula", + "base": [ "NutritionOrder" ], + "type": "token", + "expression": "NutritionOrder.enteralFormula.baseFormulaType", + "xpath": "f:NutritionOrder/f:enteralFormula/f:baseFormulaType", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/NutritionOrder-instantiates-canonical", + "resource": { + "resourceType": "SearchParameter", + "id": "NutritionOrder-instantiates-canonical", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/NutritionOrder-instantiates-canonical", + "version": "4.0.1", + "name": "instantiates-canonical", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Instantiates FHIR protocol or definition", + "code": "instantiates-canonical", + "base": [ "NutritionOrder" ], + "type": "reference", + "expression": "NutritionOrder.instantiatesCanonical", + "xpath": "f:NutritionOrder/f:instantiatesCanonical", + "xpathUsage": "normal", + "target": [ "PlanDefinition", "ActivityDefinition" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/NutritionOrder-instantiates-uri", + "resource": { + "resourceType": "SearchParameter", + "id": "NutritionOrder-instantiates-uri", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/NutritionOrder-instantiates-uri", + "version": "4.0.1", + "name": "instantiates-uri", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Instantiates external protocol or definition", + "code": "instantiates-uri", + "base": [ "NutritionOrder" ], + "type": "uri", + "expression": "NutritionOrder.instantiatesUri", + "xpath": "f:NutritionOrder/f:instantiatesUri", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/NutritionOrder-oraldiet", + "resource": { + "resourceType": "SearchParameter", + "id": "NutritionOrder-oraldiet", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/NutritionOrder-oraldiet", + "version": "4.0.1", + "name": "oraldiet", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Type of diet that can be consumed orally (i.e., take via the mouth).", + "code": "oraldiet", + "base": [ "NutritionOrder" ], + "type": "token", + "expression": "NutritionOrder.oralDiet.type", + "xpath": "f:NutritionOrder/f:oralDiet/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/NutritionOrder-provider", + "resource": { + "resourceType": "SearchParameter", + "id": "NutritionOrder-provider", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/NutritionOrder-provider", + "version": "4.0.1", + "name": "provider", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The identity of the provider who placed the nutrition order", + "code": "provider", + "base": [ "NutritionOrder" ], + "type": "reference", + "expression": "NutritionOrder.orderer", + "xpath": "f:NutritionOrder/f:orderer", + "xpathUsage": "normal", + "target": [ "Practitioner", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/NutritionOrder-status", + "resource": { + "resourceType": "SearchParameter", + "id": "NutritionOrder-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/NutritionOrder-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Status of the nutrition order.", + "code": "status", + "base": [ "NutritionOrder" ], + "type": "token", + "expression": "NutritionOrder.status", + "xpath": "f:NutritionOrder/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/NutritionOrder-supplement", + "resource": { + "resourceType": "SearchParameter", + "id": "NutritionOrder-supplement", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/NutritionOrder-supplement", + "version": "4.0.1", + "name": "supplement", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Type of supplement product requested", + "code": "supplement", + "base": [ "NutritionOrder" ], + "type": "token", + "expression": "NutritionOrder.supplement.type", + "xpath": "f:NutritionOrder/f:supplement/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Observation-based-on", + "resource": { + "resourceType": "SearchParameter", + "id": "Observation-based-on", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Observation-based-on", + "version": "4.0.1", + "name": "based-on", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Reference to the service request.", + "code": "based-on", + "base": [ "Observation" ], + "type": "reference", + "expression": "Observation.basedOn", + "xpath": "f:Observation/f:basedOn", + "xpathUsage": "normal", + "target": [ "CarePlan", "MedicationRequest", "NutritionOrder", "DeviceRequest", "ServiceRequest", "ImmunizationRecommendation" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Observation-category", + "resource": { + "resourceType": "SearchParameter", + "id": "Observation-category", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Observation-category", + "version": "4.0.1", + "name": "category", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The classification of the type of observation", + "code": "category", + "base": [ "Observation" ], + "type": "token", + "expression": "Observation.category", + "xpath": "f:Observation/f:category", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Observation-combo-code", + "resource": { + "resourceType": "SearchParameter", + "id": "Observation-combo-code", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Observation-combo-code", + "version": "4.0.1", + "name": "combo-code", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The code of the observation type or component type", + "code": "combo-code", + "base": [ "Observation" ], + "type": "token", + "expression": "Observation.code | Observation.component.code", + "xpath": "f:Observation/f:code | f:Observation/f:component/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Observation-combo-data-absent-reason", + "resource": { + "resourceType": "SearchParameter", + "id": "Observation-combo-data-absent-reason", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Observation-combo-data-absent-reason", + "version": "4.0.1", + "name": "combo-data-absent-reason", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The reason why the expected value in the element Observation.value[x] or Observation.component.value[x] is missing.", + "code": "combo-data-absent-reason", + "base": [ "Observation" ], + "type": "token", + "expression": "Observation.dataAbsentReason | Observation.component.dataAbsentReason", + "xpath": "f:Observation/f:dataAbsentReason | f:Observation/f:component/f:dataAbsentReason", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Observation-combo-value-concept", + "resource": { + "resourceType": "SearchParameter", + "id": "Observation-combo-value-concept", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Observation-combo-value-concept", + "version": "4.0.1", + "name": "combo-value-concept", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The value or component value of the observation, if the value is a CodeableConcept", + "code": "combo-value-concept", + "base": [ "Observation" ], + "type": "token", + "expression": "(Observation.value as CodeableConcept) | (Observation.component.value as CodeableConcept)", + "xpath": "f:Observation/f:valueCodeableConcept | f:Observation/f:component/f:valueCodeableConcept", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Observation-combo-value-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "Observation-combo-value-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Observation-combo-value-quantity", + "version": "4.0.1", + "name": "combo-value-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The value or component value of the observation, if the value is a Quantity, or a SampledData (just search on the bounds of the values in sampled data)", + "code": "combo-value-quantity", + "base": [ "Observation" ], + "type": "quantity", + "expression": "(Observation.value as Quantity) | (Observation.value as SampledData) | (Observation.component.value as Quantity) | (Observation.component.value as SampledData)", + "xpath": "f:Observation/f:valueQuantity | f:Observation/f:valueCodeableConcept | f:Observation/f:valueString | f:Observation/f:valueBoolean | f:Observation/f:valueInteger | f:Observation/f:valueRange | f:Observation/f:valueRatio | f:Observation/f:valueSampledData | f:Observation/f:valueTime | f:Observation/f:valueDateTime | f:Observation/f:valuePeriod", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Observation-component-code", + "resource": { + "resourceType": "SearchParameter", + "id": "Observation-component-code", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Observation-component-code", + "version": "4.0.1", + "name": "component-code", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The component code of the observation type", + "code": "component-code", + "base": [ "Observation" ], + "type": "token", + "expression": "Observation.component.code", + "xpath": "f:Observation/f:component/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Observation-component-data-absent-reason", + "resource": { + "resourceType": "SearchParameter", + "id": "Observation-component-data-absent-reason", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Observation-component-data-absent-reason", + "version": "4.0.1", + "name": "component-data-absent-reason", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The reason why the expected value in the element Observation.component.value[x] is missing.", + "code": "component-data-absent-reason", + "base": [ "Observation" ], + "type": "token", + "expression": "Observation.component.dataAbsentReason", + "xpath": "f:Observation/f:component/f:dataAbsentReason", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Observation-component-value-concept", + "resource": { + "resourceType": "SearchParameter", + "id": "Observation-component-value-concept", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Observation-component-value-concept", + "version": "4.0.1", + "name": "component-value-concept", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The value of the component observation, if the value is a CodeableConcept", + "code": "component-value-concept", + "base": [ "Observation" ], + "type": "token", + "expression": "(Observation.component.value as CodeableConcept)", + "xpath": "f:Observation/f:component/f:valueCodeableConcept", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Observation-component-value-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "Observation-component-value-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Observation-component-value-quantity", + "version": "4.0.1", + "name": "component-value-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The value of the component observation, if the value is a Quantity, or a SampledData (just search on the bounds of the values in sampled data)", + "code": "component-value-quantity", + "base": [ "Observation" ], + "type": "quantity", + "expression": "(Observation.component.value as Quantity) | (Observation.component.value as SampledData)", + "xpath": "f:Observation/f:component/f:valueQuantity | f:Observation/f:component/f:valueCodeableConcept | f:Observation/f:component/f:valueString | f:Observation/f:component/f:valueBoolean | f:Observation/f:component/f:valueInteger | f:Observation/f:component/f:valueRange | f:Observation/f:component/f:valueRatio | f:Observation/f:component/f:valueSampledData | f:Observation/f:component/f:valueTime | f:Observation/f:component/f:valueDateTime | f:Observation/f:component/f:valuePeriod", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Observation-data-absent-reason", + "resource": { + "resourceType": "SearchParameter", + "id": "Observation-data-absent-reason", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Observation-data-absent-reason", + "version": "4.0.1", + "name": "data-absent-reason", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The reason why the expected value in the element Observation.value[x] is missing.", + "code": "data-absent-reason", + "base": [ "Observation" ], + "type": "token", + "expression": "Observation.dataAbsentReason", + "xpath": "f:Observation/f:dataAbsentReason", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Observation-derived-from", + "resource": { + "resourceType": "SearchParameter", + "id": "Observation-derived-from", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Observation-derived-from", + "version": "4.0.1", + "name": "derived-from", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Related measurements the observation is made from", + "code": "derived-from", + "base": [ "Observation" ], + "type": "reference", + "expression": "Observation.derivedFrom", + "xpath": "f:Observation/f:derivedFrom", + "xpathUsage": "normal", + "target": [ "Media", "Observation", "ImagingStudy", "MolecularSequence", "QuestionnaireResponse", "DocumentReference" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Observation-device", + "resource": { + "resourceType": "SearchParameter", + "id": "Observation-device", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Observation-device", + "version": "4.0.1", + "name": "device", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The Device that generated the observation data.", + "code": "device", + "base": [ "Observation" ], + "type": "reference", + "expression": "Observation.device", + "xpath": "f:Observation/f:device", + "xpathUsage": "normal", + "target": [ "Device", "DeviceMetric" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Observation-focus", + "resource": { + "resourceType": "SearchParameter", + "id": "Observation-focus", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Observation-focus", + "version": "4.0.1", + "name": "focus", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The focus of an observation when the focus is not the patient of record.", + "code": "focus", + "base": [ "Observation" ], + "type": "reference", + "expression": "Observation.focus", + "xpath": "f:Observation/f:focus", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Observation-has-member", + "resource": { + "resourceType": "SearchParameter", + "id": "Observation-has-member", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Observation-has-member", + "version": "4.0.1", + "name": "has-member", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Related resource that belongs to the Observation group", + "code": "has-member", + "base": [ "Observation" ], + "type": "reference", + "expression": "Observation.hasMember", + "xpath": "f:Observation/f:hasMember", + "xpathUsage": "normal", + "target": [ "Observation", "MolecularSequence", "QuestionnaireResponse" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Observation-method", + "resource": { + "resourceType": "SearchParameter", + "id": "Observation-method", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Observation-method", + "version": "4.0.1", + "name": "method", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The method used for the observation", + "code": "method", + "base": [ "Observation" ], + "type": "token", + "expression": "Observation.method", + "xpath": "f:Observation/f:method", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Observation-part-of", + "resource": { + "resourceType": "SearchParameter", + "id": "Observation-part-of", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Observation-part-of", + "version": "4.0.1", + "name": "part-of", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Part of referenced event", + "code": "part-of", + "base": [ "Observation" ], + "type": "reference", + "expression": "Observation.partOf", + "xpath": "f:Observation/f:partOf", + "xpathUsage": "normal", + "target": [ "Immunization", "MedicationDispense", "MedicationAdministration", "Procedure", "ImagingStudy", "MedicationStatement" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Observation-performer", + "resource": { + "resourceType": "SearchParameter", + "id": "Observation-performer", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Observation-performer", + "version": "4.0.1", + "name": "performer", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Who performed the observation", + "code": "performer", + "base": [ "Observation" ], + "type": "reference", + "expression": "Observation.performer", + "xpath": "f:Observation/f:performer", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "CareTeam", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Observation-specimen", + "resource": { + "resourceType": "SearchParameter", + "id": "Observation-specimen", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Observation-specimen", + "version": "4.0.1", + "name": "specimen", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Specimen used for this observation", + "code": "specimen", + "base": [ "Observation" ], + "type": "reference", + "expression": "Observation.specimen", + "xpath": "f:Observation/f:specimen", + "xpathUsage": "normal", + "target": [ "Specimen" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Observation-status", + "resource": { + "resourceType": "SearchParameter", + "id": "Observation-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Observation-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The status of the observation", + "code": "status", + "base": [ "Observation" ], + "type": "token", + "expression": "Observation.status", + "xpath": "f:Observation/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Observation-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "Observation-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Observation-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The subject that the observation is about", + "code": "subject", + "base": [ "Observation" ], + "type": "reference", + "expression": "Observation.subject", + "xpath": "f:Observation/f:subject", + "xpathUsage": "normal", + "target": [ "Group", "Device", "Patient", "Location" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Observation-value-concept", + "resource": { + "resourceType": "SearchParameter", + "id": "Observation-value-concept", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Observation-value-concept", + "version": "4.0.1", + "name": "value-concept", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The value of the observation, if the value is a CodeableConcept", + "code": "value-concept", + "base": [ "Observation" ], + "type": "token", + "expression": "(Observation.value as CodeableConcept)", + "xpath": "f:Observation/f:valueCodeableConcept", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Observation-value-date", + "resource": { + "resourceType": "SearchParameter", + "id": "Observation-value-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Observation-value-date", + "version": "4.0.1", + "name": "value-date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The value of the observation, if the value is a date or period of time", + "code": "value-date", + "base": [ "Observation" ], + "type": "date", + "expression": "(Observation.value as dateTime) | (Observation.value as Period)", + "xpath": "f:Observation/f:valueDateTime | f:Observation/f:valuePeriod", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Observation-value-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "Observation-value-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Observation-value-quantity", + "version": "4.0.1", + "name": "value-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The value of the observation, if the value is a Quantity, or a SampledData (just search on the bounds of the values in sampled data)", + "code": "value-quantity", + "base": [ "Observation" ], + "type": "quantity", + "expression": "(Observation.value as Quantity) | (Observation.value as SampledData)", + "xpath": "f:Observation/f:valueQuantity | f:Observation/f:valueCodeableConcept | f:Observation/f:valueString | f:Observation/f:valueBoolean | f:Observation/f:valueInteger | f:Observation/f:valueRange | f:Observation/f:valueRatio | f:Observation/f:valueSampledData | f:Observation/f:valueTime | f:Observation/f:valueDateTime | f:Observation/f:valuePeriod", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Observation-value-string", + "resource": { + "resourceType": "SearchParameter", + "id": "Observation-value-string", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Observation-value-string", + "version": "4.0.1", + "name": "value-string", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The value of the observation, if the value is a string, and also searches in CodeableConcept.text", + "code": "value-string", + "base": [ "Observation" ], + "type": "string", + "expression": "(Observation.value as string) | (Observation.value as CodeableConcept).text", + "xpath": "f:Observation/f:valueQuantity | f:Observation/f:valueCodeableConcept | f:Observation/f:valueString | f:Observation/f:valueBoolean | f:Observation/f:valueInteger | f:Observation/f:valueRange | f:Observation/f:valueRatio | f:Observation/f:valueSampledData | f:Observation/f:valueTime | f:Observation/f:valueDateTime | f:Observation/f:valuePeriod", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Observation-code-value-concept", + "resource": { + "resourceType": "SearchParameter", + "id": "Observation-code-value-concept", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Observation-code-value-concept", + "version": "4.0.1", + "name": "code-value-concept", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Code and coded value parameter pair", + "code": "code-value-concept", + "base": [ "Observation" ], + "type": "composite", + "expression": "Observation", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/clinical-code", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/Observation-value-concept", + "expression": "value.as(CodeableConcept)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Observation-code-value-date", + "resource": { + "resourceType": "SearchParameter", + "id": "Observation-code-value-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Observation-code-value-date", + "version": "4.0.1", + "name": "code-value-date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Code and date/time value parameter pair", + "code": "code-value-date", + "base": [ "Observation" ], + "type": "composite", + "expression": "Observation", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/clinical-code", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/Observation-value-date", + "expression": "value.as(DateTime) | value.as(Period)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Observation-code-value-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "Observation-code-value-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Observation-code-value-quantity", + "version": "4.0.1", + "name": "code-value-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Code and quantity value parameter pair", + "code": "code-value-quantity", + "base": [ "Observation" ], + "type": "composite", + "expression": "Observation", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/clinical-code", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/Observation-value-quantity", + "expression": "value.as(Quantity)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Observation-code-value-string", + "resource": { + "resourceType": "SearchParameter", + "id": "Observation-code-value-string", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Observation-code-value-string", + "version": "4.0.1", + "name": "code-value-string", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Code and string value parameter pair", + "code": "code-value-string", + "base": [ "Observation" ], + "type": "composite", + "expression": "Observation", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/clinical-code", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/Observation-value-string", + "expression": "value.as(string)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Observation-combo-code-value-concept", + "resource": { + "resourceType": "SearchParameter", + "id": "Observation-combo-code-value-concept", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Observation-combo-code-value-concept", + "version": "4.0.1", + "name": "combo-code-value-concept", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Code and coded value parameter pair, including in components", + "code": "combo-code-value-concept", + "base": [ "Observation" ], + "type": "composite", + "expression": "Observation | Observation.component", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/Observation-combo-code", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/Observation-combo-value-concept", + "expression": "value.as(CodeableConcept)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Observation-combo-code-value-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "Observation-combo-code-value-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Observation-combo-code-value-quantity", + "version": "4.0.1", + "name": "combo-code-value-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Code and quantity value parameter pair, including in components", + "code": "combo-code-value-quantity", + "base": [ "Observation" ], + "type": "composite", + "expression": "Observation | Observation.component", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/Observation-combo-code", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/Observation-combo-value-quantity", + "expression": "value.as(Quantity)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Observation-component-code-value-concept", + "resource": { + "resourceType": "SearchParameter", + "id": "Observation-component-code-value-concept", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Observation-component-code-value-concept", + "version": "4.0.1", + "name": "component-code-value-concept", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Component code and component coded value parameter pair", + "code": "component-code-value-concept", + "base": [ "Observation" ], + "type": "composite", + "expression": "Observation.component", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/Observation-component-code", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/Observation-component-value-concept", + "expression": "value.as(CodeableConcept)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Observation-component-code-value-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "Observation-component-code-value-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Observation-component-code-value-quantity", + "version": "4.0.1", + "name": "component-code-value-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Component code and component quantity value parameter pair", + "code": "component-code-value-quantity", + "base": [ "Observation" ], + "type": "composite", + "expression": "Observation.component", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/Observation-component-code", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/Observation-component-value-quantity", + "expression": "value.as(Quantity)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/OperationDefinition-base", + "resource": { + "resourceType": "SearchParameter", + "id": "OperationDefinition-base", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/OperationDefinition-base", + "version": "4.0.1", + "name": "base", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Marks this as a profile of the base", + "code": "base", + "base": [ "OperationDefinition" ], + "type": "reference", + "expression": "OperationDefinition.base", + "xpath": "f:OperationDefinition/f:base", + "xpathUsage": "normal", + "target": [ "OperationDefinition" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/OperationDefinition-code", + "resource": { + "resourceType": "SearchParameter", + "id": "OperationDefinition-code", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/OperationDefinition-code", + "version": "4.0.1", + "name": "code", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Name used to invoke the operation", + "code": "code", + "base": [ "OperationDefinition" ], + "type": "token", + "expression": "OperationDefinition.code", + "xpath": "f:OperationDefinition/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/OperationDefinition-input-profile", + "resource": { + "resourceType": "SearchParameter", + "id": "OperationDefinition-input-profile", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/OperationDefinition-input-profile", + "version": "4.0.1", + "name": "input-profile", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Validation information for in parameters", + "code": "input-profile", + "base": [ "OperationDefinition" ], + "type": "reference", + "expression": "OperationDefinition.inputProfile", + "xpath": "f:OperationDefinition/f:inputProfile", + "xpathUsage": "normal", + "target": [ "StructureDefinition" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/OperationDefinition-instance", + "resource": { + "resourceType": "SearchParameter", + "id": "OperationDefinition-instance", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/OperationDefinition-instance", + "version": "4.0.1", + "name": "instance", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Invoke on an instance?", + "code": "instance", + "base": [ "OperationDefinition" ], + "type": "token", + "expression": "OperationDefinition.instance", + "xpath": "f:OperationDefinition/f:instance", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/OperationDefinition-kind", + "resource": { + "resourceType": "SearchParameter", + "id": "OperationDefinition-kind", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/OperationDefinition-kind", + "version": "4.0.1", + "name": "kind", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "operation | query", + "code": "kind", + "base": [ "OperationDefinition" ], + "type": "token", + "expression": "OperationDefinition.kind", + "xpath": "f:OperationDefinition/f:kind", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/OperationDefinition-output-profile", + "resource": { + "resourceType": "SearchParameter", + "id": "OperationDefinition-output-profile", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/OperationDefinition-output-profile", + "version": "4.0.1", + "name": "output-profile", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Validation information for out parameters", + "code": "output-profile", + "base": [ "OperationDefinition" ], + "type": "reference", + "expression": "OperationDefinition.outputProfile", + "xpath": "f:OperationDefinition/f:outputProfile", + "xpathUsage": "normal", + "target": [ "StructureDefinition" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/OperationDefinition-system", + "resource": { + "resourceType": "SearchParameter", + "id": "OperationDefinition-system", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/OperationDefinition-system", + "version": "4.0.1", + "name": "system", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Invoke at the system level?", + "code": "system", + "base": [ "OperationDefinition" ], + "type": "token", + "expression": "OperationDefinition.system", + "xpath": "f:OperationDefinition/f:system", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/OperationDefinition-type", + "resource": { + "resourceType": "SearchParameter", + "id": "OperationDefinition-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/OperationDefinition-type", + "version": "4.0.1", + "name": "type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Invoke at the type level?", + "code": "type", + "base": [ "OperationDefinition" ], + "type": "token", + "expression": "OperationDefinition.type", + "xpath": "f:OperationDefinition/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Organization-active", + "resource": { + "resourceType": "SearchParameter", + "id": "Organization-active", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Organization-active", + "version": "4.0.1", + "name": "active", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Is the Organization record active", + "code": "active", + "base": [ "Organization" ], + "type": "token", + "expression": "Organization.active", + "xpath": "f:Organization/f:active", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Organization-address", + "resource": { + "resourceType": "SearchParameter", + "id": "Organization-address", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Organization-address", + "version": "4.0.1", + "name": "address", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A server defined search that may match any of the string fields in the Address, including line, city, district, state, country, postalCode, and/or text", + "code": "address", + "base": [ "Organization" ], + "type": "string", + "expression": "Organization.address", + "xpath": "f:Organization/f:address", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Organization-address-city", + "resource": { + "resourceType": "SearchParameter", + "id": "Organization-address-city", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Organization-address-city", + "version": "4.0.1", + "name": "address-city", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A city specified in an address", + "code": "address-city", + "base": [ "Organization" ], + "type": "string", + "expression": "Organization.address.city", + "xpath": "f:Organization/f:address/f:city", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Organization-address-country", + "resource": { + "resourceType": "SearchParameter", + "id": "Organization-address-country", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Organization-address-country", + "version": "4.0.1", + "name": "address-country", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A country specified in an address", + "code": "address-country", + "base": [ "Organization" ], + "type": "string", + "expression": "Organization.address.country", + "xpath": "f:Organization/f:address/f:country", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Organization-address-postalcode", + "resource": { + "resourceType": "SearchParameter", + "id": "Organization-address-postalcode", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Organization-address-postalcode", + "version": "4.0.1", + "name": "address-postalcode", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A postal code specified in an address", + "code": "address-postalcode", + "base": [ "Organization" ], + "type": "string", + "expression": "Organization.address.postalCode", + "xpath": "f:Organization/f:address/f:postalCode", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Organization-address-state", + "resource": { + "resourceType": "SearchParameter", + "id": "Organization-address-state", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Organization-address-state", + "version": "4.0.1", + "name": "address-state", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A state specified in an address", + "code": "address-state", + "base": [ "Organization" ], + "type": "string", + "expression": "Organization.address.state", + "xpath": "f:Organization/f:address/f:state", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Organization-address-use", + "resource": { + "resourceType": "SearchParameter", + "id": "Organization-address-use", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Organization-address-use", + "version": "4.0.1", + "name": "address-use", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A use code specified in an address", + "code": "address-use", + "base": [ "Organization" ], + "type": "token", + "expression": "Organization.address.use", + "xpath": "f:Organization/f:address/f:use", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Organization-endpoint", + "resource": { + "resourceType": "SearchParameter", + "id": "Organization-endpoint", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Organization-endpoint", + "version": "4.0.1", + "name": "endpoint", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Technical endpoints providing access to services operated for the organization", + "code": "endpoint", + "base": [ "Organization" ], + "type": "reference", + "expression": "Organization.endpoint", + "xpath": "f:Organization/f:endpoint", + "xpathUsage": "normal", + "target": [ "Endpoint" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Organization-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "Organization-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Organization-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Any identifier for the organization (not the accreditation issuer's identifier)", + "code": "identifier", + "base": [ "Organization" ], + "type": "token", + "expression": "Organization.identifier", + "xpath": "f:Organization/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Organization-name", + "resource": { + "resourceType": "SearchParameter", + "id": "Organization-name", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Organization-name", + "version": "4.0.1", + "name": "name", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A portion of the organization's name or alias", + "code": "name", + "base": [ "Organization" ], + "type": "string", + "expression": "Organization.name | Organization.alias", + "xpath": "f:Organization/f:name | f:Organization/f:alias", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Organization-partof", + "resource": { + "resourceType": "SearchParameter", + "id": "Organization-partof", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Organization-partof", + "version": "4.0.1", + "name": "partof", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "An organization of which this organization forms a part", + "code": "partof", + "base": [ "Organization" ], + "type": "reference", + "expression": "Organization.partOf", + "xpath": "f:Organization/f:partOf", + "xpathUsage": "normal", + "target": [ "Organization" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Organization-phonetic", + "resource": { + "resourceType": "SearchParameter", + "id": "Organization-phonetic", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Organization-phonetic", + "version": "4.0.1", + "name": "phonetic", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A portion of the organization's name using some kind of phonetic matching algorithm", + "code": "phonetic", + "base": [ "Organization" ], + "type": "string", + "expression": "Organization.name", + "xpath": "f:Organization/f:name", + "xpathUsage": "phonetic" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Organization-type", + "resource": { + "resourceType": "SearchParameter", + "id": "Organization-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Organization-type", + "version": "4.0.1", + "name": "type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A code for the type of organization", + "code": "type", + "base": [ "Organization" ], + "type": "token", + "expression": "Organization.type", + "xpath": "f:Organization/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/OrganizationAffiliation-active", + "resource": { + "resourceType": "SearchParameter", + "id": "OrganizationAffiliation-active", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/OrganizationAffiliation-active", + "version": "4.0.1", + "name": "active", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Whether this organization affiliation record is in active use", + "code": "active", + "base": [ "OrganizationAffiliation" ], + "type": "token", + "expression": "OrganizationAffiliation.active", + "xpath": "f:OrganizationAffiliation/f:active", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/OrganizationAffiliation-date", + "resource": { + "resourceType": "SearchParameter", + "id": "OrganizationAffiliation-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/OrganizationAffiliation-date", + "version": "4.0.1", + "name": "date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The period during which the participatingOrganization is affiliated with the primary organization", + "code": "date", + "base": [ "OrganizationAffiliation" ], + "type": "date", + "expression": "OrganizationAffiliation.period", + "xpath": "f:OrganizationAffiliation/f:period", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/OrganizationAffiliation-email", + "resource": { + "resourceType": "SearchParameter", + "id": "OrganizationAffiliation-email", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/OrganizationAffiliation-email", + "version": "4.0.1", + "name": "email", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A value in an email contact", + "code": "email", + "base": [ "OrganizationAffiliation" ], + "type": "token", + "expression": "OrganizationAffiliation.telecom.where(system='email')", + "xpath": "f:OrganizationAffiliation/f:telecom[system/@value='email']", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/OrganizationAffiliation-endpoint", + "resource": { + "resourceType": "SearchParameter", + "id": "OrganizationAffiliation-endpoint", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/OrganizationAffiliation-endpoint", + "version": "4.0.1", + "name": "endpoint", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Technical endpoints providing access to services operated for this role", + "code": "endpoint", + "base": [ "OrganizationAffiliation" ], + "type": "reference", + "expression": "OrganizationAffiliation.endpoint", + "xpath": "f:OrganizationAffiliation/f:endpoint", + "xpathUsage": "normal", + "target": [ "Endpoint" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/OrganizationAffiliation-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "OrganizationAffiliation-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/OrganizationAffiliation-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "An organization affiliation's Identifier", + "code": "identifier", + "base": [ "OrganizationAffiliation" ], + "type": "token", + "expression": "OrganizationAffiliation.identifier", + "xpath": "f:OrganizationAffiliation/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/OrganizationAffiliation-location", + "resource": { + "resourceType": "SearchParameter", + "id": "OrganizationAffiliation-location", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/OrganizationAffiliation-location", + "version": "4.0.1", + "name": "location", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The location(s) at which the role occurs", + "code": "location", + "base": [ "OrganizationAffiliation" ], + "type": "reference", + "expression": "OrganizationAffiliation.location", + "xpath": "f:OrganizationAffiliation/f:location", + "xpathUsage": "normal", + "target": [ "Location" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/OrganizationAffiliation-network", + "resource": { + "resourceType": "SearchParameter", + "id": "OrganizationAffiliation-network", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/OrganizationAffiliation-network", + "version": "4.0.1", + "name": "network", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Health insurance provider network in which the participatingOrganization provides the role's services (if defined) at the indicated locations (if defined)", + "code": "network", + "base": [ "OrganizationAffiliation" ], + "type": "reference", + "expression": "OrganizationAffiliation.network", + "xpath": "f:OrganizationAffiliation/f:network", + "xpathUsage": "normal", + "target": [ "Organization" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/OrganizationAffiliation-participating-organization", + "resource": { + "resourceType": "SearchParameter", + "id": "OrganizationAffiliation-participating-organization", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/OrganizationAffiliation-participating-organization", + "version": "4.0.1", + "name": "participating-organization", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The organization that provides services to the primary organization", + "code": "participating-organization", + "base": [ "OrganizationAffiliation" ], + "type": "reference", + "expression": "OrganizationAffiliation.participatingOrganization", + "xpath": "f:OrganizationAffiliation/f:participatingOrganization", + "xpathUsage": "normal", + "target": [ "Organization" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/OrganizationAffiliation-phone", + "resource": { + "resourceType": "SearchParameter", + "id": "OrganizationAffiliation-phone", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/OrganizationAffiliation-phone", + "version": "4.0.1", + "name": "phone", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A value in a phone contact", + "code": "phone", + "base": [ "OrganizationAffiliation" ], + "type": "token", + "expression": "OrganizationAffiliation.telecom.where(system='phone')", + "xpath": "f:OrganizationAffiliation/f:telecom[system/@value='phone']", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/OrganizationAffiliation-primary-organization", + "resource": { + "resourceType": "SearchParameter", + "id": "OrganizationAffiliation-primary-organization", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/OrganizationAffiliation-primary-organization", + "version": "4.0.1", + "name": "primary-organization", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The organization that receives the services from the participating organization", + "code": "primary-organization", + "base": [ "OrganizationAffiliation" ], + "type": "reference", + "expression": "OrganizationAffiliation.organization", + "xpath": "f:OrganizationAffiliation/f:organization", + "xpathUsage": "normal", + "target": [ "Organization" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/OrganizationAffiliation-role", + "resource": { + "resourceType": "SearchParameter", + "id": "OrganizationAffiliation-role", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/OrganizationAffiliation-role", + "version": "4.0.1", + "name": "role", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Definition of the role the participatingOrganization plays", + "code": "role", + "base": [ "OrganizationAffiliation" ], + "type": "token", + "expression": "OrganizationAffiliation.code", + "xpath": "f:OrganizationAffiliation/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/OrganizationAffiliation-service", + "resource": { + "resourceType": "SearchParameter", + "id": "OrganizationAffiliation-service", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/OrganizationAffiliation-service", + "version": "4.0.1", + "name": "service", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Healthcare services provided through the role", + "code": "service", + "base": [ "OrganizationAffiliation" ], + "type": "reference", + "expression": "OrganizationAffiliation.healthcareService", + "xpath": "f:OrganizationAffiliation/f:healthcareService", + "xpathUsage": "normal", + "target": [ "HealthcareService" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/OrganizationAffiliation-specialty", + "resource": { + "resourceType": "SearchParameter", + "id": "OrganizationAffiliation-specialty", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/OrganizationAffiliation-specialty", + "version": "4.0.1", + "name": "specialty", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Specific specialty of the participatingOrganization in the context of the role", + "code": "specialty", + "base": [ "OrganizationAffiliation" ], + "type": "token", + "expression": "OrganizationAffiliation.specialty", + "xpath": "f:OrganizationAffiliation/f:specialty", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/OrganizationAffiliation-telecom", + "resource": { + "resourceType": "SearchParameter", + "id": "OrganizationAffiliation-telecom", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/OrganizationAffiliation-telecom", + "version": "4.0.1", + "name": "telecom", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The value in any kind of contact", + "code": "telecom", + "base": [ "OrganizationAffiliation" ], + "type": "token", + "expression": "OrganizationAffiliation.telecom", + "xpath": "f:OrganizationAffiliation/f:telecom", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Patient-active", + "resource": { + "resourceType": "SearchParameter", + "id": "Patient-active", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Patient-active", + "version": "4.0.1", + "name": "active", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Whether the patient record is active", + "code": "active", + "base": [ "Patient" ], + "type": "token", + "expression": "Patient.active", + "xpath": "f:Patient/f:active", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/individual-address", + "resource": { + "resourceType": "SearchParameter", + "id": "individual-address", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/individual-address", + "version": "4.0.1", + "name": "address", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [Patient](patient.html): A server defined search that may match any of the string fields in the Address, including line, city, district, state, country, postalCode, and/or text\r\n* [Person](person.html): A server defined search that may match any of the string fields in the Address, including line, city, district, state, country, postalCode, and/or text\r\n* [Practitioner](practitioner.html): A server defined search that may match any of the string fields in the Address, including line, city, district, state, country, postalCode, and/or text\r\n* [RelatedPerson](relatedperson.html): A server defined search that may match any of the string fields in the Address, including line, city, district, state, country, postalCode, and/or text\r\n", + "code": "address", + "base": [ "Patient", "Person", "Practitioner", "RelatedPerson" ], + "type": "string", + "expression": "Patient.address | Person.address | Practitioner.address | RelatedPerson.address", + "xpath": "f:Patient/f:address | f:Person/f:address | f:Practitioner/f:address | f:RelatedPerson/f:address", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/individual-address-city", + "resource": { + "resourceType": "SearchParameter", + "id": "individual-address-city", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/individual-address-city", + "version": "4.0.1", + "name": "address-city", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [Patient](patient.html): A city specified in an address\r\n* [Person](person.html): A city specified in an address\r\n* [Practitioner](practitioner.html): A city specified in an address\r\n* [RelatedPerson](relatedperson.html): A city specified in an address\r\n", + "code": "address-city", + "base": [ "Patient", "Person", "Practitioner", "RelatedPerson" ], + "type": "string", + "expression": "Patient.address.city | Person.address.city | Practitioner.address.city | RelatedPerson.address.city", + "xpath": "f:Patient/f:address/f:city | f:Person/f:address/f:city | f:Practitioner/f:address/f:city | f:RelatedPerson/f:address/f:city", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/individual-address-country", + "resource": { + "resourceType": "SearchParameter", + "id": "individual-address-country", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/individual-address-country", + "version": "4.0.1", + "name": "address-country", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [Patient](patient.html): A country specified in an address\r\n* [Person](person.html): A country specified in an address\r\n* [Practitioner](practitioner.html): A country specified in an address\r\n* [RelatedPerson](relatedperson.html): A country specified in an address\r\n", + "code": "address-country", + "base": [ "Patient", "Person", "Practitioner", "RelatedPerson" ], + "type": "string", + "expression": "Patient.address.country | Person.address.country | Practitioner.address.country | RelatedPerson.address.country", + "xpath": "f:Patient/f:address/f:country | f:Person/f:address/f:country | f:Practitioner/f:address/f:country | f:RelatedPerson/f:address/f:country", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/individual-address-postalcode", + "resource": { + "resourceType": "SearchParameter", + "id": "individual-address-postalcode", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/individual-address-postalcode", + "version": "4.0.1", + "name": "address-postalcode", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [Patient](patient.html): A postalCode specified in an address\r\n* [Person](person.html): A postal code specified in an address\r\n* [Practitioner](practitioner.html): A postalCode specified in an address\r\n* [RelatedPerson](relatedperson.html): A postal code specified in an address\r\n", + "code": "address-postalcode", + "base": [ "Patient", "Person", "Practitioner", "RelatedPerson" ], + "type": "string", + "expression": "Patient.address.postalCode | Person.address.postalCode | Practitioner.address.postalCode | RelatedPerson.address.postalCode", + "xpath": "f:Patient/f:address/f:postalCode | f:Person/f:address/f:postalCode | f:Practitioner/f:address/f:postalCode | f:RelatedPerson/f:address/f:postalCode", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/individual-address-state", + "resource": { + "resourceType": "SearchParameter", + "id": "individual-address-state", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/individual-address-state", + "version": "4.0.1", + "name": "address-state", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [Patient](patient.html): A state specified in an address\r\n* [Person](person.html): A state specified in an address\r\n* [Practitioner](practitioner.html): A state specified in an address\r\n* [RelatedPerson](relatedperson.html): A state specified in an address\r\n", + "code": "address-state", + "base": [ "Patient", "Person", "Practitioner", "RelatedPerson" ], + "type": "string", + "expression": "Patient.address.state | Person.address.state | Practitioner.address.state | RelatedPerson.address.state", + "xpath": "f:Patient/f:address/f:state | f:Person/f:address/f:state | f:Practitioner/f:address/f:state | f:RelatedPerson/f:address/f:state", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/individual-address-use", + "resource": { + "resourceType": "SearchParameter", + "id": "individual-address-use", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/individual-address-use", + "version": "4.0.1", + "name": "address-use", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [Patient](patient.html): A use code specified in an address\r\n* [Person](person.html): A use code specified in an address\r\n* [Practitioner](practitioner.html): A use code specified in an address\r\n* [RelatedPerson](relatedperson.html): A use code specified in an address\r\n", + "code": "address-use", + "base": [ "Patient", "Person", "Practitioner", "RelatedPerson" ], + "type": "token", + "expression": "Patient.address.use | Person.address.use | Practitioner.address.use | RelatedPerson.address.use", + "xpath": "f:Patient/f:address/f:use | f:Person/f:address/f:use | f:Practitioner/f:address/f:use | f:RelatedPerson/f:address/f:use", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/individual-birthdate", + "resource": { + "resourceType": "SearchParameter", + "id": "individual-birthdate", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/individual-birthdate", + "version": "4.0.1", + "name": "birthdate", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [Patient](patient.html): The patient's date of birth\r\n* [Person](person.html): The person's date of birth\r\n* [RelatedPerson](relatedperson.html): The Related Person's date of birth\r\n", + "code": "birthdate", + "base": [ "Patient", "Person", "RelatedPerson" ], + "type": "date", + "expression": "Patient.birthDate | Person.birthDate | RelatedPerson.birthDate", + "xpath": "f:Patient/f:birthDate | f:Person/f:birthDate | f:RelatedPerson/f:birthDate", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Patient-death-date", + "resource": { + "resourceType": "SearchParameter", + "id": "Patient-death-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Patient-death-date", + "version": "4.0.1", + "name": "death-date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The date of death has been provided and satisfies this search value", + "code": "death-date", + "base": [ "Patient" ], + "type": "date", + "expression": "(Patient.deceased as dateTime)", + "xpath": "f:Patient/f:deceasedDateTime", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Patient-deceased", + "resource": { + "resourceType": "SearchParameter", + "id": "Patient-deceased", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Patient-deceased", + "version": "4.0.1", + "name": "deceased", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "This patient has been marked as deceased, or as a death date entered", + "code": "deceased", + "base": [ "Patient" ], + "type": "token", + "expression": "Patient.deceased.exists() and Patient.deceased != false", + "xpath": "f:Patient/f:deceasedBoolean | f:Patient/f:deceasedDateTime", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/individual-email", + "resource": { + "resourceType": "SearchParameter", + "id": "individual-email", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/individual-email", + "version": "4.0.1", + "name": "email", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [Patient](patient.html): A value in an email contact\r\n* [Person](person.html): A value in an email contact\r\n* [Practitioner](practitioner.html): A value in an email contact\r\n* [PractitionerRole](practitionerrole.html): A value in an email contact\r\n* [RelatedPerson](relatedperson.html): A value in an email contact\r\n", + "code": "email", + "base": [ "Patient", "Person", "Practitioner", "PractitionerRole", "RelatedPerson" ], + "type": "token", + "expression": "Patient.telecom.where(system='email') | Person.telecom.where(system='email') | Practitioner.telecom.where(system='email') | PractitionerRole.telecom.where(system='email') | RelatedPerson.telecom.where(system='email')", + "xpath": "f:Patient/f:telecom[system/@value='email'] | f:Person/f:telecom[system/@value='email'] | f:Practitioner/f:telecom[system/@value='email'] | f:PractitionerRole/f:telecom[system/@value='email'] | f:RelatedPerson/f:telecom[system/@value='email']", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/individual-family", + "resource": { + "resourceType": "SearchParameter", + "id": "individual-family", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/individual-family", + "version": "4.0.1", + "name": "family", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [Patient](patient.html): A portion of the family name of the patient\r\n* [Practitioner](practitioner.html): A portion of the family name\r\n", + "code": "family", + "base": [ "Patient", "Practitioner" ], + "type": "string", + "expression": "Patient.name.family | Practitioner.name.family", + "xpath": "f:Patient/f:name/f:family | f:Practitioner/f:name/f:family", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/individual-gender", + "resource": { + "resourceType": "SearchParameter", + "id": "individual-gender", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/individual-gender", + "version": "4.0.1", + "name": "gender", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [Patient](patient.html): Gender of the patient\r\n* [Person](person.html): The gender of the person\r\n* [Practitioner](practitioner.html): Gender of the practitioner\r\n* [RelatedPerson](relatedperson.html): Gender of the related person\r\n", + "code": "gender", + "base": [ "Patient", "Person", "Practitioner", "RelatedPerson" ], + "type": "token", + "expression": "Patient.gender | Person.gender | Practitioner.gender | RelatedPerson.gender", + "xpath": "f:Patient/f:gender | f:Person/f:gender | f:Practitioner/f:gender | f:RelatedPerson/f:gender", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Patient-general-practitioner", + "resource": { + "resourceType": "SearchParameter", + "id": "Patient-general-practitioner", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Patient-general-practitioner", + "version": "4.0.1", + "name": "general-practitioner", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Patient's nominated general practitioner, not the organization that manages the record", + "code": "general-practitioner", + "base": [ "Patient" ], + "type": "reference", + "expression": "Patient.generalPractitioner", + "xpath": "f:Patient/f:generalPractitioner", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/individual-given", + "resource": { + "resourceType": "SearchParameter", + "id": "individual-given", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/individual-given", + "version": "4.0.1", + "name": "given", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [Patient](patient.html): A portion of the given name of the patient\r\n* [Practitioner](practitioner.html): A portion of the given name\r\n", + "code": "given", + "base": [ "Patient", "Practitioner" ], + "type": "string", + "expression": "Patient.name.given | Practitioner.name.given", + "xpath": "f:Patient/f:name/f:given | f:Practitioner/f:name/f:given", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Patient-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "Patient-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Patient-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A patient identifier", + "code": "identifier", + "base": [ "Patient" ], + "type": "token", + "expression": "Patient.identifier", + "xpath": "f:Patient/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Patient-language", + "resource": { + "resourceType": "SearchParameter", + "id": "Patient-language", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Patient-language", + "version": "4.0.1", + "name": "language", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Language code (irrespective of use value)", + "code": "language", + "base": [ "Patient" ], + "type": "token", + "expression": "Patient.communication.language", + "xpath": "f:Patient/f:communication/f:language", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Patient-link", + "resource": { + "resourceType": "SearchParameter", + "id": "Patient-link", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Patient-link", + "version": "4.0.1", + "name": "link", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "All patients linked to the given patient", + "code": "link", + "base": [ "Patient" ], + "type": "reference", + "expression": "Patient.link.other", + "xpath": "f:Patient/f:link/f:other", + "xpathUsage": "normal", + "target": [ "Patient", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Patient-name", + "resource": { + "resourceType": "SearchParameter", + "id": "Patient-name", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Patient-name", + "version": "4.0.1", + "name": "name", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A server defined search that may match any of the string fields in the HumanName, including family, give, prefix, suffix, suffix, and/or text", + "code": "name", + "base": [ "Patient" ], + "type": "string", + "expression": "Patient.name", + "xpath": "f:Patient/f:name", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Patient-organization", + "resource": { + "resourceType": "SearchParameter", + "id": "Patient-organization", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Patient-organization", + "version": "4.0.1", + "name": "organization", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The organization that is the custodian of the patient record", + "code": "organization", + "base": [ "Patient" ], + "type": "reference", + "expression": "Patient.managingOrganization", + "xpath": "f:Patient/f:managingOrganization", + "xpathUsage": "normal", + "target": [ "Organization" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/individual-phone", + "resource": { + "resourceType": "SearchParameter", + "id": "individual-phone", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/individual-phone", + "version": "4.0.1", + "name": "phone", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [Patient](patient.html): A value in a phone contact\r\n* [Person](person.html): A value in a phone contact\r\n* [Practitioner](practitioner.html): A value in a phone contact\r\n* [PractitionerRole](practitionerrole.html): A value in a phone contact\r\n* [RelatedPerson](relatedperson.html): A value in a phone contact\r\n", + "code": "phone", + "base": [ "Patient", "Person", "Practitioner", "PractitionerRole", "RelatedPerson" ], + "type": "token", + "expression": "Patient.telecom.where(system='phone') | Person.telecom.where(system='phone') | Practitioner.telecom.where(system='phone') | PractitionerRole.telecom.where(system='phone') | RelatedPerson.telecom.where(system='phone')", + "xpath": "f:Patient/f:telecom[system/@value='phone'] | f:Person/f:telecom[system/@value='phone'] | f:Practitioner/f:telecom[system/@value='phone'] | f:PractitionerRole/f:telecom[system/@value='phone'] | f:RelatedPerson/f:telecom[system/@value='phone']", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/individual-phonetic", + "resource": { + "resourceType": "SearchParameter", + "id": "individual-phonetic", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/individual-phonetic", + "version": "4.0.1", + "name": "phonetic", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [Patient](patient.html): A portion of either family or given name using some kind of phonetic matching algorithm\r\n* [Person](person.html): A portion of name using some kind of phonetic matching algorithm\r\n* [Practitioner](practitioner.html): A portion of either family or given name using some kind of phonetic matching algorithm\r\n* [RelatedPerson](relatedperson.html): A portion of name using some kind of phonetic matching algorithm\r\n", + "code": "phonetic", + "base": [ "Patient", "Person", "Practitioner", "RelatedPerson" ], + "type": "string", + "expression": "Patient.name | Person.name | Practitioner.name | RelatedPerson.name", + "xpath": "f:Patient/f:name | f:Person/f:name | f:Practitioner/f:name | f:RelatedPerson/f:name", + "xpathUsage": "phonetic" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/individual-telecom", + "resource": { + "resourceType": "SearchParameter", + "id": "individual-telecom", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/individual-telecom", + "version": "4.0.1", + "name": "telecom", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Multiple Resources: \r\n\r\n* [Patient](patient.html): The value in any kind of telecom details of the patient\r\n* [Person](person.html): The value in any kind of contact\r\n* [Practitioner](practitioner.html): The value in any kind of contact\r\n* [PractitionerRole](practitionerrole.html): The value in any kind of contact\r\n* [RelatedPerson](relatedperson.html): The value in any kind of contact\r\n", + "code": "telecom", + "base": [ "Patient", "Person", "Practitioner", "PractitionerRole", "RelatedPerson" ], + "type": "token", + "expression": "Patient.telecom | Person.telecom | Practitioner.telecom | PractitionerRole.telecom | RelatedPerson.telecom", + "xpath": "f:Patient/f:telecom | f:Person/f:telecom | f:Practitioner/f:telecom | f:PractitionerRole/f:telecom | f:RelatedPerson/f:telecom", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PaymentNotice-created", + "resource": { + "resourceType": "SearchParameter", + "id": "PaymentNotice-created", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PaymentNotice-created", + "version": "4.0.1", + "name": "created", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "Creation date fro the notice", + "code": "created", + "base": [ "PaymentNotice" ], + "type": "date", + "expression": "PaymentNotice.created", + "xpath": "f:PaymentNotice/f:created", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PaymentNotice-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "PaymentNotice-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PaymentNotice-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The business identifier of the notice", + "code": "identifier", + "base": [ "PaymentNotice" ], + "type": "token", + "expression": "PaymentNotice.identifier", + "xpath": "f:PaymentNotice/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PaymentNotice-payment-status", + "resource": { + "resourceType": "SearchParameter", + "id": "PaymentNotice-payment-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PaymentNotice-payment-status", + "version": "4.0.1", + "name": "payment-status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The type of payment notice", + "code": "payment-status", + "base": [ "PaymentNotice" ], + "type": "token", + "expression": "PaymentNotice.paymentStatus", + "xpath": "f:PaymentNotice/f:paymentStatus", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PaymentNotice-provider", + "resource": { + "resourceType": "SearchParameter", + "id": "PaymentNotice-provider", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PaymentNotice-provider", + "version": "4.0.1", + "name": "provider", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The reference to the provider", + "code": "provider", + "base": [ "PaymentNotice" ], + "type": "reference", + "expression": "PaymentNotice.provider", + "xpath": "f:PaymentNotice/f:provider", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PaymentNotice-request", + "resource": { + "resourceType": "SearchParameter", + "id": "PaymentNotice-request", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PaymentNotice-request", + "version": "4.0.1", + "name": "request", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The Claim", + "code": "request", + "base": [ "PaymentNotice" ], + "type": "reference", + "expression": "PaymentNotice.request", + "xpath": "f:PaymentNotice/f:request", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PaymentNotice-response", + "resource": { + "resourceType": "SearchParameter", + "id": "PaymentNotice-response", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PaymentNotice-response", + "version": "4.0.1", + "name": "response", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The ClaimResponse", + "code": "response", + "base": [ "PaymentNotice" ], + "type": "reference", + "expression": "PaymentNotice.response", + "xpath": "f:PaymentNotice/f:response", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PaymentNotice-status", + "resource": { + "resourceType": "SearchParameter", + "id": "PaymentNotice-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PaymentNotice-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The status of the payment notice", + "code": "status", + "base": [ "PaymentNotice" ], + "type": "token", + "expression": "PaymentNotice.status", + "xpath": "f:PaymentNotice/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PaymentReconciliation-created", + "resource": { + "resourceType": "SearchParameter", + "id": "PaymentReconciliation-created", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PaymentReconciliation-created", + "version": "4.0.1", + "name": "created", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The creation date", + "code": "created", + "base": [ "PaymentReconciliation" ], + "type": "date", + "expression": "PaymentReconciliation.created", + "xpath": "f:PaymentReconciliation/f:created", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PaymentReconciliation-disposition", + "resource": { + "resourceType": "SearchParameter", + "id": "PaymentReconciliation-disposition", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PaymentReconciliation-disposition", + "version": "4.0.1", + "name": "disposition", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The contents of the disposition message", + "code": "disposition", + "base": [ "PaymentReconciliation" ], + "type": "string", + "expression": "PaymentReconciliation.disposition", + "xpath": "f:PaymentReconciliation/f:disposition", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PaymentReconciliation-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "PaymentReconciliation-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PaymentReconciliation-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The business identifier of the ExplanationOfBenefit", + "code": "identifier", + "base": [ "PaymentReconciliation" ], + "type": "token", + "expression": "PaymentReconciliation.identifier", + "xpath": "f:PaymentReconciliation/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PaymentReconciliation-outcome", + "resource": { + "resourceType": "SearchParameter", + "id": "PaymentReconciliation-outcome", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PaymentReconciliation-outcome", + "version": "4.0.1", + "name": "outcome", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The processing outcome", + "code": "outcome", + "base": [ "PaymentReconciliation" ], + "type": "token", + "expression": "PaymentReconciliation.outcome", + "xpath": "f:PaymentReconciliation/f:outcome", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PaymentReconciliation-payment-issuer", + "resource": { + "resourceType": "SearchParameter", + "id": "PaymentReconciliation-payment-issuer", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PaymentReconciliation-payment-issuer", + "version": "4.0.1", + "name": "payment-issuer", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The organization which generated this resource", + "code": "payment-issuer", + "base": [ "PaymentReconciliation" ], + "type": "reference", + "expression": "PaymentReconciliation.paymentIssuer", + "xpath": "f:PaymentReconciliation/f:paymentIssuer", + "xpathUsage": "normal", + "target": [ "Organization" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PaymentReconciliation-request", + "resource": { + "resourceType": "SearchParameter", + "id": "PaymentReconciliation-request", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PaymentReconciliation-request", + "version": "4.0.1", + "name": "request", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The reference to the claim", + "code": "request", + "base": [ "PaymentReconciliation" ], + "type": "reference", + "expression": "PaymentReconciliation.request", + "xpath": "f:PaymentReconciliation/f:request", + "xpathUsage": "normal", + "target": [ "Task" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PaymentReconciliation-requestor", + "resource": { + "resourceType": "SearchParameter", + "id": "PaymentReconciliation-requestor", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PaymentReconciliation-requestor", + "version": "4.0.1", + "name": "requestor", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The reference to the provider who submitted the claim", + "code": "requestor", + "base": [ "PaymentReconciliation" ], + "type": "reference", + "expression": "PaymentReconciliation.requestor", + "xpath": "f:PaymentReconciliation/f:requestor", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PaymentReconciliation-status", + "resource": { + "resourceType": "SearchParameter", + "id": "PaymentReconciliation-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PaymentReconciliation-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The status of the payment reconciliation", + "code": "status", + "base": [ "PaymentReconciliation" ], + "type": "token", + "expression": "PaymentReconciliation.status", + "xpath": "f:PaymentReconciliation/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Person-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "Person-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Person-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A person Identifier", + "code": "identifier", + "base": [ "Person" ], + "type": "token", + "expression": "Person.identifier", + "xpath": "f:Person/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Person-link", + "resource": { + "resourceType": "SearchParameter", + "id": "Person-link", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Person-link", + "version": "4.0.1", + "name": "link", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Any link has this Patient, Person, RelatedPerson or Practitioner reference", + "code": "link", + "base": [ "Person" ], + "type": "reference", + "expression": "Person.link.target", + "xpath": "f:Person/f:link/f:target", + "xpathUsage": "normal", + "target": [ "Practitioner", "Patient", "Person", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Person-name", + "resource": { + "resourceType": "SearchParameter", + "id": "Person-name", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Person-name", + "version": "4.0.1", + "name": "name", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A server defined search that may match any of the string fields in the HumanName, including family, give, prefix, suffix, suffix, and/or text", + "code": "name", + "base": [ "Person" ], + "type": "string", + "expression": "Person.name", + "xpath": "f:Person/f:name", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Person-organization", + "resource": { + "resourceType": "SearchParameter", + "id": "Person-organization", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Person-organization", + "version": "4.0.1", + "name": "organization", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The organization at which this person record is being managed", + "code": "organization", + "base": [ "Person" ], + "type": "reference", + "expression": "Person.managingOrganization", + "xpath": "f:Person/f:managingOrganization", + "xpathUsage": "normal", + "target": [ "Organization" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Person-patient", + "resource": { + "resourceType": "SearchParameter", + "id": "Person-patient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Person-patient", + "version": "4.0.1", + "name": "patient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The Person links to this Patient", + "code": "patient", + "base": [ "Person" ], + "type": "reference", + "expression": "Person.link.target.where(resolve() is Patient)", + "xpath": "f:Person/f:link/f:target", + "xpathUsage": "normal", + "target": [ "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Person-practitioner", + "resource": { + "resourceType": "SearchParameter", + "id": "Person-practitioner", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Person-practitioner", + "version": "4.0.1", + "name": "practitioner", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The Person links to this Practitioner", + "code": "practitioner", + "base": [ "Person" ], + "type": "reference", + "expression": "Person.link.target.where(resolve() is Practitioner)", + "xpath": "f:Person/f:link/f:target", + "xpathUsage": "normal", + "target": [ "Practitioner" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Person-relatedperson", + "resource": { + "resourceType": "SearchParameter", + "id": "Person-relatedperson", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Person-relatedperson", + "version": "4.0.1", + "name": "relatedperson", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The Person links to this RelatedPerson", + "code": "relatedperson", + "base": [ "Person" ], + "type": "reference", + "expression": "Person.link.target.where(resolve() is RelatedPerson)", + "xpath": "f:Person/f:link/f:target", + "xpathUsage": "normal", + "target": [ "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PlanDefinition-composed-of", + "resource": { + "resourceType": "SearchParameter", + "id": "PlanDefinition-composed-of", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PlanDefinition-composed-of", + "version": "4.0.1", + "name": "composed-of", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "composed-of", + "base": [ "PlanDefinition" ], + "type": "reference", + "expression": "PlanDefinition.relatedArtifact.where(type='composed-of').resource", + "xpath": "f:PlanDefinition/f:relatedArtifact[f:type/@value='composed-of']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PlanDefinition-context", + "resource": { + "resourceType": "SearchParameter", + "id": "PlanDefinition-context", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PlanDefinition-context", + "version": "4.0.1", + "name": "context", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A use context assigned to the plan definition", + "code": "context", + "base": [ "PlanDefinition" ], + "type": "token", + "expression": "(PlanDefinition.useContext.value as CodeableConcept)", + "xpath": "f:PlanDefinition/f:useContext/f:valueCodeableConcept", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PlanDefinition-context-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "PlanDefinition-context-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PlanDefinition-context-quantity", + "version": "4.0.1", + "name": "context-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A quantity- or range-valued use context assigned to the plan definition", + "code": "context-quantity", + "base": [ "PlanDefinition" ], + "type": "quantity", + "expression": "(PlanDefinition.useContext.value as Quantity) | (PlanDefinition.useContext.value as Range)", + "xpath": "f:PlanDefinition/f:useContext/f:valueQuantity | f:PlanDefinition/f:useContext/f:valueRange", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PlanDefinition-context-type", + "resource": { + "resourceType": "SearchParameter", + "id": "PlanDefinition-context-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PlanDefinition-context-type", + "version": "4.0.1", + "name": "context-type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A type of use context assigned to the plan definition", + "code": "context-type", + "base": [ "PlanDefinition" ], + "type": "token", + "expression": "PlanDefinition.useContext.code", + "xpath": "f:PlanDefinition/f:useContext/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PlanDefinition-date", + "resource": { + "resourceType": "SearchParameter", + "id": "PlanDefinition-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PlanDefinition-date", + "version": "4.0.1", + "name": "date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The plan definition publication date", + "code": "date", + "base": [ "PlanDefinition" ], + "type": "date", + "expression": "PlanDefinition.date", + "xpath": "f:PlanDefinition/f:date", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PlanDefinition-definition", + "resource": { + "resourceType": "SearchParameter", + "id": "PlanDefinition-definition", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PlanDefinition-definition", + "version": "4.0.1", + "name": "definition", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Activity or plan definitions used by plan definition", + "code": "definition", + "base": [ "PlanDefinition" ], + "type": "reference", + "expression": "PlanDefinition.action.definition", + "xpath": "f:PlanDefinition/f:action/f:definitionCanonical | f:PlanDefinition/f:action/f:definitionUri", + "xpathUsage": "normal", + "target": [ "Questionnaire", "PlanDefinition", "ActivityDefinition" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PlanDefinition-depends-on", + "resource": { + "resourceType": "SearchParameter", + "id": "PlanDefinition-depends-on", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PlanDefinition-depends-on", + "version": "4.0.1", + "name": "depends-on", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "depends-on", + "base": [ "PlanDefinition" ], + "type": "reference", + "expression": "PlanDefinition.relatedArtifact.where(type='depends-on').resource | PlanDefinition.library", + "xpath": "f:PlanDefinition/f:relatedArtifact[f:type/@value='depends-on']/f:resource | f:PlanDefinition/f:library", + "xpathUsage": "normal", + "target": [ "Library", "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PlanDefinition-derived-from", + "resource": { + "resourceType": "SearchParameter", + "id": "PlanDefinition-derived-from", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PlanDefinition-derived-from", + "version": "4.0.1", + "name": "derived-from", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "derived-from", + "base": [ "PlanDefinition" ], + "type": "reference", + "expression": "PlanDefinition.relatedArtifact.where(type='derived-from').resource", + "xpath": "f:PlanDefinition/f:relatedArtifact[f:type/@value='derived-from']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PlanDefinition-description", + "resource": { + "resourceType": "SearchParameter", + "id": "PlanDefinition-description", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PlanDefinition-description", + "version": "4.0.1", + "name": "description", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The description of the plan definition", + "code": "description", + "base": [ "PlanDefinition" ], + "type": "string", + "expression": "PlanDefinition.description", + "xpath": "f:PlanDefinition/f:description", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PlanDefinition-effective", + "resource": { + "resourceType": "SearchParameter", + "id": "PlanDefinition-effective", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PlanDefinition-effective", + "version": "4.0.1", + "name": "effective", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The time during which the plan definition is intended to be in use", + "code": "effective", + "base": [ "PlanDefinition" ], + "type": "date", + "expression": "PlanDefinition.effectivePeriod", + "xpath": "f:PlanDefinition/f:effectivePeriod", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PlanDefinition-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "PlanDefinition-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PlanDefinition-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "External identifier for the plan definition", + "code": "identifier", + "base": [ "PlanDefinition" ], + "type": "token", + "expression": "PlanDefinition.identifier", + "xpath": "f:PlanDefinition/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PlanDefinition-jurisdiction", + "resource": { + "resourceType": "SearchParameter", + "id": "PlanDefinition-jurisdiction", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PlanDefinition-jurisdiction", + "version": "4.0.1", + "name": "jurisdiction", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Intended jurisdiction for the plan definition", + "code": "jurisdiction", + "base": [ "PlanDefinition" ], + "type": "token", + "expression": "PlanDefinition.jurisdiction", + "xpath": "f:PlanDefinition/f:jurisdiction", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PlanDefinition-name", + "resource": { + "resourceType": "SearchParameter", + "id": "PlanDefinition-name", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PlanDefinition-name", + "version": "4.0.1", + "name": "name", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Computationally friendly name of the plan definition", + "code": "name", + "base": [ "PlanDefinition" ], + "type": "string", + "expression": "PlanDefinition.name", + "xpath": "f:PlanDefinition/f:name", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PlanDefinition-predecessor", + "resource": { + "resourceType": "SearchParameter", + "id": "PlanDefinition-predecessor", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PlanDefinition-predecessor", + "version": "4.0.1", + "name": "predecessor", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "predecessor", + "base": [ "PlanDefinition" ], + "type": "reference", + "expression": "PlanDefinition.relatedArtifact.where(type='predecessor').resource", + "xpath": "f:PlanDefinition/f:relatedArtifact[f:type/@value='predecessor']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PlanDefinition-publisher", + "resource": { + "resourceType": "SearchParameter", + "id": "PlanDefinition-publisher", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PlanDefinition-publisher", + "version": "4.0.1", + "name": "publisher", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Name of the publisher of the plan definition", + "code": "publisher", + "base": [ "PlanDefinition" ], + "type": "string", + "expression": "PlanDefinition.publisher", + "xpath": "f:PlanDefinition/f:publisher", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PlanDefinition-status", + "resource": { + "resourceType": "SearchParameter", + "id": "PlanDefinition-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PlanDefinition-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The current status of the plan definition", + "code": "status", + "base": [ "PlanDefinition" ], + "type": "token", + "expression": "PlanDefinition.status", + "xpath": "f:PlanDefinition/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PlanDefinition-successor", + "resource": { + "resourceType": "SearchParameter", + "id": "PlanDefinition-successor", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PlanDefinition-successor", + "version": "4.0.1", + "name": "successor", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "successor", + "base": [ "PlanDefinition" ], + "type": "reference", + "expression": "PlanDefinition.relatedArtifact.where(type='successor').resource", + "xpath": "f:PlanDefinition/f:relatedArtifact[f:type/@value='successor']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PlanDefinition-title", + "resource": { + "resourceType": "SearchParameter", + "id": "PlanDefinition-title", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PlanDefinition-title", + "version": "4.0.1", + "name": "title", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The human-friendly name of the plan definition", + "code": "title", + "base": [ "PlanDefinition" ], + "type": "string", + "expression": "PlanDefinition.title", + "xpath": "f:PlanDefinition/f:title", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PlanDefinition-topic", + "resource": { + "resourceType": "SearchParameter", + "id": "PlanDefinition-topic", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PlanDefinition-topic", + "version": "4.0.1", + "name": "topic", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Topics associated with the module", + "code": "topic", + "base": [ "PlanDefinition" ], + "type": "token", + "expression": "PlanDefinition.topic", + "xpath": "f:PlanDefinition/f:topic", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PlanDefinition-type", + "resource": { + "resourceType": "SearchParameter", + "id": "PlanDefinition-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PlanDefinition-type", + "version": "4.0.1", + "name": "type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The type of artifact the plan (e.g. order-set, eca-rule, protocol)", + "code": "type", + "base": [ "PlanDefinition" ], + "type": "token", + "expression": "PlanDefinition.type", + "xpath": "f:PlanDefinition/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PlanDefinition-url", + "resource": { + "resourceType": "SearchParameter", + "id": "PlanDefinition-url", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PlanDefinition-url", + "version": "4.0.1", + "name": "url", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The uri that identifies the plan definition", + "code": "url", + "base": [ "PlanDefinition" ], + "type": "uri", + "expression": "PlanDefinition.url", + "xpath": "f:PlanDefinition/f:url", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PlanDefinition-version", + "resource": { + "resourceType": "SearchParameter", + "id": "PlanDefinition-version", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PlanDefinition-version", + "version": "4.0.1", + "name": "version", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The business version of the plan definition", + "code": "version", + "base": [ "PlanDefinition" ], + "type": "token", + "expression": "PlanDefinition.version", + "xpath": "f:PlanDefinition/f:version", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PlanDefinition-context-type-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "PlanDefinition-context-type-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PlanDefinition-context-type-quantity", + "version": "4.0.1", + "name": "context-type-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A use context type and quantity- or range-based value assigned to the plan definition", + "code": "context-type-quantity", + "base": [ "PlanDefinition" ], + "type": "composite", + "expression": "PlanDefinition.useContext", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/PlanDefinition-context-type", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/PlanDefinition-context-quantity", + "expression": "value.as(Quantity) | value.as(Range)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PlanDefinition-context-type-value", + "resource": { + "resourceType": "SearchParameter", + "id": "PlanDefinition-context-type-value", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PlanDefinition-context-type-value", + "version": "4.0.1", + "name": "context-type-value", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A use context type and value assigned to the plan definition", + "code": "context-type-value", + "base": [ "PlanDefinition" ], + "type": "composite", + "expression": "PlanDefinition.useContext", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/PlanDefinition-context-type", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/PlanDefinition-context", + "expression": "value.as(CodeableConcept)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Practitioner-active", + "resource": { + "resourceType": "SearchParameter", + "id": "Practitioner-active", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Practitioner-active", + "version": "4.0.1", + "name": "active", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Whether the practitioner record is active", + "code": "active", + "base": [ "Practitioner" ], + "type": "token", + "expression": "Practitioner.active", + "xpath": "f:Practitioner/f:active", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Practitioner-communication", + "resource": { + "resourceType": "SearchParameter", + "id": "Practitioner-communication", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Practitioner-communication", + "version": "4.0.1", + "name": "communication", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "One of the languages that the practitioner can communicate with", + "code": "communication", + "base": [ "Practitioner" ], + "type": "token", + "expression": "Practitioner.communication", + "xpath": "f:Practitioner/f:communication", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Practitioner-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "Practitioner-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Practitioner-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A practitioner's Identifier", + "code": "identifier", + "base": [ "Practitioner" ], + "type": "token", + "expression": "Practitioner.identifier", + "xpath": "f:Practitioner/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Practitioner-name", + "resource": { + "resourceType": "SearchParameter", + "id": "Practitioner-name", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Practitioner-name", + "version": "4.0.1", + "name": "name", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A server defined search that may match any of the string fields in the HumanName, including family, give, prefix, suffix, suffix, and/or text", + "code": "name", + "base": [ "Practitioner" ], + "type": "string", + "expression": "Practitioner.name", + "xpath": "f:Practitioner/f:name", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PractitionerRole-active", + "resource": { + "resourceType": "SearchParameter", + "id": "PractitionerRole-active", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PractitionerRole-active", + "version": "4.0.1", + "name": "active", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Whether this practitioner role record is in active use", + "code": "active", + "base": [ "PractitionerRole" ], + "type": "token", + "expression": "PractitionerRole.active", + "xpath": "f:PractitionerRole/f:active", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PractitionerRole-date", + "resource": { + "resourceType": "SearchParameter", + "id": "PractitionerRole-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PractitionerRole-date", + "version": "4.0.1", + "name": "date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The period during which the practitioner is authorized to perform in these role(s)", + "code": "date", + "base": [ "PractitionerRole" ], + "type": "date", + "expression": "PractitionerRole.period", + "xpath": "f:PractitionerRole/f:period", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PractitionerRole-endpoint", + "resource": { + "resourceType": "SearchParameter", + "id": "PractitionerRole-endpoint", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PractitionerRole-endpoint", + "version": "4.0.1", + "name": "endpoint", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Technical endpoints providing access to services operated for the practitioner with this role", + "code": "endpoint", + "base": [ "PractitionerRole" ], + "type": "reference", + "expression": "PractitionerRole.endpoint", + "xpath": "f:PractitionerRole/f:endpoint", + "xpathUsage": "normal", + "target": [ "Endpoint" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PractitionerRole-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "PractitionerRole-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PractitionerRole-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A practitioner's Identifier", + "code": "identifier", + "base": [ "PractitionerRole" ], + "type": "token", + "expression": "PractitionerRole.identifier", + "xpath": "f:PractitionerRole/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PractitionerRole-location", + "resource": { + "resourceType": "SearchParameter", + "id": "PractitionerRole-location", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PractitionerRole-location", + "version": "4.0.1", + "name": "location", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "One of the locations at which this practitioner provides care", + "code": "location", + "base": [ "PractitionerRole" ], + "type": "reference", + "expression": "PractitionerRole.location", + "xpath": "f:PractitionerRole/f:location", + "xpathUsage": "normal", + "target": [ "Location" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PractitionerRole-organization", + "resource": { + "resourceType": "SearchParameter", + "id": "PractitionerRole-organization", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PractitionerRole-organization", + "version": "4.0.1", + "name": "organization", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The identity of the organization the practitioner represents / acts on behalf of", + "code": "organization", + "base": [ "PractitionerRole" ], + "type": "reference", + "expression": "PractitionerRole.organization", + "xpath": "f:PractitionerRole/f:organization", + "xpathUsage": "normal", + "target": [ "Organization" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PractitionerRole-practitioner", + "resource": { + "resourceType": "SearchParameter", + "id": "PractitionerRole-practitioner", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PractitionerRole-practitioner", + "version": "4.0.1", + "name": "practitioner", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Practitioner that is able to provide the defined services for the organization", + "code": "practitioner", + "base": [ "PractitionerRole" ], + "type": "reference", + "expression": "PractitionerRole.practitioner", + "xpath": "f:PractitionerRole/f:practitioner", + "xpathUsage": "normal", + "target": [ "Practitioner" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PractitionerRole-role", + "resource": { + "resourceType": "SearchParameter", + "id": "PractitionerRole-role", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PractitionerRole-role", + "version": "4.0.1", + "name": "role", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The practitioner can perform this role at for the organization", + "code": "role", + "base": [ "PractitionerRole" ], + "type": "token", + "expression": "PractitionerRole.code", + "xpath": "f:PractitionerRole/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PractitionerRole-service", + "resource": { + "resourceType": "SearchParameter", + "id": "PractitionerRole-service", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PractitionerRole-service", + "version": "4.0.1", + "name": "service", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The list of healthcare services that this worker provides for this role's Organization/Location(s)", + "code": "service", + "base": [ "PractitionerRole" ], + "type": "reference", + "expression": "PractitionerRole.healthcareService", + "xpath": "f:PractitionerRole/f:healthcareService", + "xpathUsage": "normal", + "target": [ "HealthcareService" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/PractitionerRole-specialty", + "resource": { + "resourceType": "SearchParameter", + "id": "PractitionerRole-specialty", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/PractitionerRole-specialty", + "version": "4.0.1", + "name": "specialty", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The practitioner has this specialty at an organization", + "code": "specialty", + "base": [ "PractitionerRole" ], + "type": "token", + "expression": "PractitionerRole.specialty", + "xpath": "f:PractitionerRole/f:specialty", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Procedure-based-on", + "resource": { + "resourceType": "SearchParameter", + "id": "Procedure-based-on", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Procedure-based-on", + "version": "4.0.1", + "name": "based-on", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "A request for this procedure", + "code": "based-on", + "base": [ "Procedure" ], + "type": "reference", + "expression": "Procedure.basedOn", + "xpath": "f:Procedure/f:basedOn", + "xpathUsage": "normal", + "target": [ "CarePlan", "ServiceRequest" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Procedure-category", + "resource": { + "resourceType": "SearchParameter", + "id": "Procedure-category", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Procedure-category", + "version": "4.0.1", + "name": "category", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Classification of the procedure", + "code": "category", + "base": [ "Procedure" ], + "type": "token", + "expression": "Procedure.category", + "xpath": "f:Procedure/f:category", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Procedure-instantiates-canonical", + "resource": { + "resourceType": "SearchParameter", + "id": "Procedure-instantiates-canonical", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Procedure-instantiates-canonical", + "version": "4.0.1", + "name": "instantiates-canonical", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Instantiates FHIR protocol or definition", + "code": "instantiates-canonical", + "base": [ "Procedure" ], + "type": "reference", + "expression": "Procedure.instantiatesCanonical", + "xpath": "f:Procedure/f:instantiatesCanonical", + "xpathUsage": "normal", + "target": [ "Questionnaire", "Measure", "PlanDefinition", "OperationDefinition", "ActivityDefinition" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Procedure-instantiates-uri", + "resource": { + "resourceType": "SearchParameter", + "id": "Procedure-instantiates-uri", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Procedure-instantiates-uri", + "version": "4.0.1", + "name": "instantiates-uri", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Instantiates external protocol or definition", + "code": "instantiates-uri", + "base": [ "Procedure" ], + "type": "uri", + "expression": "Procedure.instantiatesUri", + "xpath": "f:Procedure/f:instantiatesUri", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Procedure-location", + "resource": { + "resourceType": "SearchParameter", + "id": "Procedure-location", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Procedure-location", + "version": "4.0.1", + "name": "location", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Where the procedure happened", + "code": "location", + "base": [ "Procedure" ], + "type": "reference", + "expression": "Procedure.location", + "xpath": "f:Procedure/f:location", + "xpathUsage": "normal", + "target": [ "Location" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Procedure-part-of", + "resource": { + "resourceType": "SearchParameter", + "id": "Procedure-part-of", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Procedure-part-of", + "version": "4.0.1", + "name": "part-of", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Part of referenced event", + "code": "part-of", + "base": [ "Procedure" ], + "type": "reference", + "expression": "Procedure.partOf", + "xpath": "f:Procedure/f:partOf", + "xpathUsage": "normal", + "target": [ "Observation", "Procedure", "MedicationAdministration" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Procedure-performer", + "resource": { + "resourceType": "SearchParameter", + "id": "Procedure-performer", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Procedure-performer", + "version": "4.0.1", + "name": "performer", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "The reference to the practitioner", + "code": "performer", + "base": [ "Procedure" ], + "type": "reference", + "expression": "Procedure.performer.actor", + "xpath": "f:Procedure/f:performer/f:actor", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "Device", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Procedure-reason-code", + "resource": { + "resourceType": "SearchParameter", + "id": "Procedure-reason-code", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Procedure-reason-code", + "version": "4.0.1", + "name": "reason-code", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Coded reason procedure performed", + "code": "reason-code", + "base": [ "Procedure" ], + "type": "token", + "expression": "Procedure.reasonCode", + "xpath": "f:Procedure/f:reasonCode", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Procedure-reason-reference", + "resource": { + "resourceType": "SearchParameter", + "id": "Procedure-reason-reference", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Procedure-reason-reference", + "version": "4.0.1", + "name": "reason-reference", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "The justification that the procedure was performed", + "code": "reason-reference", + "base": [ "Procedure" ], + "type": "reference", + "expression": "Procedure.reasonReference", + "xpath": "f:Procedure/f:reasonReference", + "xpathUsage": "normal", + "target": [ "Condition", "Observation", "Procedure", "DiagnosticReport", "DocumentReference" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Procedure-status", + "resource": { + "resourceType": "SearchParameter", + "id": "Procedure-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Procedure-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "preparation | in-progress | not-done | on-hold | stopped | completed | entered-in-error | unknown", + "code": "status", + "base": [ "Procedure" ], + "type": "token", + "expression": "Procedure.status", + "xpath": "f:Procedure/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Procedure-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "Procedure-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Procedure-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Care)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/patientcare/index.cfm" + } ] + } ], + "description": "Search by subject", + "code": "subject", + "base": [ "Procedure" ], + "type": "reference", + "expression": "Procedure.subject", + "xpath": "f:Procedure/f:subject", + "xpathUsage": "normal", + "target": [ "Group", "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Provenance-agent", + "resource": { + "resourceType": "SearchParameter", + "id": "Provenance-agent", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Provenance-agent", + "version": "4.0.1", + "name": "agent", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Security)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/secure/index.cfm" + } ] + } ], + "description": "Who participated", + "code": "agent", + "base": [ "Provenance" ], + "type": "reference", + "expression": "Provenance.agent.who", + "xpath": "f:Provenance/f:agent/f:who", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "Device", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Provenance-agent-role", + "resource": { + "resourceType": "SearchParameter", + "id": "Provenance-agent-role", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Provenance-agent-role", + "version": "4.0.1", + "name": "agent-role", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Security)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/secure/index.cfm" + } ] + } ], + "description": "What the agents role was", + "code": "agent-role", + "base": [ "Provenance" ], + "type": "token", + "expression": "Provenance.agent.role", + "xpath": "f:Provenance/f:agent/f:role", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Provenance-agent-type", + "resource": { + "resourceType": "SearchParameter", + "id": "Provenance-agent-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Provenance-agent-type", + "version": "4.0.1", + "name": "agent-type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Security)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/secure/index.cfm" + } ] + } ], + "description": "How the agent participated", + "code": "agent-type", + "base": [ "Provenance" ], + "type": "token", + "expression": "Provenance.agent.type", + "xpath": "f:Provenance/f:agent/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Provenance-entity", + "resource": { + "resourceType": "SearchParameter", + "id": "Provenance-entity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Provenance-entity", + "version": "4.0.1", + "name": "entity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Security)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/secure/index.cfm" + } ] + } ], + "description": "Identity of entity", + "code": "entity", + "base": [ "Provenance" ], + "type": "reference", + "expression": "Provenance.entity.what", + "xpath": "f:Provenance/f:entity/f:what", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Provenance-location", + "resource": { + "resourceType": "SearchParameter", + "id": "Provenance-location", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Provenance-location", + "version": "4.0.1", + "name": "location", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Security)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/secure/index.cfm" + } ] + } ], + "description": "Where the activity occurred, if relevant", + "code": "location", + "base": [ "Provenance" ], + "type": "reference", + "expression": "Provenance.location", + "xpath": "f:Provenance/f:location", + "xpathUsage": "normal", + "target": [ "Location" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Provenance-patient", + "resource": { + "resourceType": "SearchParameter", + "id": "Provenance-patient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Provenance-patient", + "version": "4.0.1", + "name": "patient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Security)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/secure/index.cfm" + } ] + } ], + "description": "Target Reference(s) (usually version specific)", + "code": "patient", + "base": [ "Provenance" ], + "type": "reference", + "expression": "Provenance.target.where(resolve() is Patient)", + "xpath": "f:Provenance/f:target", + "xpathUsage": "normal", + "target": [ "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Provenance-recorded", + "resource": { + "resourceType": "SearchParameter", + "id": "Provenance-recorded", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Provenance-recorded", + "version": "4.0.1", + "name": "recorded", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Security)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/secure/index.cfm" + } ] + } ], + "description": "When the activity was recorded / updated", + "code": "recorded", + "base": [ "Provenance" ], + "type": "date", + "expression": "Provenance.recorded", + "xpath": "f:Provenance/f:recorded", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Provenance-signature-type", + "resource": { + "resourceType": "SearchParameter", + "id": "Provenance-signature-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Provenance-signature-type", + "version": "4.0.1", + "name": "signature-type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Security)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/secure/index.cfm" + } ] + } ], + "description": "Indication of the reason the entity signed the object(s)", + "code": "signature-type", + "base": [ "Provenance" ], + "type": "token", + "expression": "Provenance.signature.type", + "xpath": "f:Provenance/f:signature/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Provenance-target", + "resource": { + "resourceType": "SearchParameter", + "id": "Provenance-target", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Provenance-target", + "version": "4.0.1", + "name": "target", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Security)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/secure/index.cfm" + } ] + } ], + "description": "Target Reference(s) (usually version specific)", + "code": "target", + "base": [ "Provenance" ], + "type": "reference", + "expression": "Provenance.target", + "xpath": "f:Provenance/f:target", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Provenance-when", + "resource": { + "resourceType": "SearchParameter", + "id": "Provenance-when", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Provenance-when", + "version": "4.0.1", + "name": "when", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Security)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/secure/index.cfm" + } ] + } ], + "description": "When the activity occurred", + "code": "when", + "base": [ "Provenance" ], + "type": "date", + "expression": "(Provenance.occurred as dateTime)", + "xpath": "f:Provenance/f:occurredDateTime", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Questionnaire-code", + "resource": { + "resourceType": "SearchParameter", + "id": "Questionnaire-code", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Questionnaire-code", + "version": "4.0.1", + "name": "code", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "A code that corresponds to one of its items in the questionnaire", + "code": "code", + "base": [ "Questionnaire" ], + "type": "token", + "expression": "Questionnaire.item.code", + "xpath": "f:Questionnaire/f:item/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Questionnaire-context", + "resource": { + "resourceType": "SearchParameter", + "id": "Questionnaire-context", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Questionnaire-context", + "version": "4.0.1", + "name": "context", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "A use context assigned to the questionnaire", + "code": "context", + "base": [ "Questionnaire" ], + "type": "token", + "expression": "(Questionnaire.useContext.value as CodeableConcept)", + "xpath": "f:Questionnaire/f:useContext/f:valueCodeableConcept", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Questionnaire-context-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "Questionnaire-context-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Questionnaire-context-quantity", + "version": "4.0.1", + "name": "context-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "A quantity- or range-valued use context assigned to the questionnaire", + "code": "context-quantity", + "base": [ "Questionnaire" ], + "type": "quantity", + "expression": "(Questionnaire.useContext.value as Quantity) | (Questionnaire.useContext.value as Range)", + "xpath": "f:Questionnaire/f:useContext/f:valueQuantity | f:Questionnaire/f:useContext/f:valueRange", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Questionnaire-context-type", + "resource": { + "resourceType": "SearchParameter", + "id": "Questionnaire-context-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Questionnaire-context-type", + "version": "4.0.1", + "name": "context-type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "A type of use context assigned to the questionnaire", + "code": "context-type", + "base": [ "Questionnaire" ], + "type": "token", + "expression": "Questionnaire.useContext.code", + "xpath": "f:Questionnaire/f:useContext/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Questionnaire-date", + "resource": { + "resourceType": "SearchParameter", + "id": "Questionnaire-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Questionnaire-date", + "version": "4.0.1", + "name": "date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The questionnaire publication date", + "code": "date", + "base": [ "Questionnaire" ], + "type": "date", + "expression": "Questionnaire.date", + "xpath": "f:Questionnaire/f:date", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Questionnaire-definition", + "resource": { + "resourceType": "SearchParameter", + "id": "Questionnaire-definition", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Questionnaire-definition", + "version": "4.0.1", + "name": "definition", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "ElementDefinition - details for the item", + "code": "definition", + "base": [ "Questionnaire" ], + "type": "uri", + "expression": "Questionnaire.item.definition", + "xpath": "f:Questionnaire/f:item/f:definition", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Questionnaire-description", + "resource": { + "resourceType": "SearchParameter", + "id": "Questionnaire-description", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Questionnaire-description", + "version": "4.0.1", + "name": "description", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The description of the questionnaire", + "code": "description", + "base": [ "Questionnaire" ], + "type": "string", + "expression": "Questionnaire.description", + "xpath": "f:Questionnaire/f:description", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Questionnaire-effective", + "resource": { + "resourceType": "SearchParameter", + "id": "Questionnaire-effective", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Questionnaire-effective", + "version": "4.0.1", + "name": "effective", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The time during which the questionnaire is intended to be in use", + "code": "effective", + "base": [ "Questionnaire" ], + "type": "date", + "expression": "Questionnaire.effectivePeriod", + "xpath": "f:Questionnaire/f:effectivePeriod", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Questionnaire-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "Questionnaire-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Questionnaire-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "External identifier for the questionnaire", + "code": "identifier", + "base": [ "Questionnaire" ], + "type": "token", + "expression": "Questionnaire.identifier", + "xpath": "f:Questionnaire/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Questionnaire-jurisdiction", + "resource": { + "resourceType": "SearchParameter", + "id": "Questionnaire-jurisdiction", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Questionnaire-jurisdiction", + "version": "4.0.1", + "name": "jurisdiction", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Intended jurisdiction for the questionnaire", + "code": "jurisdiction", + "base": [ "Questionnaire" ], + "type": "token", + "expression": "Questionnaire.jurisdiction", + "xpath": "f:Questionnaire/f:jurisdiction", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Questionnaire-name", + "resource": { + "resourceType": "SearchParameter", + "id": "Questionnaire-name", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Questionnaire-name", + "version": "4.0.1", + "name": "name", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Computationally friendly name of the questionnaire", + "code": "name", + "base": [ "Questionnaire" ], + "type": "string", + "expression": "Questionnaire.name", + "xpath": "f:Questionnaire/f:name", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Questionnaire-publisher", + "resource": { + "resourceType": "SearchParameter", + "id": "Questionnaire-publisher", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Questionnaire-publisher", + "version": "4.0.1", + "name": "publisher", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Name of the publisher of the questionnaire", + "code": "publisher", + "base": [ "Questionnaire" ], + "type": "string", + "expression": "Questionnaire.publisher", + "xpath": "f:Questionnaire/f:publisher", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Questionnaire-status", + "resource": { + "resourceType": "SearchParameter", + "id": "Questionnaire-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Questionnaire-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The current status of the questionnaire", + "code": "status", + "base": [ "Questionnaire" ], + "type": "token", + "expression": "Questionnaire.status", + "xpath": "f:Questionnaire/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Questionnaire-subject-type", + "resource": { + "resourceType": "SearchParameter", + "id": "Questionnaire-subject-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Questionnaire-subject-type", + "version": "4.0.1", + "name": "subject-type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Resource that can be subject of QuestionnaireResponse", + "code": "subject-type", + "base": [ "Questionnaire" ], + "type": "token", + "expression": "Questionnaire.subjectType", + "xpath": "f:Questionnaire/f:subjectType", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Questionnaire-title", + "resource": { + "resourceType": "SearchParameter", + "id": "Questionnaire-title", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Questionnaire-title", + "version": "4.0.1", + "name": "title", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The human-friendly name of the questionnaire", + "code": "title", + "base": [ "Questionnaire" ], + "type": "string", + "expression": "Questionnaire.title", + "xpath": "f:Questionnaire/f:title", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Questionnaire-url", + "resource": { + "resourceType": "SearchParameter", + "id": "Questionnaire-url", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Questionnaire-url", + "version": "4.0.1", + "name": "url", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The uri that identifies the questionnaire", + "code": "url", + "base": [ "Questionnaire" ], + "type": "uri", + "expression": "Questionnaire.url", + "xpath": "f:Questionnaire/f:url", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Questionnaire-version", + "resource": { + "resourceType": "SearchParameter", + "id": "Questionnaire-version", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Questionnaire-version", + "version": "4.0.1", + "name": "version", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The business version of the questionnaire", + "code": "version", + "base": [ "Questionnaire" ], + "type": "token", + "expression": "Questionnaire.version", + "xpath": "f:Questionnaire/f:version", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Questionnaire-context-type-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "Questionnaire-context-type-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Questionnaire-context-type-quantity", + "version": "4.0.1", + "name": "context-type-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "A use context type and quantity- or range-based value assigned to the questionnaire", + "code": "context-type-quantity", + "base": [ "Questionnaire" ], + "type": "composite", + "expression": "Questionnaire.useContext", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/Questionnaire-context-type", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/Questionnaire-context-quantity", + "expression": "value.as(Quantity) | value.as(Range)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Questionnaire-context-type-value", + "resource": { + "resourceType": "SearchParameter", + "id": "Questionnaire-context-type-value", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Questionnaire-context-type-value", + "version": "4.0.1", + "name": "context-type-value", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "A use context type and value assigned to the questionnaire", + "code": "context-type-value", + "base": [ "Questionnaire" ], + "type": "composite", + "expression": "Questionnaire.useContext", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/Questionnaire-context-type", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/Questionnaire-context", + "expression": "value.as(CodeableConcept)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/QuestionnaireResponse-author", + "resource": { + "resourceType": "SearchParameter", + "id": "QuestionnaireResponse-author", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/QuestionnaireResponse-author", + "version": "4.0.1", + "name": "author", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The author of the questionnaire response", + "code": "author", + "base": [ "QuestionnaireResponse" ], + "type": "reference", + "expression": "QuestionnaireResponse.author", + "xpath": "f:QuestionnaireResponse/f:author", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "Device", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/QuestionnaireResponse-authored", + "resource": { + "resourceType": "SearchParameter", + "id": "QuestionnaireResponse-authored", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/QuestionnaireResponse-authored", + "version": "4.0.1", + "name": "authored", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "When the questionnaire response was last changed", + "code": "authored", + "base": [ "QuestionnaireResponse" ], + "type": "date", + "expression": "QuestionnaireResponse.authored", + "xpath": "f:QuestionnaireResponse/f:authored", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/QuestionnaireResponse-based-on", + "resource": { + "resourceType": "SearchParameter", + "id": "QuestionnaireResponse-based-on", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/QuestionnaireResponse-based-on", + "version": "4.0.1", + "name": "based-on", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Plan/proposal/order fulfilled by this questionnaire response", + "code": "based-on", + "base": [ "QuestionnaireResponse" ], + "type": "reference", + "expression": "QuestionnaireResponse.basedOn", + "xpath": "f:QuestionnaireResponse/f:basedOn", + "xpathUsage": "normal", + "target": [ "CarePlan", "ServiceRequest" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/QuestionnaireResponse-encounter", + "resource": { + "resourceType": "SearchParameter", + "id": "QuestionnaireResponse-encounter", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/QuestionnaireResponse-encounter", + "version": "4.0.1", + "name": "encounter", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Encounter associated with the questionnaire response", + "code": "encounter", + "base": [ "QuestionnaireResponse" ], + "type": "reference", + "expression": "QuestionnaireResponse.encounter", + "xpath": "f:QuestionnaireResponse/f:encounter", + "xpathUsage": "normal", + "target": [ "Encounter" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/QuestionnaireResponse-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "QuestionnaireResponse-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/QuestionnaireResponse-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The unique identifier for the questionnaire response", + "code": "identifier", + "base": [ "QuestionnaireResponse" ], + "type": "token", + "expression": "QuestionnaireResponse.identifier", + "xpath": "f:QuestionnaireResponse/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/QuestionnaireResponse-part-of", + "resource": { + "resourceType": "SearchParameter", + "id": "QuestionnaireResponse-part-of", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/QuestionnaireResponse-part-of", + "version": "4.0.1", + "name": "part-of", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Procedure or observation this questionnaire response was performed as a part of", + "code": "part-of", + "base": [ "QuestionnaireResponse" ], + "type": "reference", + "expression": "QuestionnaireResponse.partOf", + "xpath": "f:QuestionnaireResponse/f:partOf", + "xpathUsage": "normal", + "target": [ "Observation", "Procedure" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/QuestionnaireResponse-patient", + "resource": { + "resourceType": "SearchParameter", + "id": "QuestionnaireResponse-patient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/QuestionnaireResponse-patient", + "version": "4.0.1", + "name": "patient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The patient that is the subject of the questionnaire response", + "code": "patient", + "base": [ "QuestionnaireResponse" ], + "type": "reference", + "expression": "QuestionnaireResponse.subject.where(resolve() is Patient)", + "xpath": "f:QuestionnaireResponse/f:subject", + "xpathUsage": "normal", + "target": [ "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/QuestionnaireResponse-questionnaire", + "resource": { + "resourceType": "SearchParameter", + "id": "QuestionnaireResponse-questionnaire", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/QuestionnaireResponse-questionnaire", + "version": "4.0.1", + "name": "questionnaire", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The questionnaire the answers are provided for", + "code": "questionnaire", + "base": [ "QuestionnaireResponse" ], + "type": "reference", + "expression": "QuestionnaireResponse.questionnaire", + "xpath": "f:QuestionnaireResponse/f:questionnaire", + "xpathUsage": "normal", + "target": [ "Questionnaire" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/QuestionnaireResponse-source", + "resource": { + "resourceType": "SearchParameter", + "id": "QuestionnaireResponse-source", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/QuestionnaireResponse-source", + "version": "4.0.1", + "name": "source", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The individual providing the information reflected in the questionnaire respose", + "code": "source", + "base": [ "QuestionnaireResponse" ], + "type": "reference", + "expression": "QuestionnaireResponse.source", + "xpath": "f:QuestionnaireResponse/f:source", + "xpathUsage": "normal", + "target": [ "Practitioner", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/QuestionnaireResponse-status", + "resource": { + "resourceType": "SearchParameter", + "id": "QuestionnaireResponse-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/QuestionnaireResponse-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The status of the questionnaire response", + "code": "status", + "base": [ "QuestionnaireResponse" ], + "type": "token", + "expression": "QuestionnaireResponse.status", + "xpath": "f:QuestionnaireResponse/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/QuestionnaireResponse-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "QuestionnaireResponse-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/QuestionnaireResponse-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The subject of the questionnaire response", + "code": "subject", + "base": [ "QuestionnaireResponse" ], + "type": "reference", + "expression": "QuestionnaireResponse.subject", + "xpath": "f:QuestionnaireResponse/f:subject", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RelatedPerson-active", + "resource": { + "resourceType": "SearchParameter", + "id": "RelatedPerson-active", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RelatedPerson-active", + "version": "4.0.1", + "name": "active", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Indicates if the related person record is active", + "code": "active", + "base": [ "RelatedPerson" ], + "type": "token", + "expression": "RelatedPerson.active", + "xpath": "f:RelatedPerson/f:active", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RelatedPerson-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "RelatedPerson-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RelatedPerson-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "An Identifier of the RelatedPerson", + "code": "identifier", + "base": [ "RelatedPerson" ], + "type": "token", + "expression": "RelatedPerson.identifier", + "xpath": "f:RelatedPerson/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RelatedPerson-name", + "resource": { + "resourceType": "SearchParameter", + "id": "RelatedPerson-name", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RelatedPerson-name", + "version": "4.0.1", + "name": "name", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A server defined search that may match any of the string fields in the HumanName, including family, give, prefix, suffix, suffix, and/or text", + "code": "name", + "base": [ "RelatedPerson" ], + "type": "string", + "expression": "RelatedPerson.name", + "xpath": "f:RelatedPerson/f:name", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RelatedPerson-patient", + "resource": { + "resourceType": "SearchParameter", + "id": "RelatedPerson-patient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RelatedPerson-patient", + "version": "4.0.1", + "name": "patient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The patient this related person is related to", + "code": "patient", + "base": [ "RelatedPerson" ], + "type": "reference", + "expression": "RelatedPerson.patient", + "xpath": "f:RelatedPerson/f:patient", + "xpathUsage": "normal", + "target": [ "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RelatedPerson-relationship", + "resource": { + "resourceType": "SearchParameter", + "id": "RelatedPerson-relationship", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RelatedPerson-relationship", + "version": "4.0.1", + "name": "relationship", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The relationship between the patient and the relatedperson", + "code": "relationship", + "base": [ "RelatedPerson" ], + "type": "token", + "expression": "RelatedPerson.relationship", + "xpath": "f:RelatedPerson/f:relationship", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RequestGroup-author", + "resource": { + "resourceType": "SearchParameter", + "id": "RequestGroup-author", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RequestGroup-author", + "version": "4.0.1", + "name": "author", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The author of the request group", + "code": "author", + "base": [ "RequestGroup" ], + "type": "reference", + "expression": "RequestGroup.author", + "xpath": "f:RequestGroup/f:author", + "xpathUsage": "normal", + "target": [ "Practitioner", "Device", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RequestGroup-authored", + "resource": { + "resourceType": "SearchParameter", + "id": "RequestGroup-authored", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RequestGroup-authored", + "version": "4.0.1", + "name": "authored", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The date the request group was authored", + "code": "authored", + "base": [ "RequestGroup" ], + "type": "date", + "expression": "RequestGroup.authoredOn", + "xpath": "f:RequestGroup/f:authoredOn", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RequestGroup-code", + "resource": { + "resourceType": "SearchParameter", + "id": "RequestGroup-code", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RequestGroup-code", + "version": "4.0.1", + "name": "code", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The code of the request group", + "code": "code", + "base": [ "RequestGroup" ], + "type": "token", + "expression": "RequestGroup.code", + "xpath": "f:RequestGroup/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RequestGroup-encounter", + "resource": { + "resourceType": "SearchParameter", + "id": "RequestGroup-encounter", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RequestGroup-encounter", + "version": "4.0.1", + "name": "encounter", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The encounter the request group applies to", + "code": "encounter", + "base": [ "RequestGroup" ], + "type": "reference", + "expression": "RequestGroup.encounter", + "xpath": "f:RequestGroup/f:encounter", + "xpathUsage": "normal", + "target": [ "Encounter" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RequestGroup-group-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "RequestGroup-group-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RequestGroup-group-identifier", + "version": "4.0.1", + "name": "group-identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The group identifier for the request group", + "code": "group-identifier", + "base": [ "RequestGroup" ], + "type": "token", + "expression": "RequestGroup.groupIdentifier", + "xpath": "f:RequestGroup/f:groupIdentifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RequestGroup-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "RequestGroup-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RequestGroup-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "External identifiers for the request group", + "code": "identifier", + "base": [ "RequestGroup" ], + "type": "token", + "expression": "RequestGroup.identifier", + "xpath": "f:RequestGroup/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RequestGroup-instantiates-canonical", + "resource": { + "resourceType": "SearchParameter", + "id": "RequestGroup-instantiates-canonical", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RequestGroup-instantiates-canonical", + "version": "4.0.1", + "name": "instantiates-canonical", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The FHIR-based definition from which the request group is realized", + "code": "instantiates-canonical", + "base": [ "RequestGroup" ], + "type": "reference", + "expression": "RequestGroup.instantiatesCanonical", + "xpath": "f:RequestGroup/f:instantiatesCanonical", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RequestGroup-instantiates-uri", + "resource": { + "resourceType": "SearchParameter", + "id": "RequestGroup-instantiates-uri", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RequestGroup-instantiates-uri", + "version": "4.0.1", + "name": "instantiates-uri", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The external definition from which the request group is realized", + "code": "instantiates-uri", + "base": [ "RequestGroup" ], + "type": "uri", + "expression": "RequestGroup.instantiatesUri", + "xpath": "f:RequestGroup/f:instantiatesUri", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RequestGroup-intent", + "resource": { + "resourceType": "SearchParameter", + "id": "RequestGroup-intent", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RequestGroup-intent", + "version": "4.0.1", + "name": "intent", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The intent of the request group", + "code": "intent", + "base": [ "RequestGroup" ], + "type": "token", + "expression": "RequestGroup.intent", + "xpath": "f:RequestGroup/f:intent", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RequestGroup-participant", + "resource": { + "resourceType": "SearchParameter", + "id": "RequestGroup-participant", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RequestGroup-participant", + "version": "4.0.1", + "name": "participant", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The participant in the requests in the group", + "code": "participant", + "base": [ "RequestGroup" ], + "type": "reference", + "expression": "RequestGroup.action.participant", + "xpath": "f:RequestGroup/f:action/f:participant", + "xpathUsage": "normal", + "target": [ "Practitioner", "Device", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RequestGroup-patient", + "resource": { + "resourceType": "SearchParameter", + "id": "RequestGroup-patient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RequestGroup-patient", + "version": "4.0.1", + "name": "patient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The identity of a patient to search for request groups", + "code": "patient", + "base": [ "RequestGroup" ], + "type": "reference", + "expression": "RequestGroup.subject.where(resolve() is Patient)", + "xpath": "f:RequestGroup/f:subject", + "xpathUsage": "normal", + "target": [ "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RequestGroup-priority", + "resource": { + "resourceType": "SearchParameter", + "id": "RequestGroup-priority", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RequestGroup-priority", + "version": "4.0.1", + "name": "priority", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The priority of the request group", + "code": "priority", + "base": [ "RequestGroup" ], + "type": "token", + "expression": "RequestGroup.priority", + "xpath": "f:RequestGroup/f:priority", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RequestGroup-status", + "resource": { + "resourceType": "SearchParameter", + "id": "RequestGroup-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RequestGroup-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The status of the request group", + "code": "status", + "base": [ "RequestGroup" ], + "type": "token", + "expression": "RequestGroup.status", + "xpath": "f:RequestGroup/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RequestGroup-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "RequestGroup-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RequestGroup-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The subject that the request group is about", + "code": "subject", + "base": [ "RequestGroup" ], + "type": "reference", + "expression": "RequestGroup.subject", + "xpath": "f:RequestGroup/f:subject", + "xpathUsage": "normal", + "target": [ "Group", "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-composed-of", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchDefinition-composed-of", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-composed-of", + "version": "4.0.1", + "name": "composed-of", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "composed-of", + "base": [ "ResearchDefinition" ], + "type": "reference", + "expression": "ResearchDefinition.relatedArtifact.where(type='composed-of').resource", + "xpath": "f:ResearchDefinition/f:relatedArtifact[f:type/@value='composed-of']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-context", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchDefinition-context", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-context", + "version": "4.0.1", + "name": "context", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A use context assigned to the research definition", + "code": "context", + "base": [ "ResearchDefinition" ], + "type": "token", + "expression": "(ResearchDefinition.useContext.value as CodeableConcept)", + "xpath": "f:ResearchDefinition/f:useContext/f:valueCodeableConcept", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-context-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchDefinition-context-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-context-quantity", + "version": "4.0.1", + "name": "context-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A quantity- or range-valued use context assigned to the research definition", + "code": "context-quantity", + "base": [ "ResearchDefinition" ], + "type": "quantity", + "expression": "(ResearchDefinition.useContext.value as Quantity) | (ResearchDefinition.useContext.value as Range)", + "xpath": "f:ResearchDefinition/f:useContext/f:valueQuantity | f:ResearchDefinition/f:useContext/f:valueRange", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-context-type", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchDefinition-context-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-context-type", + "version": "4.0.1", + "name": "context-type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A type of use context assigned to the research definition", + "code": "context-type", + "base": [ "ResearchDefinition" ], + "type": "token", + "expression": "ResearchDefinition.useContext.code", + "xpath": "f:ResearchDefinition/f:useContext/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-date", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchDefinition-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-date", + "version": "4.0.1", + "name": "date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The research definition publication date", + "code": "date", + "base": [ "ResearchDefinition" ], + "type": "date", + "expression": "ResearchDefinition.date", + "xpath": "f:ResearchDefinition/f:date", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-depends-on", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchDefinition-depends-on", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-depends-on", + "version": "4.0.1", + "name": "depends-on", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "depends-on", + "base": [ "ResearchDefinition" ], + "type": "reference", + "expression": "ResearchDefinition.relatedArtifact.where(type='depends-on').resource | ResearchDefinition.library", + "xpath": "f:ResearchDefinition/f:relatedArtifact[f:type/@value='depends-on']/f:resource | f:ResearchDefinition/f:library", + "xpathUsage": "normal", + "target": [ "Library", "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-derived-from", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchDefinition-derived-from", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-derived-from", + "version": "4.0.1", + "name": "derived-from", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "derived-from", + "base": [ "ResearchDefinition" ], + "type": "reference", + "expression": "ResearchDefinition.relatedArtifact.where(type='derived-from').resource", + "xpath": "f:ResearchDefinition/f:relatedArtifact[f:type/@value='derived-from']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-description", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchDefinition-description", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-description", + "version": "4.0.1", + "name": "description", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The description of the research definition", + "code": "description", + "base": [ "ResearchDefinition" ], + "type": "string", + "expression": "ResearchDefinition.description", + "xpath": "f:ResearchDefinition/f:description", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-effective", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchDefinition-effective", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-effective", + "version": "4.0.1", + "name": "effective", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The time during which the research definition is intended to be in use", + "code": "effective", + "base": [ "ResearchDefinition" ], + "type": "date", + "expression": "ResearchDefinition.effectivePeriod", + "xpath": "f:ResearchDefinition/f:effectivePeriod", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchDefinition-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "External identifier for the research definition", + "code": "identifier", + "base": [ "ResearchDefinition" ], + "type": "token", + "expression": "ResearchDefinition.identifier", + "xpath": "f:ResearchDefinition/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-jurisdiction", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchDefinition-jurisdiction", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-jurisdiction", + "version": "4.0.1", + "name": "jurisdiction", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Intended jurisdiction for the research definition", + "code": "jurisdiction", + "base": [ "ResearchDefinition" ], + "type": "token", + "expression": "ResearchDefinition.jurisdiction", + "xpath": "f:ResearchDefinition/f:jurisdiction", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-name", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchDefinition-name", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-name", + "version": "4.0.1", + "name": "name", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Computationally friendly name of the research definition", + "code": "name", + "base": [ "ResearchDefinition" ], + "type": "string", + "expression": "ResearchDefinition.name", + "xpath": "f:ResearchDefinition/f:name", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-predecessor", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchDefinition-predecessor", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-predecessor", + "version": "4.0.1", + "name": "predecessor", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "predecessor", + "base": [ "ResearchDefinition" ], + "type": "reference", + "expression": "ResearchDefinition.relatedArtifact.where(type='predecessor').resource", + "xpath": "f:ResearchDefinition/f:relatedArtifact[f:type/@value='predecessor']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-publisher", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchDefinition-publisher", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-publisher", + "version": "4.0.1", + "name": "publisher", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Name of the publisher of the research definition", + "code": "publisher", + "base": [ "ResearchDefinition" ], + "type": "string", + "expression": "ResearchDefinition.publisher", + "xpath": "f:ResearchDefinition/f:publisher", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-status", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchDefinition-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The current status of the research definition", + "code": "status", + "base": [ "ResearchDefinition" ], + "type": "token", + "expression": "ResearchDefinition.status", + "xpath": "f:ResearchDefinition/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-successor", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchDefinition-successor", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-successor", + "version": "4.0.1", + "name": "successor", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "successor", + "base": [ "ResearchDefinition" ], + "type": "reference", + "expression": "ResearchDefinition.relatedArtifact.where(type='successor').resource", + "xpath": "f:ResearchDefinition/f:relatedArtifact[f:type/@value='successor']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-title", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchDefinition-title", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-title", + "version": "4.0.1", + "name": "title", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The human-friendly name of the research definition", + "code": "title", + "base": [ "ResearchDefinition" ], + "type": "string", + "expression": "ResearchDefinition.title", + "xpath": "f:ResearchDefinition/f:title", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-topic", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchDefinition-topic", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-topic", + "version": "4.0.1", + "name": "topic", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Topics associated with the ResearchDefinition", + "code": "topic", + "base": [ "ResearchDefinition" ], + "type": "token", + "expression": "ResearchDefinition.topic", + "xpath": "f:ResearchDefinition/f:topic", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-url", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchDefinition-url", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-url", + "version": "4.0.1", + "name": "url", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The uri that identifies the research definition", + "code": "url", + "base": [ "ResearchDefinition" ], + "type": "uri", + "expression": "ResearchDefinition.url", + "xpath": "f:ResearchDefinition/f:url", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-version", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchDefinition-version", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-version", + "version": "4.0.1", + "name": "version", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The business version of the research definition", + "code": "version", + "base": [ "ResearchDefinition" ], + "type": "token", + "expression": "ResearchDefinition.version", + "xpath": "f:ResearchDefinition/f:version", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-context-type-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchDefinition-context-type-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-context-type-quantity", + "version": "4.0.1", + "name": "context-type-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A use context type and quantity- or range-based value assigned to the research definition", + "code": "context-type-quantity", + "base": [ "ResearchDefinition" ], + "type": "composite", + "expression": "ResearchDefinition.useContext", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-context-type", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-context-quantity", + "expression": "value.as(Quantity) | value.as(Range)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-context-type-value", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchDefinition-context-type-value", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-context-type-value", + "version": "4.0.1", + "name": "context-type-value", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A use context type and value assigned to the research definition", + "code": "context-type-value", + "base": [ "ResearchDefinition" ], + "type": "composite", + "expression": "ResearchDefinition.useContext", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-context-type", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/ResearchDefinition-context", + "expression": "value.as(CodeableConcept)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-composed-of", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchElementDefinition-composed-of", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-composed-of", + "version": "4.0.1", + "name": "composed-of", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "composed-of", + "base": [ "ResearchElementDefinition" ], + "type": "reference", + "expression": "ResearchElementDefinition.relatedArtifact.where(type='composed-of').resource", + "xpath": "f:ResearchElementDefinition/f:relatedArtifact[f:type/@value='composed-of']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-context", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchElementDefinition-context", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-context", + "version": "4.0.1", + "name": "context", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A use context assigned to the research element definition", + "code": "context", + "base": [ "ResearchElementDefinition" ], + "type": "token", + "expression": "(ResearchElementDefinition.useContext.value as CodeableConcept)", + "xpath": "f:ResearchElementDefinition/f:useContext/f:valueCodeableConcept", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-context-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchElementDefinition-context-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-context-quantity", + "version": "4.0.1", + "name": "context-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A quantity- or range-valued use context assigned to the research element definition", + "code": "context-quantity", + "base": [ "ResearchElementDefinition" ], + "type": "quantity", + "expression": "(ResearchElementDefinition.useContext.value as Quantity) | (ResearchElementDefinition.useContext.value as Range)", + "xpath": "f:ResearchElementDefinition/f:useContext/f:valueQuantity | f:ResearchElementDefinition/f:useContext/f:valueRange", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-context-type", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchElementDefinition-context-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-context-type", + "version": "4.0.1", + "name": "context-type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A type of use context assigned to the research element definition", + "code": "context-type", + "base": [ "ResearchElementDefinition" ], + "type": "token", + "expression": "ResearchElementDefinition.useContext.code", + "xpath": "f:ResearchElementDefinition/f:useContext/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-date", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchElementDefinition-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-date", + "version": "4.0.1", + "name": "date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The research element definition publication date", + "code": "date", + "base": [ "ResearchElementDefinition" ], + "type": "date", + "expression": "ResearchElementDefinition.date", + "xpath": "f:ResearchElementDefinition/f:date", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-depends-on", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchElementDefinition-depends-on", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-depends-on", + "version": "4.0.1", + "name": "depends-on", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "depends-on", + "base": [ "ResearchElementDefinition" ], + "type": "reference", + "expression": "ResearchElementDefinition.relatedArtifact.where(type='depends-on').resource | ResearchElementDefinition.library", + "xpath": "f:ResearchElementDefinition/f:relatedArtifact[f:type/@value='depends-on']/f:resource | f:ResearchElementDefinition/f:library", + "xpathUsage": "normal", + "target": [ "Library", "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-derived-from", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchElementDefinition-derived-from", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-derived-from", + "version": "4.0.1", + "name": "derived-from", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "derived-from", + "base": [ "ResearchElementDefinition" ], + "type": "reference", + "expression": "ResearchElementDefinition.relatedArtifact.where(type='derived-from').resource", + "xpath": "f:ResearchElementDefinition/f:relatedArtifact[f:type/@value='derived-from']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-description", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchElementDefinition-description", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-description", + "version": "4.0.1", + "name": "description", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The description of the research element definition", + "code": "description", + "base": [ "ResearchElementDefinition" ], + "type": "string", + "expression": "ResearchElementDefinition.description", + "xpath": "f:ResearchElementDefinition/f:description", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-effective", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchElementDefinition-effective", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-effective", + "version": "4.0.1", + "name": "effective", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The time during which the research element definition is intended to be in use", + "code": "effective", + "base": [ "ResearchElementDefinition" ], + "type": "date", + "expression": "ResearchElementDefinition.effectivePeriod", + "xpath": "f:ResearchElementDefinition/f:effectivePeriod", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchElementDefinition-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "External identifier for the research element definition", + "code": "identifier", + "base": [ "ResearchElementDefinition" ], + "type": "token", + "expression": "ResearchElementDefinition.identifier", + "xpath": "f:ResearchElementDefinition/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-jurisdiction", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchElementDefinition-jurisdiction", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-jurisdiction", + "version": "4.0.1", + "name": "jurisdiction", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Intended jurisdiction for the research element definition", + "code": "jurisdiction", + "base": [ "ResearchElementDefinition" ], + "type": "token", + "expression": "ResearchElementDefinition.jurisdiction", + "xpath": "f:ResearchElementDefinition/f:jurisdiction", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-name", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchElementDefinition-name", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-name", + "version": "4.0.1", + "name": "name", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Computationally friendly name of the research element definition", + "code": "name", + "base": [ "ResearchElementDefinition" ], + "type": "string", + "expression": "ResearchElementDefinition.name", + "xpath": "f:ResearchElementDefinition/f:name", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-predecessor", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchElementDefinition-predecessor", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-predecessor", + "version": "4.0.1", + "name": "predecessor", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "predecessor", + "base": [ "ResearchElementDefinition" ], + "type": "reference", + "expression": "ResearchElementDefinition.relatedArtifact.where(type='predecessor').resource", + "xpath": "f:ResearchElementDefinition/f:relatedArtifact[f:type/@value='predecessor']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-publisher", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchElementDefinition-publisher", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-publisher", + "version": "4.0.1", + "name": "publisher", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Name of the publisher of the research element definition", + "code": "publisher", + "base": [ "ResearchElementDefinition" ], + "type": "string", + "expression": "ResearchElementDefinition.publisher", + "xpath": "f:ResearchElementDefinition/f:publisher", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-status", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchElementDefinition-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The current status of the research element definition", + "code": "status", + "base": [ "ResearchElementDefinition" ], + "type": "token", + "expression": "ResearchElementDefinition.status", + "xpath": "f:ResearchElementDefinition/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-successor", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchElementDefinition-successor", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-successor", + "version": "4.0.1", + "name": "successor", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "What resource is being referenced", + "code": "successor", + "base": [ "ResearchElementDefinition" ], + "type": "reference", + "expression": "ResearchElementDefinition.relatedArtifact.where(type='successor').resource", + "xpath": "f:ResearchElementDefinition/f:relatedArtifact[f:type/@value='successor']/f:resource", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-title", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchElementDefinition-title", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-title", + "version": "4.0.1", + "name": "title", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The human-friendly name of the research element definition", + "code": "title", + "base": [ "ResearchElementDefinition" ], + "type": "string", + "expression": "ResearchElementDefinition.title", + "xpath": "f:ResearchElementDefinition/f:title", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-topic", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchElementDefinition-topic", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-topic", + "version": "4.0.1", + "name": "topic", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Topics associated with the ResearchElementDefinition", + "code": "topic", + "base": [ "ResearchElementDefinition" ], + "type": "token", + "expression": "ResearchElementDefinition.topic", + "xpath": "f:ResearchElementDefinition/f:topic", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-url", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchElementDefinition-url", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-url", + "version": "4.0.1", + "name": "url", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The uri that identifies the research element definition", + "code": "url", + "base": [ "ResearchElementDefinition" ], + "type": "uri", + "expression": "ResearchElementDefinition.url", + "xpath": "f:ResearchElementDefinition/f:url", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-version", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchElementDefinition-version", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-version", + "version": "4.0.1", + "name": "version", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The business version of the research element definition", + "code": "version", + "base": [ "ResearchElementDefinition" ], + "type": "token", + "expression": "ResearchElementDefinition.version", + "xpath": "f:ResearchElementDefinition/f:version", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-context-type-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchElementDefinition-context-type-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-context-type-quantity", + "version": "4.0.1", + "name": "context-type-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A use context type and quantity- or range-based value assigned to the research element definition", + "code": "context-type-quantity", + "base": [ "ResearchElementDefinition" ], + "type": "composite", + "expression": "ResearchElementDefinition.useContext", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-context-type", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-context-quantity", + "expression": "value.as(Quantity) | value.as(Range)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-context-type-value", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchElementDefinition-context-type-value", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-context-type-value", + "version": "4.0.1", + "name": "context-type-value", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A use context type and value assigned to the research element definition", + "code": "context-type-value", + "base": [ "ResearchElementDefinition" ], + "type": "composite", + "expression": "ResearchElementDefinition.useContext", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-context-type", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/ResearchElementDefinition-context", + "expression": "value.as(CodeableConcept)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchStudy-category", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchStudy-category", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchStudy-category", + "version": "4.0.1", + "name": "category", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Biomedical Research and Regulation)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/rcrim/index.cfm" + } ] + } ], + "description": "Classifications for the study", + "code": "category", + "base": [ "ResearchStudy" ], + "type": "token", + "expression": "ResearchStudy.category", + "xpath": "f:ResearchStudy/f:category", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchStudy-date", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchStudy-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchStudy-date", + "version": "4.0.1", + "name": "date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Biomedical Research and Regulation)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/rcrim/index.cfm" + } ] + } ], + "description": "When the study began and ended", + "code": "date", + "base": [ "ResearchStudy" ], + "type": "date", + "expression": "ResearchStudy.period", + "xpath": "f:ResearchStudy/f:period", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchStudy-focus", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchStudy-focus", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchStudy-focus", + "version": "4.0.1", + "name": "focus", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Biomedical Research and Regulation)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/rcrim/index.cfm" + } ] + } ], + "description": "Drugs, devices, etc. under study", + "code": "focus", + "base": [ "ResearchStudy" ], + "type": "token", + "expression": "ResearchStudy.focus", + "xpath": "f:ResearchStudy/f:focus", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchStudy-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchStudy-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchStudy-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Biomedical Research and Regulation)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/rcrim/index.cfm" + } ] + } ], + "description": "Business Identifier for study", + "code": "identifier", + "base": [ "ResearchStudy" ], + "type": "token", + "expression": "ResearchStudy.identifier", + "xpath": "f:ResearchStudy/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchStudy-keyword", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchStudy-keyword", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchStudy-keyword", + "version": "4.0.1", + "name": "keyword", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Biomedical Research and Regulation)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/rcrim/index.cfm" + } ] + } ], + "description": "Used to search for the study", + "code": "keyword", + "base": [ "ResearchStudy" ], + "type": "token", + "expression": "ResearchStudy.keyword", + "xpath": "f:ResearchStudy/f:keyword", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchStudy-location", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchStudy-location", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchStudy-location", + "version": "4.0.1", + "name": "location", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Biomedical Research and Regulation)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/rcrim/index.cfm" + } ] + } ], + "description": "Geographic region(s) for study", + "code": "location", + "base": [ "ResearchStudy" ], + "type": "token", + "expression": "ResearchStudy.location", + "xpath": "f:ResearchStudy/f:location", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchStudy-partof", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchStudy-partof", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchStudy-partof", + "version": "4.0.1", + "name": "partof", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Biomedical Research and Regulation)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/rcrim/index.cfm" + } ] + } ], + "description": "Part of larger study", + "code": "partof", + "base": [ "ResearchStudy" ], + "type": "reference", + "expression": "ResearchStudy.partOf", + "xpath": "f:ResearchStudy/f:partOf", + "xpathUsage": "normal", + "target": [ "ResearchStudy" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchStudy-principalinvestigator", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchStudy-principalinvestigator", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchStudy-principalinvestigator", + "version": "4.0.1", + "name": "principalinvestigator", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Biomedical Research and Regulation)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/rcrim/index.cfm" + } ] + } ], + "description": "Researcher who oversees multiple aspects of the study", + "code": "principalinvestigator", + "base": [ "ResearchStudy" ], + "type": "reference", + "expression": "ResearchStudy.principalInvestigator", + "xpath": "f:ResearchStudy/f:principalInvestigator", + "xpathUsage": "normal", + "target": [ "Practitioner", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchStudy-protocol", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchStudy-protocol", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchStudy-protocol", + "version": "4.0.1", + "name": "protocol", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Biomedical Research and Regulation)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/rcrim/index.cfm" + } ] + } ], + "description": "Steps followed in executing study", + "code": "protocol", + "base": [ "ResearchStudy" ], + "type": "reference", + "expression": "ResearchStudy.protocol", + "xpath": "f:ResearchStudy/f:protocol", + "xpathUsage": "normal", + "target": [ "PlanDefinition" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchStudy-site", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchStudy-site", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchStudy-site", + "version": "4.0.1", + "name": "site", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Biomedical Research and Regulation)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/rcrim/index.cfm" + } ] + } ], + "description": "Facility where study activities are conducted", + "code": "site", + "base": [ "ResearchStudy" ], + "type": "reference", + "expression": "ResearchStudy.site", + "xpath": "f:ResearchStudy/f:site", + "xpathUsage": "normal", + "target": [ "Location" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchStudy-sponsor", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchStudy-sponsor", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchStudy-sponsor", + "version": "4.0.1", + "name": "sponsor", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Biomedical Research and Regulation)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/rcrim/index.cfm" + } ] + } ], + "description": "Organization that initiates and is legally responsible for the study", + "code": "sponsor", + "base": [ "ResearchStudy" ], + "type": "reference", + "expression": "ResearchStudy.sponsor", + "xpath": "f:ResearchStudy/f:sponsor", + "xpathUsage": "normal", + "target": [ "Organization" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchStudy-status", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchStudy-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchStudy-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Biomedical Research and Regulation)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/rcrim/index.cfm" + } ] + } ], + "description": "active | administratively-completed | approved | closed-to-accrual | closed-to-accrual-and-intervention | completed | disapproved | in-review | temporarily-closed-to-accrual | temporarily-closed-to-accrual-and-intervention | withdrawn", + "code": "status", + "base": [ "ResearchStudy" ], + "type": "token", + "expression": "ResearchStudy.status", + "xpath": "f:ResearchStudy/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchStudy-title", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchStudy-title", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchStudy-title", + "version": "4.0.1", + "name": "title", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Biomedical Research and Regulation)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/rcrim/index.cfm" + } ] + } ], + "description": "Name for this study", + "code": "title", + "base": [ "ResearchStudy" ], + "type": "string", + "expression": "ResearchStudy.title", + "xpath": "f:ResearchStudy/f:title", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchSubject-date", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchSubject-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchSubject-date", + "version": "4.0.1", + "name": "date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Biomedical Research and Regulation)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/rcrim/index.cfm" + } ] + } ], + "description": "Start and end of participation", + "code": "date", + "base": [ "ResearchSubject" ], + "type": "date", + "expression": "ResearchSubject.period", + "xpath": "f:ResearchSubject/f:period", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchSubject-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchSubject-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchSubject-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Biomedical Research and Regulation)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/rcrim/index.cfm" + } ] + } ], + "description": "Business Identifier for research subject in a study", + "code": "identifier", + "base": [ "ResearchSubject" ], + "type": "token", + "expression": "ResearchSubject.identifier", + "xpath": "f:ResearchSubject/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchSubject-individual", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchSubject-individual", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchSubject-individual", + "version": "4.0.1", + "name": "individual", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Biomedical Research and Regulation)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/rcrim/index.cfm" + } ] + } ], + "description": "Who is part of study", + "code": "individual", + "base": [ "ResearchSubject" ], + "type": "reference", + "expression": "ResearchSubject.individual", + "xpath": "f:ResearchSubject/f:individual", + "xpathUsage": "normal", + "target": [ "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchSubject-patient", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchSubject-patient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchSubject-patient", + "version": "4.0.1", + "name": "patient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Biomedical Research and Regulation)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/rcrim/index.cfm" + } ] + } ], + "description": "Who is part of study", + "code": "patient", + "base": [ "ResearchSubject" ], + "type": "reference", + "expression": "ResearchSubject.individual", + "xpath": "f:ResearchSubject/f:individual", + "xpathUsage": "normal", + "target": [ "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchSubject-status", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchSubject-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchSubject-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Biomedical Research and Regulation)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/rcrim/index.cfm" + } ] + } ], + "description": "candidate | eligible | follow-up | ineligible | not-registered | off-study | on-study | on-study-intervention | on-study-observation | pending-on-study | potential-candidate | screening | withdrawn", + "code": "status", + "base": [ "ResearchSubject" ], + "type": "token", + "expression": "ResearchSubject.status", + "xpath": "f:ResearchSubject/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ResearchSubject-study", + "resource": { + "resourceType": "SearchParameter", + "id": "ResearchSubject-study", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ResearchSubject-study", + "version": "4.0.1", + "name": "study", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Biomedical Research and Regulation)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/rcrim/index.cfm" + } ] + } ], + "description": "Study subject is part of", + "code": "study", + "base": [ "ResearchSubject" ], + "type": "reference", + "expression": "ResearchSubject.study", + "xpath": "f:ResearchSubject/f:study", + "xpathUsage": "normal", + "target": [ "ResearchStudy" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RiskAssessment-condition", + "resource": { + "resourceType": "SearchParameter", + "id": "RiskAssessment-condition", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RiskAssessment-condition", + "version": "4.0.1", + "name": "condition", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Condition assessed", + "code": "condition", + "base": [ "RiskAssessment" ], + "type": "reference", + "expression": "RiskAssessment.condition", + "xpath": "f:RiskAssessment/f:condition", + "xpathUsage": "normal", + "target": [ "Condition" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RiskAssessment-method", + "resource": { + "resourceType": "SearchParameter", + "id": "RiskAssessment-method", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RiskAssessment-method", + "version": "4.0.1", + "name": "method", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Evaluation mechanism", + "code": "method", + "base": [ "RiskAssessment" ], + "type": "token", + "expression": "RiskAssessment.method", + "xpath": "f:RiskAssessment/f:method", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RiskAssessment-performer", + "resource": { + "resourceType": "SearchParameter", + "id": "RiskAssessment-performer", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RiskAssessment-performer", + "version": "4.0.1", + "name": "performer", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Who did assessment?", + "code": "performer", + "base": [ "RiskAssessment" ], + "type": "reference", + "expression": "RiskAssessment.performer", + "xpath": "f:RiskAssessment/f:performer", + "xpathUsage": "normal", + "target": [ "Practitioner", "Device", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RiskAssessment-probability", + "resource": { + "resourceType": "SearchParameter", + "id": "RiskAssessment-probability", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RiskAssessment-probability", + "version": "4.0.1", + "name": "probability", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Likelihood of specified outcome", + "code": "probability", + "base": [ "RiskAssessment" ], + "type": "number", + "expression": "RiskAssessment.prediction.probability", + "xpath": "f:RiskAssessment/f:prediction/f:probabilityDecimal | f:RiskAssessment/f:prediction/f:probabilityRange", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RiskAssessment-risk", + "resource": { + "resourceType": "SearchParameter", + "id": "RiskAssessment-risk", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RiskAssessment-risk", + "version": "4.0.1", + "name": "risk", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Likelihood of specified outcome as a qualitative value", + "code": "risk", + "base": [ "RiskAssessment" ], + "type": "token", + "expression": "RiskAssessment.prediction.qualitativeRisk", + "xpath": "f:RiskAssessment/f:prediction/f:qualitativeRisk", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RiskAssessment-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "RiskAssessment-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RiskAssessment-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Who/what does assessment apply to?", + "code": "subject", + "base": [ "RiskAssessment" ], + "type": "reference", + "expression": "RiskAssessment.subject", + "xpath": "f:RiskAssessment/f:subject", + "xpathUsage": "normal", + "target": [ "Group", "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RiskEvidenceSynthesis-context", + "resource": { + "resourceType": "SearchParameter", + "id": "RiskEvidenceSynthesis-context", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RiskEvidenceSynthesis-context", + "version": "4.0.1", + "name": "context", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A use context assigned to the risk evidence synthesis", + "code": "context", + "base": [ "RiskEvidenceSynthesis" ], + "type": "token", + "expression": "(RiskEvidenceSynthesis.useContext.value as CodeableConcept)", + "xpath": "f:RiskEvidenceSynthesis/f:useContext/f:valueCodeableConcept", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RiskEvidenceSynthesis-context-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "RiskEvidenceSynthesis-context-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RiskEvidenceSynthesis-context-quantity", + "version": "4.0.1", + "name": "context-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A quantity- or range-valued use context assigned to the risk evidence synthesis", + "code": "context-quantity", + "base": [ "RiskEvidenceSynthesis" ], + "type": "quantity", + "expression": "(RiskEvidenceSynthesis.useContext.value as Quantity) | (RiskEvidenceSynthesis.useContext.value as Range)", + "xpath": "f:RiskEvidenceSynthesis/f:useContext/f:valueQuantity | f:RiskEvidenceSynthesis/f:useContext/f:valueRange", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RiskEvidenceSynthesis-context-type", + "resource": { + "resourceType": "SearchParameter", + "id": "RiskEvidenceSynthesis-context-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RiskEvidenceSynthesis-context-type", + "version": "4.0.1", + "name": "context-type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A type of use context assigned to the risk evidence synthesis", + "code": "context-type", + "base": [ "RiskEvidenceSynthesis" ], + "type": "token", + "expression": "RiskEvidenceSynthesis.useContext.code", + "xpath": "f:RiskEvidenceSynthesis/f:useContext/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RiskEvidenceSynthesis-date", + "resource": { + "resourceType": "SearchParameter", + "id": "RiskEvidenceSynthesis-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RiskEvidenceSynthesis-date", + "version": "4.0.1", + "name": "date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The risk evidence synthesis publication date", + "code": "date", + "base": [ "RiskEvidenceSynthesis" ], + "type": "date", + "expression": "RiskEvidenceSynthesis.date", + "xpath": "f:RiskEvidenceSynthesis/f:date", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RiskEvidenceSynthesis-description", + "resource": { + "resourceType": "SearchParameter", + "id": "RiskEvidenceSynthesis-description", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RiskEvidenceSynthesis-description", + "version": "4.0.1", + "name": "description", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The description of the risk evidence synthesis", + "code": "description", + "base": [ "RiskEvidenceSynthesis" ], + "type": "string", + "expression": "RiskEvidenceSynthesis.description", + "xpath": "f:RiskEvidenceSynthesis/f:description", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RiskEvidenceSynthesis-effective", + "resource": { + "resourceType": "SearchParameter", + "id": "RiskEvidenceSynthesis-effective", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RiskEvidenceSynthesis-effective", + "version": "4.0.1", + "name": "effective", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The time during which the risk evidence synthesis is intended to be in use", + "code": "effective", + "base": [ "RiskEvidenceSynthesis" ], + "type": "date", + "expression": "RiskEvidenceSynthesis.effectivePeriod", + "xpath": "f:RiskEvidenceSynthesis/f:effectivePeriod", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RiskEvidenceSynthesis-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "RiskEvidenceSynthesis-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RiskEvidenceSynthesis-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "External identifier for the risk evidence synthesis", + "code": "identifier", + "base": [ "RiskEvidenceSynthesis" ], + "type": "token", + "expression": "RiskEvidenceSynthesis.identifier", + "xpath": "f:RiskEvidenceSynthesis/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RiskEvidenceSynthesis-jurisdiction", + "resource": { + "resourceType": "SearchParameter", + "id": "RiskEvidenceSynthesis-jurisdiction", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RiskEvidenceSynthesis-jurisdiction", + "version": "4.0.1", + "name": "jurisdiction", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Intended jurisdiction for the risk evidence synthesis", + "code": "jurisdiction", + "base": [ "RiskEvidenceSynthesis" ], + "type": "token", + "expression": "RiskEvidenceSynthesis.jurisdiction", + "xpath": "f:RiskEvidenceSynthesis/f:jurisdiction", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RiskEvidenceSynthesis-name", + "resource": { + "resourceType": "SearchParameter", + "id": "RiskEvidenceSynthesis-name", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RiskEvidenceSynthesis-name", + "version": "4.0.1", + "name": "name", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Computationally friendly name of the risk evidence synthesis", + "code": "name", + "base": [ "RiskEvidenceSynthesis" ], + "type": "string", + "expression": "RiskEvidenceSynthesis.name", + "xpath": "f:RiskEvidenceSynthesis/f:name", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RiskEvidenceSynthesis-publisher", + "resource": { + "resourceType": "SearchParameter", + "id": "RiskEvidenceSynthesis-publisher", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RiskEvidenceSynthesis-publisher", + "version": "4.0.1", + "name": "publisher", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "Name of the publisher of the risk evidence synthesis", + "code": "publisher", + "base": [ "RiskEvidenceSynthesis" ], + "type": "string", + "expression": "RiskEvidenceSynthesis.publisher", + "xpath": "f:RiskEvidenceSynthesis/f:publisher", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RiskEvidenceSynthesis-status", + "resource": { + "resourceType": "SearchParameter", + "id": "RiskEvidenceSynthesis-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RiskEvidenceSynthesis-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The current status of the risk evidence synthesis", + "code": "status", + "base": [ "RiskEvidenceSynthesis" ], + "type": "token", + "expression": "RiskEvidenceSynthesis.status", + "xpath": "f:RiskEvidenceSynthesis/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RiskEvidenceSynthesis-title", + "resource": { + "resourceType": "SearchParameter", + "id": "RiskEvidenceSynthesis-title", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RiskEvidenceSynthesis-title", + "version": "4.0.1", + "name": "title", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The human-friendly name of the risk evidence synthesis", + "code": "title", + "base": [ "RiskEvidenceSynthesis" ], + "type": "string", + "expression": "RiskEvidenceSynthesis.title", + "xpath": "f:RiskEvidenceSynthesis/f:title", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RiskEvidenceSynthesis-url", + "resource": { + "resourceType": "SearchParameter", + "id": "RiskEvidenceSynthesis-url", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RiskEvidenceSynthesis-url", + "version": "4.0.1", + "name": "url", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The uri that identifies the risk evidence synthesis", + "code": "url", + "base": [ "RiskEvidenceSynthesis" ], + "type": "uri", + "expression": "RiskEvidenceSynthesis.url", + "xpath": "f:RiskEvidenceSynthesis/f:url", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RiskEvidenceSynthesis-version", + "resource": { + "resourceType": "SearchParameter", + "id": "RiskEvidenceSynthesis-version", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RiskEvidenceSynthesis-version", + "version": "4.0.1", + "name": "version", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "The business version of the risk evidence synthesis", + "code": "version", + "base": [ "RiskEvidenceSynthesis" ], + "type": "token", + "expression": "RiskEvidenceSynthesis.version", + "xpath": "f:RiskEvidenceSynthesis/f:version", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RiskEvidenceSynthesis-context-type-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "RiskEvidenceSynthesis-context-type-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RiskEvidenceSynthesis-context-type-quantity", + "version": "4.0.1", + "name": "context-type-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A use context type and quantity- or range-based value assigned to the risk evidence synthesis", + "code": "context-type-quantity", + "base": [ "RiskEvidenceSynthesis" ], + "type": "composite", + "expression": "RiskEvidenceSynthesis.useContext", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/RiskEvidenceSynthesis-context-type", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/RiskEvidenceSynthesis-context-quantity", + "expression": "value.as(Quantity) | value.as(Range)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/RiskEvidenceSynthesis-context-type-value", + "resource": { + "resourceType": "SearchParameter", + "id": "RiskEvidenceSynthesis-context-type-value", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/RiskEvidenceSynthesis-context-type-value", + "version": "4.0.1", + "name": "context-type-value", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Clinical Decision Support)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/dss/index.cfm" + } ] + } ], + "description": "A use context type and value assigned to the risk evidence synthesis", + "code": "context-type-value", + "base": [ "RiskEvidenceSynthesis" ], + "type": "composite", + "expression": "RiskEvidenceSynthesis.useContext", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/RiskEvidenceSynthesis-context-type", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/RiskEvidenceSynthesis-context", + "expression": "value.as(CodeableConcept)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Schedule-active", + "resource": { + "resourceType": "SearchParameter", + "id": "Schedule-active", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Schedule-active", + "version": "4.0.1", + "name": "active", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Is the schedule in active use", + "code": "active", + "base": [ "Schedule" ], + "type": "token", + "expression": "Schedule.active", + "xpath": "f:Schedule/f:active", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Schedule-actor", + "resource": { + "resourceType": "SearchParameter", + "id": "Schedule-actor", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Schedule-actor", + "version": "4.0.1", + "name": "actor", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The individual(HealthcareService, Practitioner, Location, ...) to find a Schedule for", + "code": "actor", + "base": [ "Schedule" ], + "type": "reference", + "expression": "Schedule.actor", + "xpath": "f:Schedule/f:actor", + "xpathUsage": "normal", + "target": [ "Practitioner", "Device", "Patient", "HealthcareService", "PractitionerRole", "RelatedPerson", "Location" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Schedule-date", + "resource": { + "resourceType": "SearchParameter", + "id": "Schedule-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Schedule-date", + "version": "4.0.1", + "name": "date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Search for Schedule resources that have a period that contains this date specified", + "code": "date", + "base": [ "Schedule" ], + "type": "date", + "expression": "Schedule.planningHorizon", + "xpath": "f:Schedule/f:planningHorizon", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Schedule-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "Schedule-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Schedule-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A Schedule Identifier", + "code": "identifier", + "base": [ "Schedule" ], + "type": "token", + "expression": "Schedule.identifier", + "xpath": "f:Schedule/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Schedule-service-category", + "resource": { + "resourceType": "SearchParameter", + "id": "Schedule-service-category", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Schedule-service-category", + "version": "4.0.1", + "name": "service-category", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "High-level category", + "code": "service-category", + "base": [ "Schedule" ], + "type": "token", + "expression": "Schedule.serviceCategory", + "xpath": "f:Schedule/f:serviceCategory", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Schedule-service-type", + "resource": { + "resourceType": "SearchParameter", + "id": "Schedule-service-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Schedule-service-type", + "version": "4.0.1", + "name": "service-type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The type of appointments that can be booked into associated slot(s)", + "code": "service-type", + "base": [ "Schedule" ], + "type": "token", + "expression": "Schedule.serviceType", + "xpath": "f:Schedule/f:serviceType", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Schedule-specialty", + "resource": { + "resourceType": "SearchParameter", + "id": "Schedule-specialty", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Schedule-specialty", + "version": "4.0.1", + "name": "specialty", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Type of specialty needed", + "code": "specialty", + "base": [ "Schedule" ], + "type": "token", + "expression": "Schedule.specialty", + "xpath": "f:Schedule/f:specialty", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/SearchParameter-base", + "resource": { + "resourceType": "SearchParameter", + "id": "SearchParameter-base", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/SearchParameter-base", + "version": "4.0.1", + "name": "base", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The resource type(s) this search parameter applies to", + "code": "base", + "base": [ "SearchParameter" ], + "type": "token", + "expression": "SearchParameter.base", + "xpath": "f:SearchParameter/f:base", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/SearchParameter-code", + "resource": { + "resourceType": "SearchParameter", + "id": "SearchParameter-code", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/SearchParameter-code", + "version": "4.0.1", + "name": "code", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Code used in URL", + "code": "code", + "base": [ "SearchParameter" ], + "type": "token", + "expression": "SearchParameter.code", + "xpath": "f:SearchParameter/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/SearchParameter-component", + "resource": { + "resourceType": "SearchParameter", + "id": "SearchParameter-component", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/SearchParameter-component", + "version": "4.0.1", + "name": "component", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Defines how the part works", + "code": "component", + "base": [ "SearchParameter" ], + "type": "reference", + "expression": "SearchParameter.component.definition", + "xpath": "f:SearchParameter/f:component/f:definition", + "xpathUsage": "normal", + "target": [ "SearchParameter" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/SearchParameter-derived-from", + "resource": { + "resourceType": "SearchParameter", + "id": "SearchParameter-derived-from", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/SearchParameter-derived-from", + "version": "4.0.1", + "name": "derived-from", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Original definition for the search parameter", + "code": "derived-from", + "base": [ "SearchParameter" ], + "type": "reference", + "expression": "SearchParameter.derivedFrom", + "xpath": "f:SearchParameter/f:derivedFrom", + "xpathUsage": "normal", + "target": [ "SearchParameter" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/SearchParameter-target", + "resource": { + "resourceType": "SearchParameter", + "id": "SearchParameter-target", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/SearchParameter-target", + "version": "4.0.1", + "name": "target", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Types of resource (if a resource reference)", + "code": "target", + "base": [ "SearchParameter" ], + "type": "token", + "expression": "SearchParameter.target", + "xpath": "f:SearchParameter/f:target", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/SearchParameter-type", + "resource": { + "resourceType": "SearchParameter", + "id": "SearchParameter-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/SearchParameter-type", + "version": "4.0.1", + "name": "type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "number | date | string | token | reference | composite | quantity | uri | special", + "code": "type", + "base": [ "SearchParameter" ], + "type": "token", + "expression": "SearchParameter.type", + "xpath": "f:SearchParameter/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ServiceRequest-authored", + "resource": { + "resourceType": "SearchParameter", + "id": "ServiceRequest-authored", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ServiceRequest-authored", + "version": "4.0.1", + "name": "authored", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Date request signed", + "code": "authored", + "base": [ "ServiceRequest" ], + "type": "date", + "expression": "ServiceRequest.authoredOn", + "xpath": "f:ServiceRequest/f:authoredOn", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ServiceRequest-based-on", + "resource": { + "resourceType": "SearchParameter", + "id": "ServiceRequest-based-on", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ServiceRequest-based-on", + "version": "4.0.1", + "name": "based-on", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "What request fulfills", + "code": "based-on", + "base": [ "ServiceRequest" ], + "type": "reference", + "expression": "ServiceRequest.basedOn", + "xpath": "f:ServiceRequest/f:basedOn", + "xpathUsage": "normal", + "target": [ "CarePlan", "MedicationRequest", "ServiceRequest" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ServiceRequest-body-site", + "resource": { + "resourceType": "SearchParameter", + "id": "ServiceRequest-body-site", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ServiceRequest-body-site", + "version": "4.0.1", + "name": "body-site", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Where procedure is going to be done", + "code": "body-site", + "base": [ "ServiceRequest" ], + "type": "token", + "expression": "ServiceRequest.bodySite", + "xpath": "f:ServiceRequest/f:bodySite", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ServiceRequest-category", + "resource": { + "resourceType": "SearchParameter", + "id": "ServiceRequest-category", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ServiceRequest-category", + "version": "4.0.1", + "name": "category", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Classification of service", + "code": "category", + "base": [ "ServiceRequest" ], + "type": "token", + "expression": "ServiceRequest.category", + "xpath": "f:ServiceRequest/f:category", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ServiceRequest-instantiates-canonical", + "resource": { + "resourceType": "SearchParameter", + "id": "ServiceRequest-instantiates-canonical", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ServiceRequest-instantiates-canonical", + "version": "4.0.1", + "name": "instantiates-canonical", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Instantiates FHIR protocol or definition", + "code": "instantiates-canonical", + "base": [ "ServiceRequest" ], + "type": "reference", + "expression": "ServiceRequest.instantiatesCanonical", + "xpath": "f:ServiceRequest/f:instantiatesCanonical", + "xpathUsage": "normal", + "target": [ "PlanDefinition", "ActivityDefinition" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ServiceRequest-instantiates-uri", + "resource": { + "resourceType": "SearchParameter", + "id": "ServiceRequest-instantiates-uri", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ServiceRequest-instantiates-uri", + "version": "4.0.1", + "name": "instantiates-uri", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Instantiates external protocol or definition", + "code": "instantiates-uri", + "base": [ "ServiceRequest" ], + "type": "uri", + "expression": "ServiceRequest.instantiatesUri", + "xpath": "f:ServiceRequest/f:instantiatesUri", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ServiceRequest-intent", + "resource": { + "resourceType": "SearchParameter", + "id": "ServiceRequest-intent", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ServiceRequest-intent", + "version": "4.0.1", + "name": "intent", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "proposal | plan | directive | order | original-order | reflex-order | filler-order | instance-order | option", + "code": "intent", + "base": [ "ServiceRequest" ], + "type": "token", + "expression": "ServiceRequest.intent", + "xpath": "f:ServiceRequest/f:intent", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ServiceRequest-occurrence", + "resource": { + "resourceType": "SearchParameter", + "id": "ServiceRequest-occurrence", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ServiceRequest-occurrence", + "version": "4.0.1", + "name": "occurrence", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "When service should occur", + "code": "occurrence", + "base": [ "ServiceRequest" ], + "type": "date", + "expression": "ServiceRequest.occurrence", + "xpath": "f:ServiceRequest/f:occurrenceDateTime | f:ServiceRequest/f:occurrencePeriod | f:ServiceRequest/f:occurrenceTiming", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ServiceRequest-performer", + "resource": { + "resourceType": "SearchParameter", + "id": "ServiceRequest-performer", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ServiceRequest-performer", + "version": "4.0.1", + "name": "performer", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Requested performer", + "code": "performer", + "base": [ "ServiceRequest" ], + "type": "reference", + "expression": "ServiceRequest.performer", + "xpath": "f:ServiceRequest/f:performer", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "CareTeam", "Device", "Patient", "HealthcareService", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ServiceRequest-performer-type", + "resource": { + "resourceType": "SearchParameter", + "id": "ServiceRequest-performer-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ServiceRequest-performer-type", + "version": "4.0.1", + "name": "performer-type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Performer role", + "code": "performer-type", + "base": [ "ServiceRequest" ], + "type": "token", + "expression": "ServiceRequest.performerType", + "xpath": "f:ServiceRequest/f:performerType", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ServiceRequest-priority", + "resource": { + "resourceType": "SearchParameter", + "id": "ServiceRequest-priority", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ServiceRequest-priority", + "version": "4.0.1", + "name": "priority", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "routine | urgent | asap | stat", + "code": "priority", + "base": [ "ServiceRequest" ], + "type": "token", + "expression": "ServiceRequest.priority", + "xpath": "f:ServiceRequest/f:priority", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ServiceRequest-replaces", + "resource": { + "resourceType": "SearchParameter", + "id": "ServiceRequest-replaces", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ServiceRequest-replaces", + "version": "4.0.1", + "name": "replaces", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "What request replaces", + "code": "replaces", + "base": [ "ServiceRequest" ], + "type": "reference", + "expression": "ServiceRequest.replaces", + "xpath": "f:ServiceRequest/f:replaces", + "xpathUsage": "normal", + "target": [ "ServiceRequest" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ServiceRequest-requester", + "resource": { + "resourceType": "SearchParameter", + "id": "ServiceRequest-requester", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ServiceRequest-requester", + "version": "4.0.1", + "name": "requester", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Who/what is requesting service", + "code": "requester", + "base": [ "ServiceRequest" ], + "type": "reference", + "expression": "ServiceRequest.requester", + "xpath": "f:ServiceRequest/f:requester", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "Device", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ServiceRequest-requisition", + "resource": { + "resourceType": "SearchParameter", + "id": "ServiceRequest-requisition", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ServiceRequest-requisition", + "version": "4.0.1", + "name": "requisition", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Composite Request ID", + "code": "requisition", + "base": [ "ServiceRequest" ], + "type": "token", + "expression": "ServiceRequest.requisition", + "xpath": "f:ServiceRequest/f:requisition", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ServiceRequest-specimen", + "resource": { + "resourceType": "SearchParameter", + "id": "ServiceRequest-specimen", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ServiceRequest-specimen", + "version": "4.0.1", + "name": "specimen", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Specimen to be tested", + "code": "specimen", + "base": [ "ServiceRequest" ], + "type": "reference", + "expression": "ServiceRequest.specimen", + "xpath": "f:ServiceRequest/f:specimen", + "xpathUsage": "normal", + "target": [ "Specimen" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ServiceRequest-status", + "resource": { + "resourceType": "SearchParameter", + "id": "ServiceRequest-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ServiceRequest-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "draft | active | on-hold | revoked | completed | entered-in-error | unknown", + "code": "status", + "base": [ "ServiceRequest" ], + "type": "token", + "expression": "ServiceRequest.status", + "xpath": "f:ServiceRequest/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ServiceRequest-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "ServiceRequest-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ServiceRequest-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Search by subject", + "code": "subject", + "base": [ "ServiceRequest" ], + "type": "reference", + "expression": "ServiceRequest.subject", + "xpath": "f:ServiceRequest/f:subject", + "xpathUsage": "normal", + "target": [ "Group", "Device", "Patient", "Location" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Slot-appointment-type", + "resource": { + "resourceType": "SearchParameter", + "id": "Slot-appointment-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Slot-appointment-type", + "version": "4.0.1", + "name": "appointment-type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The style of appointment or patient that may be booked in the slot (not service type)", + "code": "appointment-type", + "base": [ "Slot" ], + "type": "token", + "expression": "Slot.appointmentType", + "xpath": "f:Slot/f:appointmentType", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Slot-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "Slot-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Slot-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A Slot Identifier", + "code": "identifier", + "base": [ "Slot" ], + "type": "token", + "expression": "Slot.identifier", + "xpath": "f:Slot/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Slot-schedule", + "resource": { + "resourceType": "SearchParameter", + "id": "Slot-schedule", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Slot-schedule", + "version": "4.0.1", + "name": "schedule", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The Schedule Resource that we are seeking a slot within", + "code": "schedule", + "base": [ "Slot" ], + "type": "reference", + "expression": "Slot.schedule", + "xpath": "f:Slot/f:schedule", + "xpathUsage": "normal", + "target": [ "Schedule" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Slot-service-category", + "resource": { + "resourceType": "SearchParameter", + "id": "Slot-service-category", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Slot-service-category", + "version": "4.0.1", + "name": "service-category", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A broad categorization of the service that is to be performed during this appointment", + "code": "service-category", + "base": [ "Slot" ], + "type": "token", + "expression": "Slot.serviceCategory", + "xpath": "f:Slot/f:serviceCategory", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Slot-service-type", + "resource": { + "resourceType": "SearchParameter", + "id": "Slot-service-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Slot-service-type", + "version": "4.0.1", + "name": "service-type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The type of appointments that can be booked into the slot", + "code": "service-type", + "base": [ "Slot" ], + "type": "token", + "expression": "Slot.serviceType", + "xpath": "f:Slot/f:serviceType", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Slot-specialty", + "resource": { + "resourceType": "SearchParameter", + "id": "Slot-specialty", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Slot-specialty", + "version": "4.0.1", + "name": "specialty", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The specialty of a practitioner that would be required to perform the service requested in this appointment", + "code": "specialty", + "base": [ "Slot" ], + "type": "token", + "expression": "Slot.specialty", + "xpath": "f:Slot/f:specialty", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Slot-start", + "resource": { + "resourceType": "SearchParameter", + "id": "Slot-start", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Slot-start", + "version": "4.0.1", + "name": "start", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "Appointment date/time.", + "code": "start", + "base": [ "Slot" ], + "type": "date", + "expression": "Slot.start", + "xpath": "f:Slot/f:start", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Slot-status", + "resource": { + "resourceType": "SearchParameter", + "id": "Slot-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Slot-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "The free/busy status of the appointment", + "code": "status", + "base": [ "Slot" ], + "type": "token", + "expression": "Slot.status", + "xpath": "f:Slot/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Specimen-accession", + "resource": { + "resourceType": "SearchParameter", + "id": "Specimen-accession", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Specimen-accession", + "version": "4.0.1", + "name": "accession", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The accession number associated with the specimen", + "code": "accession", + "base": [ "Specimen" ], + "type": "token", + "expression": "Specimen.accessionIdentifier", + "xpath": "f:Specimen/f:accessionIdentifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Specimen-bodysite", + "resource": { + "resourceType": "SearchParameter", + "id": "Specimen-bodysite", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Specimen-bodysite", + "version": "4.0.1", + "name": "bodysite", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The code for the body site from where the specimen originated", + "code": "bodysite", + "base": [ "Specimen" ], + "type": "token", + "expression": "Specimen.collection.bodySite", + "xpath": "f:Specimen/f:collection/f:bodySite", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Specimen-collected", + "resource": { + "resourceType": "SearchParameter", + "id": "Specimen-collected", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Specimen-collected", + "version": "4.0.1", + "name": "collected", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The date the specimen was collected", + "code": "collected", + "base": [ "Specimen" ], + "type": "date", + "expression": "Specimen.collection.collected", + "xpath": "f:Specimen/f:collection/f:collectedDateTime | f:Specimen/f:collection/f:collectedPeriod", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Specimen-collector", + "resource": { + "resourceType": "SearchParameter", + "id": "Specimen-collector", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Specimen-collector", + "version": "4.0.1", + "name": "collector", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Who collected the specimen", + "code": "collector", + "base": [ "Specimen" ], + "type": "reference", + "expression": "Specimen.collection.collector", + "xpath": "f:Specimen/f:collection/f:collector", + "xpathUsage": "normal", + "target": [ "Practitioner", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Specimen-container", + "resource": { + "resourceType": "SearchParameter", + "id": "Specimen-container", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Specimen-container", + "version": "4.0.1", + "name": "container", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The kind of specimen container", + "code": "container", + "base": [ "Specimen" ], + "type": "token", + "expression": "Specimen.container.type", + "xpath": "f:Specimen/f:container/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Specimen-container-id", + "resource": { + "resourceType": "SearchParameter", + "id": "Specimen-container-id", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Specimen-container-id", + "version": "4.0.1", + "name": "container-id", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The unique identifier associated with the specimen container", + "code": "container-id", + "base": [ "Specimen" ], + "type": "token", + "expression": "Specimen.container.identifier", + "xpath": "f:Specimen/f:container/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Specimen-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "Specimen-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Specimen-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The unique identifier associated with the specimen", + "code": "identifier", + "base": [ "Specimen" ], + "type": "token", + "expression": "Specimen.identifier", + "xpath": "f:Specimen/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Specimen-parent", + "resource": { + "resourceType": "SearchParameter", + "id": "Specimen-parent", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Specimen-parent", + "version": "4.0.1", + "name": "parent", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The parent of the specimen", + "code": "parent", + "base": [ "Specimen" ], + "type": "reference", + "expression": "Specimen.parent", + "xpath": "f:Specimen/f:parent", + "xpathUsage": "normal", + "target": [ "Specimen" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Specimen-patient", + "resource": { + "resourceType": "SearchParameter", + "id": "Specimen-patient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Specimen-patient", + "version": "4.0.1", + "name": "patient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The patient the specimen comes from", + "code": "patient", + "base": [ "Specimen" ], + "type": "reference", + "expression": "Specimen.subject.where(resolve() is Patient)", + "xpath": "f:Specimen/f:subject", + "xpathUsage": "normal", + "target": [ "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Specimen-status", + "resource": { + "resourceType": "SearchParameter", + "id": "Specimen-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Specimen-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "available | unavailable | unsatisfactory | entered-in-error", + "code": "status", + "base": [ "Specimen" ], + "type": "token", + "expression": "Specimen.status", + "xpath": "f:Specimen/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Specimen-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "Specimen-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Specimen-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The subject of the specimen", + "code": "subject", + "base": [ "Specimen" ], + "type": "reference", + "expression": "Specimen.subject", + "xpath": "f:Specimen/f:subject", + "xpathUsage": "normal", + "target": [ "Group", "Device", "Patient", "Substance", "Location" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Specimen-type", + "resource": { + "resourceType": "SearchParameter", + "id": "Specimen-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Specimen-type", + "version": "4.0.1", + "name": "type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The specimen type", + "code": "type", + "base": [ "Specimen" ], + "type": "token", + "expression": "Specimen.type", + "xpath": "f:Specimen/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/SpecimenDefinition-container", + "resource": { + "resourceType": "SearchParameter", + "id": "SpecimenDefinition-container", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/SpecimenDefinition-container", + "version": "4.0.1", + "name": "container", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The type of specimen conditioned in container expected by the lab", + "code": "container", + "base": [ "SpecimenDefinition" ], + "type": "token", + "expression": "SpecimenDefinition.typeTested.container.type", + "xpath": "f:SpecimenDefinition/f:typeTested/f:container/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/SpecimenDefinition-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "SpecimenDefinition-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/SpecimenDefinition-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The unique identifier associated with the specimen", + "code": "identifier", + "base": [ "SpecimenDefinition" ], + "type": "token", + "expression": "SpecimenDefinition.identifier", + "xpath": "f:SpecimenDefinition/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/SpecimenDefinition-type", + "resource": { + "resourceType": "SearchParameter", + "id": "SpecimenDefinition-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/SpecimenDefinition-type", + "version": "4.0.1", + "name": "type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The type of collected specimen", + "code": "type", + "base": [ "SpecimenDefinition" ], + "type": "token", + "expression": "SpecimenDefinition.typeCollected", + "xpath": "f:SpecimenDefinition/f:typeCollected", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/StructureDefinition-abstract", + "resource": { + "resourceType": "SearchParameter", + "id": "StructureDefinition-abstract", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/StructureDefinition-abstract", + "version": "4.0.1", + "name": "abstract", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Whether the structure is abstract", + "code": "abstract", + "base": [ "StructureDefinition" ], + "type": "token", + "expression": "StructureDefinition.abstract", + "xpath": "f:StructureDefinition/f:abstract", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/StructureDefinition-base", + "resource": { + "resourceType": "SearchParameter", + "id": "StructureDefinition-base", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/StructureDefinition-base", + "version": "4.0.1", + "name": "base", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Definition that this type is constrained/specialized from", + "code": "base", + "base": [ "StructureDefinition" ], + "type": "reference", + "expression": "StructureDefinition.baseDefinition", + "xpath": "f:StructureDefinition/f:baseDefinition", + "xpathUsage": "normal", + "target": [ "StructureDefinition" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/StructureDefinition-base-path", + "resource": { + "resourceType": "SearchParameter", + "id": "StructureDefinition-base-path", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/StructureDefinition-base-path", + "version": "4.0.1", + "name": "base-path", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Path that identifies the base element", + "code": "base-path", + "base": [ "StructureDefinition" ], + "type": "token", + "expression": "StructureDefinition.snapshot.element.base.path | StructureDefinition.differential.element.base.path", + "xpath": "f:StructureDefinition/f:snapshot/f:element/f:base/f:path | f:StructureDefinition/f:differential/f:element/f:base/f:path", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/StructureDefinition-derivation", + "resource": { + "resourceType": "SearchParameter", + "id": "StructureDefinition-derivation", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/StructureDefinition-derivation", + "version": "4.0.1", + "name": "derivation", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "specialization | constraint - How relates to base definition", + "code": "derivation", + "base": [ "StructureDefinition" ], + "type": "token", + "expression": "StructureDefinition.derivation", + "xpath": "f:StructureDefinition/f:derivation", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/StructureDefinition-experimental", + "resource": { + "resourceType": "SearchParameter", + "id": "StructureDefinition-experimental", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/StructureDefinition-experimental", + "version": "4.0.1", + "name": "experimental", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "For testing purposes, not real usage", + "code": "experimental", + "base": [ "StructureDefinition" ], + "type": "token", + "expression": "StructureDefinition.experimental", + "xpath": "f:StructureDefinition/f:experimental", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/StructureDefinition-ext-context", + "resource": { + "resourceType": "SearchParameter", + "id": "StructureDefinition-ext-context", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/StructureDefinition-ext-context", + "version": "4.0.1", + "name": "ext-context", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The system is the URL for the context-type: e.g. http://hl7.org/fhir/extension-context-type#element|CodeableConcept.text", + "code": "ext-context", + "base": [ "StructureDefinition" ], + "type": "token", + "expression": "StructureDefinition.context.type", + "xpath": "f:StructureDefinition/f:context/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/StructureDefinition-keyword", + "resource": { + "resourceType": "SearchParameter", + "id": "StructureDefinition-keyword", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/StructureDefinition-keyword", + "version": "4.0.1", + "name": "keyword", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "A code for the StructureDefinition", + "code": "keyword", + "base": [ "StructureDefinition" ], + "type": "token", + "expression": "StructureDefinition.keyword", + "xpath": "f:StructureDefinition/f:keyword", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/StructureDefinition-kind", + "resource": { + "resourceType": "SearchParameter", + "id": "StructureDefinition-kind", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/StructureDefinition-kind", + "version": "4.0.1", + "name": "kind", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "primitive-type | complex-type | resource | logical", + "code": "kind", + "base": [ "StructureDefinition" ], + "type": "token", + "expression": "StructureDefinition.kind", + "xpath": "f:StructureDefinition/f:kind", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/StructureDefinition-path", + "resource": { + "resourceType": "SearchParameter", + "id": "StructureDefinition-path", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/StructureDefinition-path", + "version": "4.0.1", + "name": "path", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "A path that is constrained in the StructureDefinition", + "code": "path", + "base": [ "StructureDefinition" ], + "type": "token", + "expression": "StructureDefinition.snapshot.element.path | StructureDefinition.differential.element.path", + "xpath": "f:StructureDefinition/f:snapshot/f:element/f:path | f:StructureDefinition/f:differential/f:element/f:path", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/StructureDefinition-type", + "resource": { + "resourceType": "SearchParameter", + "id": "StructureDefinition-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/StructureDefinition-type", + "version": "4.0.1", + "name": "type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Type defined or constrained by this structure", + "code": "type", + "base": [ "StructureDefinition" ], + "type": "uri", + "expression": "StructureDefinition.type", + "xpath": "f:StructureDefinition/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/StructureDefinition-valueset", + "resource": { + "resourceType": "SearchParameter", + "id": "StructureDefinition-valueset", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/StructureDefinition-valueset", + "version": "4.0.1", + "name": "valueset", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "A vocabulary binding reference", + "code": "valueset", + "base": [ "StructureDefinition" ], + "type": "reference", + "expression": "StructureDefinition.snapshot.element.binding.valueSet", + "xpath": "f:StructureDefinition/f:snapshot/f:element/f:binding/f:valueSet", + "xpathUsage": "normal", + "target": [ "ValueSet" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Subscription-contact", + "resource": { + "resourceType": "SearchParameter", + "id": "Subscription-contact", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Subscription-contact", + "version": "4.0.1", + "name": "contact", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Contact details for the subscription", + "code": "contact", + "base": [ "Subscription" ], + "type": "token", + "expression": "Subscription.contact", + "xpath": "f:Subscription/f:contact", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Subscription-criteria", + "resource": { + "resourceType": "SearchParameter", + "id": "Subscription-criteria", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Subscription-criteria", + "version": "4.0.1", + "name": "criteria", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The search rules used to determine when to send a notification", + "code": "criteria", + "base": [ "Subscription" ], + "type": "string", + "expression": "Subscription.criteria", + "xpath": "f:Subscription/f:criteria", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Subscription-payload", + "resource": { + "resourceType": "SearchParameter", + "id": "Subscription-payload", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Subscription-payload", + "version": "4.0.1", + "name": "payload", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The mime-type of the notification payload", + "code": "payload", + "base": [ "Subscription" ], + "type": "token", + "expression": "Subscription.channel.payload", + "xpath": "f:Subscription/f:channel/f:payload", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Subscription-status", + "resource": { + "resourceType": "SearchParameter", + "id": "Subscription-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Subscription-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The current state of the subscription", + "code": "status", + "base": [ "Subscription" ], + "type": "token", + "expression": "Subscription.status", + "xpath": "f:Subscription/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Subscription-type", + "resource": { + "resourceType": "SearchParameter", + "id": "Subscription-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Subscription-type", + "version": "4.0.1", + "name": "type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The type of channel for the sent notifications", + "code": "type", + "base": [ "Subscription" ], + "type": "token", + "expression": "Subscription.channel.type", + "xpath": "f:Subscription/f:channel/f:type", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Subscription-url", + "resource": { + "resourceType": "SearchParameter", + "id": "Subscription-url", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Subscription-url", + "version": "4.0.1", + "name": "url", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The uri that will receive the notifications", + "code": "url", + "base": [ "Subscription" ], + "type": "uri", + "expression": "Subscription.channel.endpoint", + "xpath": "f:Subscription/f:channel/f:endpoint", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Substance-category", + "resource": { + "resourceType": "SearchParameter", + "id": "Substance-category", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Substance-category", + "version": "4.0.1", + "name": "category", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The category of the substance", + "code": "category", + "base": [ "Substance" ], + "type": "token", + "expression": "Substance.category", + "xpath": "f:Substance/f:category", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Substance-code", + "resource": { + "resourceType": "SearchParameter", + "id": "Substance-code", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Substance-code", + "version": "4.0.1", + "name": "code", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The code of the substance or ingredient", + "code": "code", + "base": [ "Substance" ], + "type": "token", + "expression": "Substance.code | (Substance.ingredient.substance as CodeableConcept)", + "xpath": "f:Substance/f:code | f:Substance/f:ingredient/f:substanceCodeableConcept", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Substance-container-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "Substance-container-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Substance-container-identifier", + "version": "4.0.1", + "name": "container-identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Identifier of the package/container", + "code": "container-identifier", + "base": [ "Substance" ], + "type": "token", + "expression": "Substance.instance.identifier", + "xpath": "f:Substance/f:instance/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Substance-expiry", + "resource": { + "resourceType": "SearchParameter", + "id": "Substance-expiry", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Substance-expiry", + "version": "4.0.1", + "name": "expiry", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Expiry date of package or container of substance", + "code": "expiry", + "base": [ "Substance" ], + "type": "date", + "expression": "Substance.instance.expiry", + "xpath": "f:Substance/f:instance/f:expiry", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Substance-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "Substance-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Substance-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Unique identifier for the substance", + "code": "identifier", + "base": [ "Substance" ], + "type": "token", + "expression": "Substance.identifier", + "xpath": "f:Substance/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Substance-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "Substance-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Substance-quantity", + "version": "4.0.1", + "name": "quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Amount of substance in the package", + "code": "quantity", + "base": [ "Substance" ], + "type": "quantity", + "expression": "Substance.instance.quantity", + "xpath": "f:Substance/f:instance/f:quantity", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Substance-status", + "resource": { + "resourceType": "SearchParameter", + "id": "Substance-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Substance-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "active | inactive | entered-in-error", + "code": "status", + "base": [ "Substance" ], + "type": "token", + "expression": "Substance.status", + "xpath": "f:Substance/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Substance-substance-reference", + "resource": { + "resourceType": "SearchParameter", + "id": "Substance-substance-reference", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Substance-substance-reference", + "version": "4.0.1", + "name": "substance-reference", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "A component of the substance", + "code": "substance-reference", + "base": [ "Substance" ], + "type": "reference", + "expression": "(Substance.ingredient.substance as Reference)", + "xpath": "f:Substance/f:ingredient/f:substanceReference", + "xpathUsage": "normal", + "target": [ "Substance" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/SubstanceSpecification-code", + "resource": { + "resourceType": "SearchParameter", + "id": "SubstanceSpecification-code", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/SubstanceSpecification-code", + "version": "4.0.1", + "name": "code", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Biomedical Research and Regulation)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/rcrim/index.cfm" + } ] + } ], + "description": "The specific code", + "code": "code", + "base": [ "SubstanceSpecification" ], + "type": "token", + "expression": "SubstanceSpecification.code.code", + "xpath": "f:SubstanceSpecification/f:code/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/SupplyDelivery-receiver", + "resource": { + "resourceType": "SearchParameter", + "id": "SupplyDelivery-receiver", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/SupplyDelivery-receiver", + "version": "4.0.1", + "name": "receiver", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Who collected the Supply", + "code": "receiver", + "base": [ "SupplyDelivery" ], + "type": "reference", + "expression": "SupplyDelivery.receiver", + "xpath": "f:SupplyDelivery/f:receiver", + "xpathUsage": "normal", + "target": [ "Practitioner", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/SupplyDelivery-status", + "resource": { + "resourceType": "SearchParameter", + "id": "SupplyDelivery-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/SupplyDelivery-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "in-progress | completed | abandoned | entered-in-error", + "code": "status", + "base": [ "SupplyDelivery" ], + "type": "token", + "expression": "SupplyDelivery.status", + "xpath": "f:SupplyDelivery/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/SupplyDelivery-supplier", + "resource": { + "resourceType": "SearchParameter", + "id": "SupplyDelivery-supplier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/SupplyDelivery-supplier", + "version": "4.0.1", + "name": "supplier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Dispenser", + "code": "supplier", + "base": [ "SupplyDelivery" ], + "type": "reference", + "expression": "SupplyDelivery.supplier", + "xpath": "f:SupplyDelivery/f:supplier", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/SupplyRequest-category", + "resource": { + "resourceType": "SearchParameter", + "id": "SupplyRequest-category", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/SupplyRequest-category", + "version": "4.0.1", + "name": "category", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The kind of supply (central, non-stock, etc.)", + "code": "category", + "base": [ "SupplyRequest" ], + "type": "token", + "expression": "SupplyRequest.category", + "xpath": "f:SupplyRequest/f:category", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/SupplyRequest-requester", + "resource": { + "resourceType": "SearchParameter", + "id": "SupplyRequest-requester", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/SupplyRequest-requester", + "version": "4.0.1", + "name": "requester", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Individual making the request", + "code": "requester", + "base": [ "SupplyRequest" ], + "type": "reference", + "expression": "SupplyRequest.requester", + "xpath": "f:SupplyRequest/f:requester", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "Device", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/SupplyRequest-status", + "resource": { + "resourceType": "SearchParameter", + "id": "SupplyRequest-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/SupplyRequest-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "draft | active | suspended +", + "code": "status", + "base": [ "SupplyRequest" ], + "type": "token", + "expression": "SupplyRequest.status", + "xpath": "f:SupplyRequest/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/SupplyRequest-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "SupplyRequest-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/SupplyRequest-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "The destination of the supply", + "code": "subject", + "base": [ "SupplyRequest" ], + "type": "reference", + "expression": "SupplyRequest.deliverTo", + "xpath": "f:SupplyRequest/f:deliverTo", + "xpathUsage": "normal", + "target": [ "Organization", "Patient", "Location" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/SupplyRequest-supplier", + "resource": { + "resourceType": "SearchParameter", + "id": "SupplyRequest-supplier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/SupplyRequest-supplier", + "version": "4.0.1", + "name": "supplier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Who is intended to fulfill the request", + "code": "supplier", + "base": [ "SupplyRequest" ], + "type": "reference", + "expression": "SupplyRequest.supplier", + "xpath": "f:SupplyRequest/f:supplier", + "xpathUsage": "normal", + "target": [ "Organization", "HealthcareService" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Task-authored-on", + "resource": { + "resourceType": "SearchParameter", + "id": "Task-authored-on", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Task-authored-on", + "version": "4.0.1", + "name": "authored-on", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Search by creation date", + "code": "authored-on", + "base": [ "Task" ], + "type": "date", + "expression": "Task.authoredOn", + "xpath": "f:Task/f:authoredOn", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Task-based-on", + "resource": { + "resourceType": "SearchParameter", + "id": "Task-based-on", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Task-based-on", + "version": "4.0.1", + "name": "based-on", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Search by requests this task is based on", + "code": "based-on", + "base": [ "Task" ], + "type": "reference", + "expression": "Task.basedOn", + "xpath": "f:Task/f:basedOn", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Task-business-status", + "resource": { + "resourceType": "SearchParameter", + "id": "Task-business-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Task-business-status", + "version": "4.0.1", + "name": "business-status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Search by business status", + "code": "business-status", + "base": [ "Task" ], + "type": "token", + "expression": "Task.businessStatus", + "xpath": "f:Task/f:businessStatus", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Task-code", + "resource": { + "resourceType": "SearchParameter", + "id": "Task-code", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Task-code", + "version": "4.0.1", + "name": "code", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Search by task code", + "code": "code", + "base": [ "Task" ], + "type": "token", + "expression": "Task.code", + "xpath": "f:Task/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Task-encounter", + "resource": { + "resourceType": "SearchParameter", + "id": "Task-encounter", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Task-encounter", + "version": "4.0.1", + "name": "encounter", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Search by encounter", + "code": "encounter", + "base": [ "Task" ], + "type": "reference", + "expression": "Task.encounter", + "xpath": "f:Task/f:encounter", + "xpathUsage": "normal", + "target": [ "Encounter" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Task-focus", + "resource": { + "resourceType": "SearchParameter", + "id": "Task-focus", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Task-focus", + "version": "4.0.1", + "name": "focus", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Search by task focus", + "code": "focus", + "base": [ "Task" ], + "type": "reference", + "expression": "Task.focus", + "xpath": "f:Task/f:focus", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Task-group-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "Task-group-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Task-group-identifier", + "version": "4.0.1", + "name": "group-identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Search by group identifier", + "code": "group-identifier", + "base": [ "Task" ], + "type": "token", + "expression": "Task.groupIdentifier", + "xpath": "f:Task/f:groupIdentifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Task-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "Task-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Task-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Search for a task instance by its business identifier", + "code": "identifier", + "base": [ "Task" ], + "type": "token", + "expression": "Task.identifier", + "xpath": "f:Task/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Task-intent", + "resource": { + "resourceType": "SearchParameter", + "id": "Task-intent", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Task-intent", + "version": "4.0.1", + "name": "intent", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Search by task intent", + "code": "intent", + "base": [ "Task" ], + "type": "token", + "expression": "Task.intent", + "xpath": "f:Task/f:intent", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Task-modified", + "resource": { + "resourceType": "SearchParameter", + "id": "Task-modified", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Task-modified", + "version": "4.0.1", + "name": "modified", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Search by last modification date", + "code": "modified", + "base": [ "Task" ], + "type": "date", + "expression": "Task.lastModified", + "xpath": "f:Task/f:lastModified", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Task-owner", + "resource": { + "resourceType": "SearchParameter", + "id": "Task-owner", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Task-owner", + "version": "4.0.1", + "name": "owner", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Search by task owner", + "code": "owner", + "base": [ "Task" ], + "type": "reference", + "expression": "Task.owner", + "xpath": "f:Task/f:owner", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "CareTeam", "Device", "Patient", "HealthcareService", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Task-part-of", + "resource": { + "resourceType": "SearchParameter", + "id": "Task-part-of", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Task-part-of", + "version": "4.0.1", + "name": "part-of", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Search by task this task is part of", + "code": "part-of", + "base": [ "Task" ], + "type": "reference", + "expression": "Task.partOf", + "xpath": "f:Task/f:partOf", + "xpathUsage": "normal", + "target": [ "Task" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Task-patient", + "resource": { + "resourceType": "SearchParameter", + "id": "Task-patient", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Task-patient", + "version": "4.0.1", + "name": "patient", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Search by patient", + "code": "patient", + "base": [ "Task" ], + "type": "reference", + "expression": "Task.for.where(resolve() is Patient)", + "xpath": "f:Task/f:for", + "xpathUsage": "normal", + "target": [ "Patient" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Task-performer", + "resource": { + "resourceType": "SearchParameter", + "id": "Task-performer", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Task-performer", + "version": "4.0.1", + "name": "performer", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Search by recommended type of performer (e.g., Requester, Performer, Scheduler).", + "code": "performer", + "base": [ "Task" ], + "type": "token", + "expression": "Task.performerType", + "xpath": "f:Task/f:performerType", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Task-period", + "resource": { + "resourceType": "SearchParameter", + "id": "Task-period", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Task-period", + "version": "4.0.1", + "name": "period", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Search by period Task is/was underway", + "code": "period", + "base": [ "Task" ], + "type": "date", + "expression": "Task.executionPeriod", + "xpath": "f:Task/f:executionPeriod", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Task-priority", + "resource": { + "resourceType": "SearchParameter", + "id": "Task-priority", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Task-priority", + "version": "4.0.1", + "name": "priority", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Search by task priority", + "code": "priority", + "base": [ "Task" ], + "type": "token", + "expression": "Task.priority", + "xpath": "f:Task/f:priority", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Task-requester", + "resource": { + "resourceType": "SearchParameter", + "id": "Task-requester", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Task-requester", + "version": "4.0.1", + "name": "requester", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Search by task requester", + "code": "requester", + "base": [ "Task" ], + "type": "reference", + "expression": "Task.requester", + "xpath": "f:Task/f:requester", + "xpathUsage": "normal", + "target": [ "Practitioner", "Organization", "Device", "Patient", "PractitionerRole", "RelatedPerson" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Task-status", + "resource": { + "resourceType": "SearchParameter", + "id": "Task-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Task-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Search by task status", + "code": "status", + "base": [ "Task" ], + "type": "token", + "expression": "Task.status", + "xpath": "f:Task/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/Task-subject", + "resource": { + "resourceType": "SearchParameter", + "id": "Task-subject", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/Task-subject", + "version": "4.0.1", + "name": "subject", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Orders and Observations)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/orders/index.cfm" + } ] + } ], + "description": "Search by subject", + "code": "subject", + "base": [ "Task" ], + "type": "reference", + "expression": "Task.for", + "xpath": "f:Task/f:for", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/TestReport-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "TestReport-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/TestReport-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "An external identifier for the test report", + "code": "identifier", + "base": [ "TestReport" ], + "type": "token", + "expression": "TestReport.identifier", + "xpath": "f:TestReport/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/TestReport-issued", + "resource": { + "resourceType": "SearchParameter", + "id": "TestReport-issued", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/TestReport-issued", + "version": "4.0.1", + "name": "issued", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The test report generation date", + "code": "issued", + "base": [ "TestReport" ], + "type": "date", + "expression": "TestReport.issued", + "xpath": "f:TestReport/f:issued", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/TestReport-participant", + "resource": { + "resourceType": "SearchParameter", + "id": "TestReport-participant", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/TestReport-participant", + "version": "4.0.1", + "name": "participant", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The reference to a participant in the test execution", + "code": "participant", + "base": [ "TestReport" ], + "type": "uri", + "expression": "TestReport.participant.uri", + "xpath": "f:TestReport/f:participant/f:uri", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/TestReport-result", + "resource": { + "resourceType": "SearchParameter", + "id": "TestReport-result", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/TestReport-result", + "version": "4.0.1", + "name": "result", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The result disposition of the test execution", + "code": "result", + "base": [ "TestReport" ], + "type": "token", + "expression": "TestReport.result", + "xpath": "f:TestReport/f:result", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/TestReport-tester", + "resource": { + "resourceType": "SearchParameter", + "id": "TestReport-tester", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/TestReport-tester", + "version": "4.0.1", + "name": "tester", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The name of the testing organization", + "code": "tester", + "base": [ "TestReport" ], + "type": "string", + "expression": "TestReport.tester", + "xpath": "f:TestReport/f:tester", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/TestReport-testscript", + "resource": { + "resourceType": "SearchParameter", + "id": "TestReport-testscript", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/TestReport-testscript", + "version": "4.0.1", + "name": "testscript", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The test script executed to produce this report", + "code": "testscript", + "base": [ "TestReport" ], + "type": "reference", + "expression": "TestReport.testScript", + "xpath": "f:TestReport/f:testScript", + "xpathUsage": "normal", + "target": [ "TestScript" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/TestScript-context", + "resource": { + "resourceType": "SearchParameter", + "id": "TestScript-context", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/TestScript-context", + "version": "4.0.1", + "name": "context", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "A use context assigned to the test script", + "code": "context", + "base": [ "TestScript" ], + "type": "token", + "expression": "(TestScript.useContext.value as CodeableConcept)", + "xpath": "f:TestScript/f:useContext/f:valueCodeableConcept", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/TestScript-context-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "TestScript-context-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/TestScript-context-quantity", + "version": "4.0.1", + "name": "context-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "A quantity- or range-valued use context assigned to the test script", + "code": "context-quantity", + "base": [ "TestScript" ], + "type": "quantity", + "expression": "(TestScript.useContext.value as Quantity) | (TestScript.useContext.value as Range)", + "xpath": "f:TestScript/f:useContext/f:valueQuantity | f:TestScript/f:useContext/f:valueRange", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/TestScript-context-type", + "resource": { + "resourceType": "SearchParameter", + "id": "TestScript-context-type", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/TestScript-context-type", + "version": "4.0.1", + "name": "context-type", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "A type of use context assigned to the test script", + "code": "context-type", + "base": [ "TestScript" ], + "type": "token", + "expression": "TestScript.useContext.code", + "xpath": "f:TestScript/f:useContext/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/TestScript-date", + "resource": { + "resourceType": "SearchParameter", + "id": "TestScript-date", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/TestScript-date", + "version": "4.0.1", + "name": "date", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The test script publication date", + "code": "date", + "base": [ "TestScript" ], + "type": "date", + "expression": "TestScript.date", + "xpath": "f:TestScript/f:date", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/TestScript-description", + "resource": { + "resourceType": "SearchParameter", + "id": "TestScript-description", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/TestScript-description", + "version": "4.0.1", + "name": "description", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The description of the test script", + "code": "description", + "base": [ "TestScript" ], + "type": "string", + "expression": "TestScript.description", + "xpath": "f:TestScript/f:description", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/TestScript-identifier", + "resource": { + "resourceType": "SearchParameter", + "id": "TestScript-identifier", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/TestScript-identifier", + "version": "4.0.1", + "name": "identifier", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "External identifier for the test script", + "code": "identifier", + "base": [ "TestScript" ], + "type": "token", + "expression": "TestScript.identifier", + "xpath": "f:TestScript/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/TestScript-jurisdiction", + "resource": { + "resourceType": "SearchParameter", + "id": "TestScript-jurisdiction", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/TestScript-jurisdiction", + "version": "4.0.1", + "name": "jurisdiction", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Intended jurisdiction for the test script", + "code": "jurisdiction", + "base": [ "TestScript" ], + "type": "token", + "expression": "TestScript.jurisdiction", + "xpath": "f:TestScript/f:jurisdiction", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/TestScript-name", + "resource": { + "resourceType": "SearchParameter", + "id": "TestScript-name", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/TestScript-name", + "version": "4.0.1", + "name": "name", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Computationally friendly name of the test script", + "code": "name", + "base": [ "TestScript" ], + "type": "string", + "expression": "TestScript.name", + "xpath": "f:TestScript/f:name", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/TestScript-publisher", + "resource": { + "resourceType": "SearchParameter", + "id": "TestScript-publisher", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/TestScript-publisher", + "version": "4.0.1", + "name": "publisher", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "Name of the publisher of the test script", + "code": "publisher", + "base": [ "TestScript" ], + "type": "string", + "expression": "TestScript.publisher", + "xpath": "f:TestScript/f:publisher", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/TestScript-status", + "resource": { + "resourceType": "SearchParameter", + "id": "TestScript-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/TestScript-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The current status of the test script", + "code": "status", + "base": [ "TestScript" ], + "type": "token", + "expression": "TestScript.status", + "xpath": "f:TestScript/f:status", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/TestScript-testscript-capability", + "resource": { + "resourceType": "SearchParameter", + "id": "TestScript-testscript-capability", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/TestScript-testscript-capability", + "version": "4.0.1", + "name": "testscript-capability", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "TestScript required and validated capability", + "code": "testscript-capability", + "base": [ "TestScript" ], + "type": "string", + "expression": "TestScript.metadata.capability.description", + "xpath": "f:TestScript/f:metadata/f:capability/f:description", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/TestScript-title", + "resource": { + "resourceType": "SearchParameter", + "id": "TestScript-title", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/TestScript-title", + "version": "4.0.1", + "name": "title", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The human-friendly name of the test script", + "code": "title", + "base": [ "TestScript" ], + "type": "string", + "expression": "TestScript.title", + "xpath": "f:TestScript/f:title", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/TestScript-url", + "resource": { + "resourceType": "SearchParameter", + "id": "TestScript-url", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/TestScript-url", + "version": "4.0.1", + "name": "url", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The uri that identifies the test script", + "code": "url", + "base": [ "TestScript" ], + "type": "uri", + "expression": "TestScript.url", + "xpath": "f:TestScript/f:url", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/TestScript-version", + "resource": { + "resourceType": "SearchParameter", + "id": "TestScript-version", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/TestScript-version", + "version": "4.0.1", + "name": "version", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "The business version of the test script", + "code": "version", + "base": [ "TestScript" ], + "type": "token", + "expression": "TestScript.version", + "xpath": "f:TestScript/f:version", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/TestScript-context-type-quantity", + "resource": { + "resourceType": "SearchParameter", + "id": "TestScript-context-type-quantity", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/TestScript-context-type-quantity", + "version": "4.0.1", + "name": "context-type-quantity", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "A use context type and quantity- or range-based value assigned to the test script", + "code": "context-type-quantity", + "base": [ "TestScript" ], + "type": "composite", + "expression": "TestScript.useContext", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/TestScript-context-type", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/TestScript-context-quantity", + "expression": "value.as(Quantity) | value.as(Range)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/TestScript-context-type-value", + "resource": { + "resourceType": "SearchParameter", + "id": "TestScript-context-type-value", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/TestScript-context-type-value", + "version": "4.0.1", + "name": "context-type-value", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (FHIR Infrastructure)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fiwg/index.cfm" + } ] + } ], + "description": "A use context type and value assigned to the test script", + "code": "context-type-value", + "base": [ "TestScript" ], + "type": "composite", + "expression": "TestScript.useContext", + "xpathUsage": "normal", + "multipleOr": false, + "component": [ { + "definition": "http://hl7.org/fhir/SearchParameter/TestScript-context-type", + "expression": "code" + }, { + "definition": "http://hl7.org/fhir/SearchParameter/TestScript-context", + "expression": "value.as(CodeableConcept)" + } ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ValueSet-code", + "resource": { + "resourceType": "SearchParameter", + "id": "ValueSet-code", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ValueSet-code", + "version": "4.0.1", + "name": "code", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Vocabulary)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/Vocab/index.cfm" + } ] + } ], + "description": "This special parameter searches for codes in the value set. See additional notes on the ValueSet resource", + "code": "code", + "base": [ "ValueSet" ], + "type": "token", + "expression": "ValueSet.expansion.contains.code | ValueSet.compose.include.concept.code", + "xpath": "f:ValueSet/f:expansion/f:contains/f:code | f:ValueSet/f:compose/f:include/f:concept/f:code", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ValueSet-expansion", + "resource": { + "resourceType": "SearchParameter", + "id": "ValueSet-expansion", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ValueSet-expansion", + "version": "4.0.1", + "name": "expansion", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Vocabulary)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/Vocab/index.cfm" + } ] + } ], + "description": "Identifies the value set expansion (business identifier)", + "code": "expansion", + "base": [ "ValueSet" ], + "type": "uri", + "expression": "ValueSet.expansion.identifier", + "xpath": "f:ValueSet/f:expansion/f:identifier", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/ValueSet-reference", + "resource": { + "resourceType": "SearchParameter", + "id": "ValueSet-reference", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/ValueSet-reference", + "version": "4.0.1", + "name": "reference", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Vocabulary)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/Vocab/index.cfm" + } ] + } ], + "description": "A code system included or excluded in the value set or an imported value set", + "code": "reference", + "base": [ "ValueSet" ], + "type": "uri", + "expression": "ValueSet.compose.include.system", + "xpath": "f:ValueSet/f:compose/f:include/f:system", + "xpathUsage": "normal" + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/VerificationResult-target", + "resource": { + "resourceType": "SearchParameter", + "id": "VerificationResult-target", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/VerificationResult-target", + "version": "4.0.1", + "name": "target", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Patient Administration)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/pafm/index.cfm" + } ] + } ], + "description": "A resource that was validated", + "code": "target", + "base": [ "VerificationResult" ], + "type": "reference", + "expression": "VerificationResult.target", + "xpath": "f:VerificationResult/f:target", + "xpathUsage": "normal", + "target": [ "Account", "ActivityDefinition", "AdverseEvent", "AllergyIntolerance", "Appointment", "AppointmentResponse", "AuditEvent", "Basic", "Binary", "BiologicallyDerivedProduct", "BodyStructure", "Bundle", "CapabilityStatement", "CarePlan", "CareTeam", "CatalogEntry", "ChargeItem", "ChargeItemDefinition", "Claim", "ClaimResponse", "ClinicalImpression", "CodeSystem", "Communication", "CommunicationRequest", "CompartmentDefinition", "Composition", "ConceptMap", "Condition", "Consent", "Contract", "Coverage", "CoverageEligibilityRequest", "CoverageEligibilityResponse", "DetectedIssue", "Device", "DeviceDefinition", "DeviceMetric", "DeviceRequest", "DeviceUseStatement", "DiagnosticReport", "DocumentManifest", "DocumentReference", "EffectEvidenceSynthesis", "Encounter", "Endpoint", "EnrollmentRequest", "EnrollmentResponse", "EpisodeOfCare", "EventDefinition", "Evidence", "EvidenceVariable", "ExampleScenario", "ExplanationOfBenefit", "FamilyMemberHistory", "Flag", "Goal", "GraphDefinition", "Group", "GuidanceResponse", "HealthcareService", "ImagingStudy", "Immunization", "ImmunizationEvaluation", "ImmunizationRecommendation", "ImplementationGuide", "InsurancePlan", "Invoice", "Library", "Linkage", "List", "Location", "Measure", "MeasureReport", "Media", "Medication", "MedicationAdministration", "MedicationDispense", "MedicationKnowledge", "MedicationRequest", "MedicationStatement", "MedicinalProduct", "MedicinalProductAuthorization", "MedicinalProductContraindication", "MedicinalProductIndication", "MedicinalProductIngredient", "MedicinalProductInteraction", "MedicinalProductManufactured", "MedicinalProductPackaged", "MedicinalProductPharmaceutical", "MedicinalProductUndesirableEffect", "MessageDefinition", "MessageHeader", "MolecularSequence", "NamingSystem", "NutritionOrder", "Observation", "ObservationDefinition", "OperationDefinition", "OperationOutcome", "Organization", "OrganizationAffiliation", "Patient", "PaymentNotice", "PaymentReconciliation", "Person", "PlanDefinition", "Practitioner", "PractitionerRole", "Procedure", "Provenance", "Questionnaire", "QuestionnaireResponse", "RelatedPerson", "RequestGroup", "ResearchDefinition", "ResearchElementDefinition", "ResearchStudy", "ResearchSubject", "RiskAssessment", "RiskEvidenceSynthesis", "Schedule", "SearchParameter", "ServiceRequest", "Slot", "Specimen", "SpecimenDefinition", "StructureDefinition", "StructureMap", "Subscription", "Substance", "SubstanceNucleicAcid", "SubstancePolymer", "SubstanceProtein", "SubstanceReferenceInformation", "SubstanceSourceMaterial", "SubstanceSpecification", "SupplyDelivery", "SupplyRequest", "Task", "TerminologyCapabilities", "TestReport", "TestScript", "ValueSet", "VerificationResult", "VisionPrescription" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/VisionPrescription-datewritten", + "resource": { + "resourceType": "SearchParameter", + "id": "VisionPrescription-datewritten", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/VisionPrescription-datewritten", + "version": "4.0.1", + "name": "datewritten", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "Return prescriptions written on this date", + "code": "datewritten", + "base": [ "VisionPrescription" ], + "type": "date", + "expression": "VisionPrescription.dateWritten", + "xpath": "f:VisionPrescription/f:dateWritten", + "xpathUsage": "normal", + "comparator": [ "eq", "ne", "gt", "ge", "lt", "le", "sa", "eb", "ap" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/VisionPrescription-prescriber", + "resource": { + "resourceType": "SearchParameter", + "id": "VisionPrescription-prescriber", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/VisionPrescription-prescriber", + "version": "4.0.1", + "name": "prescriber", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "Who authorized the vision prescription", + "code": "prescriber", + "base": [ "VisionPrescription" ], + "type": "reference", + "expression": "VisionPrescription.prescriber", + "xpath": "f:VisionPrescription/f:prescriber", + "xpathUsage": "normal", + "target": [ "Practitioner", "PractitionerRole" ] + } +}, { + "fullUrl": "http://hl7.org/fhir/SearchParameter/VisionPrescription-status", + "resource": { + "resourceType": "SearchParameter", + "id": "VisionPrescription-status", + "extension": [ { + "url": "http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status", + "valueCode": "trial-use" + } ], + "url": "http://hl7.org/fhir/SearchParameter/VisionPrescription-status", + "version": "4.0.1", + "name": "status", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "publisher": "Health Level Seven International (Financial Management)", + "contact": [ { + "telecom": [ { + "system": "url", + "value": "http://hl7.org/fhir" + } ] + }, { + "telecom": [ { + "system": "url", + "value": "http://www.hl7.org/Special/committees/fm/index.cfm" + } ] + } ], + "description": "The status of the vision prescription", + "code": "status", + "base": [ "VisionPrescription" ], + "type": "token", + "expression": "VisionPrescription.status", + "xpath": "f:VisionPrescription/f:status", + "xpathUsage": "normal" + } +} ] +} diff --git a/hapi-fhir-validation-resources-r4/src/test/java/org/hl7/fhir/r4/model/sp/SearchParametersTest.java b/hapi-fhir-validation-resources-r4/src/test/java/org/hl7/fhir/r4/model/sp/SearchParametersTest.java new file mode 100644 index 00000000000..47a8a5e0f09 --- /dev/null +++ b/hapi-fhir-validation-resources-r4/src/test/java/org/hl7/fhir/r4/model/sp/SearchParametersTest.java @@ -0,0 +1,18 @@ +package org.hl7.fhir.r4.model.sp; + +import ca.uhn.fhir.util.ClasspathUtil; +import org.junit.jupiter.api.Test; + +import static org.hamcrest.CoreMatchers.not; +import static org.hamcrest.MatcherAssert.assertThat; +import static org.hamcrest.Matchers.containsString; + +public class SearchParametersTest { + + @Test + public void testStatus() { + String resource = ClasspathUtil.loadResource("org/hl7/fhir/r4/model/sp/search-parameters.json"); + assertThat(resource, not(containsString("\"draft\""))); + } + +} diff --git a/hapi-fhir-validation-resources-r5/pom.xml b/hapi-fhir-validation-resources-r5/pom.xml index 303087ec902..c4ccaa6187f 100644 --- a/hapi-fhir-validation-resources-r5/pom.xml +++ b/hapi-fhir-validation-resources-r5/pom.xml @@ -4,7 +4,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-fhir-validation/pom.xml b/hapi-fhir-validation/pom.xml index f354d0d585d..81b1b0d0aa9 100644 --- a/hapi-fhir-validation/pom.xml +++ b/hapi-fhir-validation/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-deployable-pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../hapi-deployable-pom/pom.xml diff --git a/hapi-tinder-plugin/pom.xml b/hapi-tinder-plugin/pom.xml index efd54036104..86257aa8913 100644 --- a/hapi-tinder-plugin/pom.xml +++ b/hapi-tinder-plugin/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-fhir - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../pom.xml @@ -58,37 +58,37 @@ ca.uhn.hapi.fhir hapi-fhir-structures-dstu3 - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ca.uhn.hapi.fhir hapi-fhir-structures-hl7org-dstu2 - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ca.uhn.hapi.fhir hapi-fhir-structures-r4 - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ca.uhn.hapi.fhir hapi-fhir-structures-r5 - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ca.uhn.hapi.fhir hapi-fhir-validation-resources-dstu2 - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ca.uhn.hapi.fhir hapi-fhir-validation-resources-dstu3 - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ca.uhn.hapi.fhir hapi-fhir-validation-resources-r4 - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT org.apache.velocity 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 b28e6417e06..8c3e44e49a5 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 @@ -229,28 +229,36 @@ public class ResourceMinimizerMojo extends AbstractMojo { // 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/profile"); - m.fhirVersion = "R5"; + m.myCtx = ctxR4; + m.targetDirectory = new File("./hapi-fhir-validation-resources-r4/src/main/resources/org/hl7/fhir/r4/model/sp"); + m.fhirVersion = "R4"; m.execute(); 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/valueset"); - m.fhirVersion = "R5"; - m.execute(); - 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(); +// m = new ResourceMinimizerMojo(); +// m.myCtx = ctxR5; +// m.targetDirectory = new File("./hapi-fhir-validation-resources-r5/src/main/resources/org/hl7/fhir/r5/model/profile"); +// m.fhirVersion = "R5"; +// m.execute(); +// 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/valueset"); +// m.fhirVersion = "R5"; +// m.execute(); +// 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/hapi-tinder-test/pom.xml b/hapi-tinder-test/pom.xml index 9395f743979..aba66273ba3 100644 --- a/hapi-tinder-test/pom.xml +++ b/hapi-tinder-test/pom.xml @@ -4,7 +4,7 @@ ca.uhn.hapi.fhir hapi-fhir - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../pom.xml diff --git a/pom.xml b/pom.xml index 79cc3817764..b808fcf355c 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ ca.uhn.hapi.fhir hapi-fhir pom - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT HAPI-FHIR An open-source implementation of the FHIR specification in Java. https://hapifhir.io diff --git a/tests/hapi-fhir-base-test-jaxrsserver-kotlin/pom.xml b/tests/hapi-fhir-base-test-jaxrsserver-kotlin/pom.xml index f095488f4f4..243e84ae57b 100644 --- a/tests/hapi-fhir-base-test-jaxrsserver-kotlin/pom.xml +++ b/tests/hapi-fhir-base-test-jaxrsserver-kotlin/pom.xml @@ -6,7 +6,7 @@ ca.uhn.hapi.fhir hapi-fhir - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../../pom.xml diff --git a/tests/hapi-fhir-base-test-mindeps-client/pom.xml b/tests/hapi-fhir-base-test-mindeps-client/pom.xml index dbfadbe9543..7d25aab4a21 100644 --- a/tests/hapi-fhir-base-test-mindeps-client/pom.xml +++ b/tests/hapi-fhir-base-test-mindeps-client/pom.xml @@ -4,7 +4,7 @@ ca.uhn.hapi.fhir hapi-fhir - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../../pom.xml diff --git a/tests/hapi-fhir-base-test-mindeps-server/pom.xml b/tests/hapi-fhir-base-test-mindeps-server/pom.xml index 8b8aa95b196..00f4b73b00c 100644 --- a/tests/hapi-fhir-base-test-mindeps-server/pom.xml +++ b/tests/hapi-fhir-base-test-mindeps-server/pom.xml @@ -5,7 +5,7 @@ ca.uhn.hapi.fhir hapi-fhir - 5.6.0-PRE4-SNAPSHOT + 5.6.0-PRE5-SNAPSHOT ../../pom.xml