diff --git a/buildSrc/src/main/kotlin/Dependencies.kt b/buildSrc/src/main/kotlin/Dependencies.kt index 4ef46499ea..4c73349b1d 100644 --- a/buildSrc/src/main/kotlin/Dependencies.kt +++ b/buildSrc/src/main/kotlin/Dependencies.kt @@ -82,6 +82,7 @@ object Dependencies { const val http = "com.squareup.okhttp3:okhttp:${Versions.http}" const val jsonToolsPatch = "com.github.java-json-tools:json-patch:${Versions.jsonToolsPatch}" const val material = "com.google.android.material:material:${Versions.material}" + const val kotlinPoet = "com.squareup:kotlinpoet:${Versions.kotlinPoet}" // Dependencies for testing go here object AndroidxTest { @@ -144,6 +145,7 @@ object Dependencies { const val retrofit = "2.7.2" const val truth = "1.0.1" const val flexBox = "3.0.0" + const val kotlinPoet = "1.9.0" object AndroidxTest { const val core = "1.2.0" diff --git a/buildSrc/src/main/kotlin/Plugins.kt b/buildSrc/src/main/kotlin/Plugins.kt index 9a67a8ffb4..15d38803a3 100644 --- a/buildSrc/src/main/kotlin/Plugins.kt +++ b/buildSrc/src/main/kotlin/Plugins.kt @@ -22,6 +22,8 @@ object Plugins { const val kotlinAndroid = "kotlin-android" const val kotlinKapt = "kotlin-kapt" const val mavenPublish = "maven-publish" + const val javaLibrary = "java-library" + const val kotlin = "kotlin" const val navSafeArgs = "androidx.navigation.safeargs.kotlin" const val spotless = "com.diffplug.spotless" } diff --git a/codegen/.gitignore b/codegen/.gitignore new file mode 100644 index 0000000000..42afabfd2a --- /dev/null +++ b/codegen/.gitignore @@ -0,0 +1 @@ +/build \ No newline at end of file diff --git a/codegen/build.gradle.kts b/codegen/build.gradle.kts new file mode 100644 index 0000000000..723805a69c --- /dev/null +++ b/codegen/build.gradle.kts @@ -0,0 +1,15 @@ +plugins { + id(Plugins.BuildPlugins.javaLibrary) + id(Plugins.BuildPlugins.kotlin) +} + +java { + sourceCompatibility = JavaVersion.VERSION_1_8 + targetCompatibility = JavaVersion.VERSION_1_8 +} + +dependencies { + api(Dependencies.HapiFhir.structuresR4) { exclude(module = "junit") } + + implementation(Dependencies.kotlinPoet) +} diff --git a/codegen/src/main/java/com/google/android/fhir/codegen/SearchParameterRepositoryGenerator.kt b/codegen/src/main/java/com/google/android/fhir/codegen/SearchParameterRepositoryGenerator.kt new file mode 100644 index 0000000000..6094a66178 --- /dev/null +++ b/codegen/src/main/java/com/google/android/fhir/codegen/SearchParameterRepositoryGenerator.kt @@ -0,0 +1,134 @@ +/* + * Copyright 2020 Google LLC + * + * 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. + */ + +package com.google.android.fhir.codegen + +import ca.uhn.fhir.context.FhirContext +import com.squareup.kotlinpoet.ClassName +import com.squareup.kotlinpoet.CodeBlock +import com.squareup.kotlinpoet.FileSpec +import com.squareup.kotlinpoet.FunSpec +import com.squareup.kotlinpoet.KModifier +import com.squareup.kotlinpoet.ParameterizedTypeName.Companion.parameterizedBy +import java.io.File +import java.util.Locale +import kotlin.collections.HashMap +import org.hl7.fhir.r4.model.Bundle +import org.hl7.fhir.r4.model.Enumerations +import org.hl7.fhir.r4.model.Resource +import org.hl7.fhir.r4.model.SearchParameter + +/** + * Generates the file `SearchParameterRepositoryGenerated.kt`. + * + * The search parameter definitions are in the file `codegen/src/main/res/search-parameters.json`. + * This file should be kept up-to-date with the HL7 specifications at + * `http://www.hl7.org/fhir/search-parameters.json` and the `SearchParameterRepositoryGenerated.kt` + * should be regenerated to reflect any change. + * + * To do this, replace the content of the file `codegen/src/main/res/search-parameters.json` with + * the content at `http://www.hl7.org/fhir/search-parameters.json` and run the `main` function in + * the `codegen` module. + */ +object SearchParameterRepositoryGenerator { + + private const val indexPackage = "com.google.android.fhir.index" + private const val hapiPackage = "org.hl7.fhir.r4.model" + private const val generatedClassName = "SearchParameterRepositoryGenerated" + + private val searchParamMap: HashMap = HashMap() + private val searchParamDefinitionClass = ClassName(indexPackage, "SearchParamDefinition") + + fun generate(bundle: Bundle, outputPath: String) { + for (entry in bundle.entry) { + val searchParameter = entry.resource as SearchParameter + if (searchParameter.expression.isNullOrEmpty()) continue + + for (path in getResourceToPathMap(searchParameter.expression)) { + val hashMapKey = path.key + if (!searchParamMap.containsKey(hashMapKey)) { + searchParamMap[hashMapKey] = CodeBlock.builder().add("%S -> listOf(", hashMapKey) + } + searchParamMap[hashMapKey]!!.add( + "%T(%S,%T.%L,%S),\n", + searchParamDefinitionClass, + searchParameter.name, + Enumerations.SearchParamType::class, + searchParameter.type.toCode().uppercase(Locale.ROOT), + path.value + ) + } + } + + val fileSpec = FileSpec.builder(indexPackage, generatedClassName) + + val function = + FunSpec.builder("getSearchParamList") + .addParameter("resource", Resource::class) + .returns( + ClassName("kotlin.collections", "List").parameterizedBy(searchParamDefinitionClass) + ) + .addModifiers(KModifier.INTERNAL) + .addKdoc( + "This File is Generated from com.google.android.fhir.codegen.SearchParameterRepositoryGenerator all changes to this file must be made through the aforementioned file only" + ) + .beginControlFlow("return when (resource.fhirType())") + + for (resource in searchParamMap.keys) { + val resourceClass = ClassName(hapiPackage, resource.toHapiName()) + try { + Class.forName(resourceClass.reflectionName()) + } catch (e: ClassNotFoundException) { + // TODO handle alias and name (InsurancePlan) + println("Class not found $resource ") + continue + } + function.addCode(searchParamMap[resource]!!.add(")\n").build()) + } + function.addStatement("else -> emptyList()").endControlFlow() + fileSpec.addFunction(function.build()).build().writeTo(File(outputPath)) + } + + /** + * @return the resource names mapped to their respective paths in the expression. + * + * @param expression an expression that contains the paths of a given search param + * + * This is necessary because the path expressions are not necessarily grouped by resource type + * + * For example an expression of "AllergyIntolerance.code | AllergyIntolerance.reaction.substance | + * Condition.code" will return "AllergyIntolerance" -> "AllergyIntolerance.code | + * AllergyIntolerance.reaction.substance" , "Condition" -> "Condition.code" + */ + private fun getResourceToPathMap(expression: String): Map { + return expression + .split("|") + .groupBy { splitString -> splitString.split(".").first().trim().removePrefix("(") } + .mapValues { it.value.joinToString(" | ") { join -> join.trim() } } + } + + private fun String.toHapiName() = if (this == "List") "ListResource" else this +} + +private const val inputFilePath = "codegen/src/main/res/search-parameters.json" +private const val outputFilePath = "engine/src/main/java" + +fun main() { + val sp = File(inputFilePath) + val bundle = + FhirContext.forR4().newJsonParser().parseResource(Bundle::class.java, sp.inputStream()) + SearchParameterRepositoryGenerator.generate(bundle, outputFilePath) +} diff --git a/codegen/src/main/res/search-parameters.json b/codegen/src/main/res/search-parameters.json new file mode 100644 index 0000000000..d8cb3d2f5e --- /dev/null +++ b/codegen/src/main/res/search-parameters.json @@ -0,0 +1,65408 @@ +{ + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" : "draft", + "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" + } + }] +} \ No newline at end of file diff --git a/engine/src/main/java/com/google/android/fhir/index/ResourceIndexer.kt b/engine/src/main/java/com/google/android/fhir/index/ResourceIndexer.kt index eedb7d7315..c1a6ac1c17 100644 --- a/engine/src/main/java/com/google/android/fhir/index/ResourceIndexer.kt +++ b/engine/src/main/java/com/google/android/fhir/index/ResourceIndexer.kt @@ -16,7 +16,6 @@ package com.google.android.fhir.index -import ca.uhn.fhir.model.api.annotation.SearchParamDefinition import com.google.android.fhir.ConverterException import com.google.android.fhir.UcumValue import com.google.android.fhir.UnitConverter @@ -41,6 +40,7 @@ import org.hl7.fhir.r4.model.CodeableConcept import org.hl7.fhir.r4.model.DateTimeType import org.hl7.fhir.r4.model.DateType import org.hl7.fhir.r4.model.DecimalType +import org.hl7.fhir.r4.model.Enumerations.SearchParamType import org.hl7.fhir.r4.model.HumanName import org.hl7.fhir.r4.model.ICoding import org.hl7.fhir.r4.model.Identifier @@ -54,7 +54,6 @@ import org.hl7.fhir.r4.model.Reference import org.hl7.fhir.r4.model.Resource import org.hl7.fhir.r4.model.Timing import org.hl7.fhir.r4.model.UriType -import org.hl7.fhir.r4.model.codesystems.SearchParamType import org.hl7.fhir.r4.utils.FHIRPathEngine /** @@ -70,17 +69,12 @@ internal object ResourceIndexer { private fun extractIndexValues(resource: R): ResourceIndices { val indexBuilder = ResourceIndices.Builder(resource.resourceType, resource.logicalId) - resource - .javaClass - .fields - .asSequence() - .mapNotNull { it.getAnnotation(SearchParamDefinition::class.java) } - .filter { it.path.isNotEmpty() } + getSearchParamList(resource) .map { it to fhirPathEngine.evaluate(resource, it.path) } .flatMap { pair -> pair.second.map { pair.first to it } } .forEach { pair -> val (searchParam, value) = pair - when (SearchParamType.fromCode(pair.first.type)) { + when (pair.first.type) { SearchParamType.NUMBER -> numberIndex(searchParam, value)?.also { indexBuilder.addNumberIndex(it) } SearchParamType.DATE -> @@ -353,3 +347,9 @@ internal object ResourceIndexer { */ private const val FHIR_CURRENCY_CODE_SYSTEM = "urn:iso:std:iso:4217" } + +internal data class SearchParamDefinition( + val name: String, + val type: SearchParamType, + val path: String +) diff --git a/engine/src/main/java/com/google/android/fhir/index/SearchParameterRepositoryGenerated.kt b/engine/src/main/java/com/google/android/fhir/index/SearchParameterRepositoryGenerated.kt new file mode 100644 index 0000000000..11f5b2aa16 --- /dev/null +++ b/engine/src/main/java/com/google/android/fhir/index/SearchParameterRepositoryGenerated.kt @@ -0,0 +1,7590 @@ +/* + * Copyright 2020 Google LLC + * + * 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. + */ + +package com.google.android.fhir.index + +import kotlin.collections.List +import org.hl7.fhir.r4.model.Enumerations +import org.hl7.fhir.r4.model.Resource + +/** + * This File is Generated from com.google.android.fhir.codegen.SearchParameterRepositoryGenerator + * all changes to this file must be made through the aforementioned file only + */ +internal fun getSearchParamList(resource: Resource): List = + when (resource.fhirType()) { + "Appointment" -> + listOf( + SearchParamDefinition( + "actor", + Enumerations.SearchParamType.REFERENCE, + "Appointment.participant.actor" + ), + SearchParamDefinition( + "appointment-type", + Enumerations.SearchParamType.TOKEN, + "Appointment.appointmentType" + ), + SearchParamDefinition( + "based-on", + Enumerations.SearchParamType.REFERENCE, + "Appointment.basedOn" + ), + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "Appointment.start"), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "Appointment.identifier" + ), + SearchParamDefinition( + "location", + Enumerations.SearchParamType.REFERENCE, + "Appointment.participant.actor.where(resolve() is Location)" + ), + SearchParamDefinition( + "part-status", + Enumerations.SearchParamType.TOKEN, + "Appointment.participant.status" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "Appointment.participant.actor.where(resolve() is Patient)" + ), + SearchParamDefinition( + "practitioner", + Enumerations.SearchParamType.REFERENCE, + "Appointment.participant.actor.where(resolve() is Practitioner)" + ), + SearchParamDefinition( + "reason-code", + Enumerations.SearchParamType.TOKEN, + "Appointment.reasonCode" + ), + SearchParamDefinition( + "reason-reference", + Enumerations.SearchParamType.REFERENCE, + "Appointment.reasonReference" + ), + SearchParamDefinition( + "service-category", + Enumerations.SearchParamType.TOKEN, + "Appointment.serviceCategory" + ), + SearchParamDefinition( + "service-type", + Enumerations.SearchParamType.TOKEN, + "Appointment.serviceType" + ), + SearchParamDefinition("slot", Enumerations.SearchParamType.REFERENCE, "Appointment.slot"), + SearchParamDefinition( + "specialty", + Enumerations.SearchParamType.TOKEN, + "Appointment.specialty" + ), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "Appointment.status"), + SearchParamDefinition( + "supporting-info", + Enumerations.SearchParamType.REFERENCE, + "Appointment.supportingInformation" + ), + ) + "Account" -> + listOf( + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "Account.identifier" + ), + SearchParamDefinition("name", Enumerations.SearchParamType.STRING, "Account.name"), + SearchParamDefinition("owner", Enumerations.SearchParamType.REFERENCE, "Account.owner"), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "Account.subject.where(resolve() is Patient)" + ), + SearchParamDefinition("period", Enumerations.SearchParamType.DATE, "Account.servicePeriod"), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "Account.status"), + SearchParamDefinition("subject", Enumerations.SearchParamType.REFERENCE, "Account.subject"), + SearchParamDefinition("type", Enumerations.SearchParamType.TOKEN, "Account.type"), + ) + "Invoice" -> + listOf( + SearchParamDefinition("account", Enumerations.SearchParamType.REFERENCE, "Invoice.account"), + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "Invoice.date"), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "Invoice.identifier" + ), + SearchParamDefinition("issuer", Enumerations.SearchParamType.REFERENCE, "Invoice.issuer"), + SearchParamDefinition( + "participant", + Enumerations.SearchParamType.REFERENCE, + "Invoice.participant.actor" + ), + SearchParamDefinition( + "participant-role", + Enumerations.SearchParamType.TOKEN, + "Invoice.participant.role" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "Invoice.subject.where(resolve() is Patient)" + ), + SearchParamDefinition( + "recipient", + Enumerations.SearchParamType.REFERENCE, + "Invoice.recipient" + ), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "Invoice.status"), + SearchParamDefinition("subject", Enumerations.SearchParamType.REFERENCE, "Invoice.subject"), + SearchParamDefinition( + "totalgross", + Enumerations.SearchParamType.QUANTITY, + "Invoice.totalGross" + ), + SearchParamDefinition( + "totalnet", + Enumerations.SearchParamType.QUANTITY, + "Invoice.totalNet" + ), + SearchParamDefinition("type", Enumerations.SearchParamType.TOKEN, "Invoice.type"), + ) + "EventDefinition" -> + listOf( + SearchParamDefinition( + "composed-of", + Enumerations.SearchParamType.REFERENCE, + "EventDefinition.relatedArtifact.where(type='composed-of').resource" + ), + SearchParamDefinition( + "context", + Enumerations.SearchParamType.TOKEN, + "(EventDefinition.useContext.value as CodeableConcept)" + ), + SearchParamDefinition( + "context-quantity", + Enumerations.SearchParamType.QUANTITY, + "(EventDefinition.useContext.value as Quantity) | (EventDefinition.useContext.value as Range)" + ), + SearchParamDefinition( + "context-type", + Enumerations.SearchParamType.TOKEN, + "EventDefinition.useContext.code" + ), + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "EventDefinition.date"), + SearchParamDefinition( + "depends-on", + Enumerations.SearchParamType.REFERENCE, + "EventDefinition.relatedArtifact.where(type='depends-on').resource" + ), + SearchParamDefinition( + "derived-from", + Enumerations.SearchParamType.REFERENCE, + "EventDefinition.relatedArtifact.where(type='derived-from').resource" + ), + SearchParamDefinition( + "description", + Enumerations.SearchParamType.STRING, + "EventDefinition.description" + ), + SearchParamDefinition( + "effective", + Enumerations.SearchParamType.DATE, + "EventDefinition.effectivePeriod" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "EventDefinition.identifier" + ), + SearchParamDefinition( + "jurisdiction", + Enumerations.SearchParamType.TOKEN, + "EventDefinition.jurisdiction" + ), + SearchParamDefinition("name", Enumerations.SearchParamType.STRING, "EventDefinition.name"), + SearchParamDefinition( + "predecessor", + Enumerations.SearchParamType.REFERENCE, + "EventDefinition.relatedArtifact.where(type='predecessor').resource" + ), + SearchParamDefinition( + "publisher", + Enumerations.SearchParamType.STRING, + "EventDefinition.publisher" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "EventDefinition.status" + ), + SearchParamDefinition( + "successor", + Enumerations.SearchParamType.REFERENCE, + "EventDefinition.relatedArtifact.where(type='successor').resource" + ), + SearchParamDefinition( + "title", + Enumerations.SearchParamType.STRING, + "EventDefinition.title" + ), + SearchParamDefinition("topic", Enumerations.SearchParamType.TOKEN, "EventDefinition.topic"), + SearchParamDefinition("url", Enumerations.SearchParamType.URI, "EventDefinition.url"), + SearchParamDefinition( + "version", + Enumerations.SearchParamType.TOKEN, + "EventDefinition.version" + ), + SearchParamDefinition( + "context-type-quantity", + Enumerations.SearchParamType.COMPOSITE, + "EventDefinition.useContext" + ), + SearchParamDefinition( + "context-type-value", + Enumerations.SearchParamType.COMPOSITE, + "EventDefinition.useContext" + ), + ) + "DocumentManifest" -> + listOf( + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "DocumentManifest.masterIdentifier | DocumentManifest.identifier" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "DocumentManifest.subject.where(resolve() is Patient)" + ), + SearchParamDefinition("type", Enumerations.SearchParamType.TOKEN, "DocumentManifest.type"), + SearchParamDefinition( + "author", + Enumerations.SearchParamType.REFERENCE, + "DocumentManifest.author" + ), + SearchParamDefinition( + "created", + Enumerations.SearchParamType.DATE, + "DocumentManifest.created" + ), + SearchParamDefinition( + "description", + Enumerations.SearchParamType.STRING, + "DocumentManifest.description" + ), + SearchParamDefinition( + "item", + Enumerations.SearchParamType.REFERENCE, + "DocumentManifest.content" + ), + SearchParamDefinition( + "recipient", + Enumerations.SearchParamType.REFERENCE, + "DocumentManifest.recipient" + ), + SearchParamDefinition( + "related-id", + Enumerations.SearchParamType.TOKEN, + "DocumentManifest.related.identifier" + ), + SearchParamDefinition( + "related-ref", + Enumerations.SearchParamType.REFERENCE, + "DocumentManifest.related.ref" + ), + SearchParamDefinition( + "source", + Enumerations.SearchParamType.URI, + "DocumentManifest.source" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "DocumentManifest.status" + ), + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "DocumentManifest.subject" + ), + ) + "MessageDefinition" -> + listOf( + SearchParamDefinition( + "context", + Enumerations.SearchParamType.TOKEN, + "(MessageDefinition.useContext.value as CodeableConcept)" + ), + SearchParamDefinition( + "context-quantity", + Enumerations.SearchParamType.QUANTITY, + "(MessageDefinition.useContext.value as Quantity) | (MessageDefinition.useContext.value as Range)" + ), + SearchParamDefinition( + "context-type", + Enumerations.SearchParamType.TOKEN, + "MessageDefinition.useContext.code" + ), + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "MessageDefinition.date"), + SearchParamDefinition( + "description", + Enumerations.SearchParamType.STRING, + "MessageDefinition.description" + ), + SearchParamDefinition( + "jurisdiction", + Enumerations.SearchParamType.TOKEN, + "MessageDefinition.jurisdiction" + ), + SearchParamDefinition( + "name", + Enumerations.SearchParamType.STRING, + "MessageDefinition.name" + ), + SearchParamDefinition( + "publisher", + Enumerations.SearchParamType.STRING, + "MessageDefinition.publisher" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "MessageDefinition.status" + ), + SearchParamDefinition( + "title", + Enumerations.SearchParamType.STRING, + "MessageDefinition.title" + ), + SearchParamDefinition("url", Enumerations.SearchParamType.URI, "MessageDefinition.url"), + SearchParamDefinition( + "version", + Enumerations.SearchParamType.TOKEN, + "MessageDefinition.version" + ), + SearchParamDefinition( + "context-type-quantity", + Enumerations.SearchParamType.COMPOSITE, + "MessageDefinition.useContext" + ), + SearchParamDefinition( + "context-type-value", + Enumerations.SearchParamType.COMPOSITE, + "MessageDefinition.useContext" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "MessageDefinition.identifier" + ), + SearchParamDefinition( + "category", + Enumerations.SearchParamType.TOKEN, + "MessageDefinition.category" + ), + SearchParamDefinition( + "event", + Enumerations.SearchParamType.TOKEN, + "MessageDefinition.event" + ), + SearchParamDefinition( + "focus", + Enumerations.SearchParamType.TOKEN, + "MessageDefinition.focus.code" + ), + SearchParamDefinition( + "parent", + Enumerations.SearchParamType.REFERENCE, + "MessageDefinition.parent" + ), + ) + "Goal" -> + listOf( + SearchParamDefinition("identifier", Enumerations.SearchParamType.TOKEN, "Goal.identifier"), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "Goal.subject.where(resolve() is Patient)" + ), + SearchParamDefinition( + "achievement-status", + Enumerations.SearchParamType.TOKEN, + "Goal.achievementStatus" + ), + SearchParamDefinition("category", Enumerations.SearchParamType.TOKEN, "Goal.category"), + SearchParamDefinition( + "lifecycle-status", + Enumerations.SearchParamType.TOKEN, + "Goal.lifecycleStatus" + ), + SearchParamDefinition( + "start-date", + Enumerations.SearchParamType.DATE, + "(Goal.start as date)" + ), + SearchParamDefinition("subject", Enumerations.SearchParamType.REFERENCE, "Goal.subject"), + SearchParamDefinition( + "target-date", + Enumerations.SearchParamType.DATE, + "(Goal.target.due as date)" + ), + ) + "MedicinalProductPackaged" -> + listOf( + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "MedicinalProductPackaged.identifier" + ), + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "MedicinalProductPackaged.subject" + ), + ) + "Endpoint" -> + listOf( + SearchParamDefinition( + "connection-type", + Enumerations.SearchParamType.TOKEN, + "Endpoint.connectionType" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "Endpoint.identifier" + ), + SearchParamDefinition("name", Enumerations.SearchParamType.STRING, "Endpoint.name"), + SearchParamDefinition( + "organization", + Enumerations.SearchParamType.REFERENCE, + "Endpoint.managingOrganization" + ), + SearchParamDefinition( + "payload-type", + Enumerations.SearchParamType.TOKEN, + "Endpoint.payloadType" + ), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "Endpoint.status"), + ) + "EnrollmentRequest" -> + listOf( + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "EnrollmentRequest.identifier" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "EnrollmentRequest.candidate" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "EnrollmentRequest.status" + ), + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "EnrollmentRequest.candidate" + ), + ) + "Consent" -> + listOf( + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "Consent.dateTime"), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "Consent.identifier" + ), + SearchParamDefinition("patient", Enumerations.SearchParamType.REFERENCE, "Consent.patient"), + SearchParamDefinition( + "action", + Enumerations.SearchParamType.TOKEN, + "Consent.provision.action" + ), + SearchParamDefinition( + "actor", + Enumerations.SearchParamType.REFERENCE, + "Consent.provision.actor.reference" + ), + SearchParamDefinition("category", Enumerations.SearchParamType.TOKEN, "Consent.category"), + SearchParamDefinition( + "consentor", + Enumerations.SearchParamType.REFERENCE, + "Consent.performer" + ), + SearchParamDefinition( + "data", + Enumerations.SearchParamType.REFERENCE, + "Consent.provision.data.reference" + ), + SearchParamDefinition( + "organization", + Enumerations.SearchParamType.REFERENCE, + "Consent.organization" + ), + SearchParamDefinition( + "period", + Enumerations.SearchParamType.DATE, + "Consent.provision.period" + ), + SearchParamDefinition( + "purpose", + Enumerations.SearchParamType.TOKEN, + "Consent.provision.purpose" + ), + SearchParamDefinition("scope", Enumerations.SearchParamType.TOKEN, "Consent.scope"), + SearchParamDefinition( + "security-label", + Enumerations.SearchParamType.TOKEN, + "Consent.provision.securityLabel" + ), + SearchParamDefinition( + "source-reference", + Enumerations.SearchParamType.REFERENCE, + "Consent.source" + ), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "Consent.status"), + ) + "Medication" -> + listOf( + SearchParamDefinition("code", Enumerations.SearchParamType.TOKEN, "Medication.code"), + SearchParamDefinition( + "expiration-date", + Enumerations.SearchParamType.DATE, + "Medication.batch.expirationDate" + ), + SearchParamDefinition("form", Enumerations.SearchParamType.TOKEN, "Medication.form"), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "Medication.identifier" + ), + SearchParamDefinition( + "ingredient", + Enumerations.SearchParamType.REFERENCE, + "(Medication.ingredient.item as Reference)" + ), + SearchParamDefinition( + "ingredient-code", + Enumerations.SearchParamType.TOKEN, + "(Medication.ingredient.item as CodeableConcept)" + ), + SearchParamDefinition( + "lot-number", + Enumerations.SearchParamType.TOKEN, + "Medication.batch.lotNumber" + ), + SearchParamDefinition( + "manufacturer", + Enumerations.SearchParamType.REFERENCE, + "Medication.manufacturer" + ), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "Medication.status"), + ) + "CapabilityStatement" -> + listOf( + SearchParamDefinition( + "context", + Enumerations.SearchParamType.TOKEN, + "(CapabilityStatement.useContext.value as CodeableConcept)" + ), + SearchParamDefinition( + "context-quantity", + Enumerations.SearchParamType.QUANTITY, + "(CapabilityStatement.useContext.value as Quantity) | (CapabilityStatement.useContext.value as Range)" + ), + SearchParamDefinition( + "context-type", + Enumerations.SearchParamType.TOKEN, + "CapabilityStatement.useContext.code" + ), + SearchParamDefinition( + "date", + Enumerations.SearchParamType.DATE, + "CapabilityStatement.date" + ), + SearchParamDefinition( + "description", + Enumerations.SearchParamType.STRING, + "CapabilityStatement.description" + ), + SearchParamDefinition( + "fhirversion", + Enumerations.SearchParamType.TOKEN, + "CapabilityStatement.version" + ), + SearchParamDefinition( + "format", + Enumerations.SearchParamType.TOKEN, + "CapabilityStatement.format" + ), + SearchParamDefinition( + "guide", + Enumerations.SearchParamType.REFERENCE, + "CapabilityStatement.implementationGuide" + ), + SearchParamDefinition( + "jurisdiction", + Enumerations.SearchParamType.TOKEN, + "CapabilityStatement.jurisdiction" + ), + SearchParamDefinition( + "mode", + Enumerations.SearchParamType.TOKEN, + "CapabilityStatement.rest.mode" + ), + SearchParamDefinition( + "name", + Enumerations.SearchParamType.STRING, + "CapabilityStatement.name" + ), + SearchParamDefinition( + "publisher", + Enumerations.SearchParamType.STRING, + "CapabilityStatement.publisher" + ), + SearchParamDefinition( + "resource", + Enumerations.SearchParamType.TOKEN, + "CapabilityStatement.rest.resource.type" + ), + SearchParamDefinition( + "resource-profile", + Enumerations.SearchParamType.REFERENCE, + "CapabilityStatement.rest.resource.profile" + ), + SearchParamDefinition( + "security-service", + Enumerations.SearchParamType.TOKEN, + "CapabilityStatement.rest.security.service" + ), + SearchParamDefinition( + "software", + Enumerations.SearchParamType.STRING, + "CapabilityStatement.software.name" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "CapabilityStatement.status" + ), + SearchParamDefinition( + "supported-profile", + Enumerations.SearchParamType.REFERENCE, + "CapabilityStatement.rest.resource.supportedProfile" + ), + SearchParamDefinition( + "title", + Enumerations.SearchParamType.STRING, + "CapabilityStatement.title" + ), + SearchParamDefinition("url", Enumerations.SearchParamType.URI, "CapabilityStatement.url"), + SearchParamDefinition( + "version", + Enumerations.SearchParamType.TOKEN, + "CapabilityStatement.version" + ), + SearchParamDefinition( + "context-type-quantity", + Enumerations.SearchParamType.COMPOSITE, + "CapabilityStatement.useContext" + ), + SearchParamDefinition( + "context-type-value", + Enumerations.SearchParamType.COMPOSITE, + "CapabilityStatement.useContext" + ), + ) + "Measure" -> + listOf( + SearchParamDefinition( + "composed-of", + Enumerations.SearchParamType.REFERENCE, + "Measure.relatedArtifact.where(type='composed-of').resource" + ), + SearchParamDefinition( + "context", + Enumerations.SearchParamType.TOKEN, + "(Measure.useContext.value as CodeableConcept)" + ), + SearchParamDefinition( + "context-quantity", + Enumerations.SearchParamType.QUANTITY, + "(Measure.useContext.value as Quantity) | (Measure.useContext.value as Range)" + ), + SearchParamDefinition( + "context-type", + Enumerations.SearchParamType.TOKEN, + "Measure.useContext.code" + ), + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "Measure.date"), + SearchParamDefinition( + "depends-on", + Enumerations.SearchParamType.REFERENCE, + "Measure.relatedArtifact.where(type='depends-on').resource | Measure.library" + ), + SearchParamDefinition( + "derived-from", + Enumerations.SearchParamType.REFERENCE, + "Measure.relatedArtifact.where(type='derived-from').resource" + ), + SearchParamDefinition( + "description", + Enumerations.SearchParamType.STRING, + "Measure.description" + ), + SearchParamDefinition( + "effective", + Enumerations.SearchParamType.DATE, + "Measure.effectivePeriod" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "Measure.identifier" + ), + SearchParamDefinition( + "jurisdiction", + Enumerations.SearchParamType.TOKEN, + "Measure.jurisdiction" + ), + SearchParamDefinition("name", Enumerations.SearchParamType.STRING, "Measure.name"), + SearchParamDefinition( + "predecessor", + Enumerations.SearchParamType.REFERENCE, + "Measure.relatedArtifact.where(type='predecessor').resource" + ), + SearchParamDefinition( + "publisher", + Enumerations.SearchParamType.STRING, + "Measure.publisher" + ), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "Measure.status"), + SearchParamDefinition( + "successor", + Enumerations.SearchParamType.REFERENCE, + "Measure.relatedArtifact.where(type='successor').resource" + ), + SearchParamDefinition("title", Enumerations.SearchParamType.STRING, "Measure.title"), + SearchParamDefinition("topic", Enumerations.SearchParamType.TOKEN, "Measure.topic"), + SearchParamDefinition("url", Enumerations.SearchParamType.URI, "Measure.url"), + SearchParamDefinition("version", Enumerations.SearchParamType.TOKEN, "Measure.version"), + SearchParamDefinition( + "context-type-quantity", + Enumerations.SearchParamType.COMPOSITE, + "Measure.useContext" + ), + SearchParamDefinition( + "context-type-value", + Enumerations.SearchParamType.COMPOSITE, + "Measure.useContext" + ), + ) + "ResearchSubject" -> + listOf( + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "ResearchSubject.period"), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "ResearchSubject.identifier" + ), + SearchParamDefinition( + "individual", + Enumerations.SearchParamType.REFERENCE, + "ResearchSubject.individual" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "ResearchSubject.individual" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "ResearchSubject.status" + ), + SearchParamDefinition( + "study", + Enumerations.SearchParamType.REFERENCE, + "ResearchSubject.study" + ), + ) + "Subscription" -> + listOf( + SearchParamDefinition( + "contact", + Enumerations.SearchParamType.TOKEN, + "Subscription.contact" + ), + SearchParamDefinition( + "criteria", + Enumerations.SearchParamType.STRING, + "Subscription.criteria" + ), + SearchParamDefinition( + "payload", + Enumerations.SearchParamType.TOKEN, + "Subscription.channel.payload" + ), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "Subscription.status"), + SearchParamDefinition( + "type", + Enumerations.SearchParamType.TOKEN, + "Subscription.channel.type" + ), + SearchParamDefinition( + "url", + Enumerations.SearchParamType.URI, + "Subscription.channel.endpoint" + ), + ) + "DocumentReference" -> + listOf( + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "DocumentReference.masterIdentifier | DocumentReference.identifier" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "DocumentReference.subject.where(resolve() is Patient)" + ), + SearchParamDefinition("type", Enumerations.SearchParamType.TOKEN, "DocumentReference.type"), + SearchParamDefinition( + "encounter", + Enumerations.SearchParamType.REFERENCE, + "DocumentReference.context.encounter" + ), + SearchParamDefinition( + "authenticator", + Enumerations.SearchParamType.REFERENCE, + "DocumentReference.authenticator" + ), + SearchParamDefinition( + "author", + Enumerations.SearchParamType.REFERENCE, + "DocumentReference.author" + ), + SearchParamDefinition( + "category", + Enumerations.SearchParamType.TOKEN, + "DocumentReference.category" + ), + SearchParamDefinition( + "contenttype", + Enumerations.SearchParamType.TOKEN, + "DocumentReference.content.attachment.contentType" + ), + SearchParamDefinition( + "custodian", + Enumerations.SearchParamType.REFERENCE, + "DocumentReference.custodian" + ), + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "DocumentReference.date"), + SearchParamDefinition( + "description", + Enumerations.SearchParamType.STRING, + "DocumentReference.description" + ), + SearchParamDefinition( + "event", + Enumerations.SearchParamType.TOKEN, + "DocumentReference.context.event" + ), + SearchParamDefinition( + "facility", + Enumerations.SearchParamType.TOKEN, + "DocumentReference.context.facilityType" + ), + SearchParamDefinition( + "format", + Enumerations.SearchParamType.TOKEN, + "DocumentReference.content.format" + ), + SearchParamDefinition( + "language", + Enumerations.SearchParamType.TOKEN, + "DocumentReference.content.attachment.language" + ), + SearchParamDefinition( + "location", + Enumerations.SearchParamType.URI, + "DocumentReference.content.attachment.url" + ), + SearchParamDefinition( + "period", + Enumerations.SearchParamType.DATE, + "DocumentReference.context.period" + ), + SearchParamDefinition( + "related", + Enumerations.SearchParamType.REFERENCE, + "DocumentReference.context.related" + ), + SearchParamDefinition( + "relatesto", + Enumerations.SearchParamType.REFERENCE, + "DocumentReference.relatesTo.target" + ), + SearchParamDefinition( + "relation", + Enumerations.SearchParamType.TOKEN, + "DocumentReference.relatesTo.code" + ), + SearchParamDefinition( + "security-label", + Enumerations.SearchParamType.TOKEN, + "DocumentReference.securityLabel" + ), + SearchParamDefinition( + "setting", + Enumerations.SearchParamType.TOKEN, + "DocumentReference.context.practiceSetting" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "DocumentReference.status" + ), + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "DocumentReference.subject" + ), + SearchParamDefinition( + "relationship", + Enumerations.SearchParamType.COMPOSITE, + "DocumentReference.relatesTo" + ), + ) + "GraphDefinition" -> + listOf( + SearchParamDefinition( + "context", + Enumerations.SearchParamType.TOKEN, + "(GraphDefinition.useContext.value as CodeableConcept)" + ), + SearchParamDefinition( + "context-quantity", + Enumerations.SearchParamType.QUANTITY, + "(GraphDefinition.useContext.value as Quantity) | (GraphDefinition.useContext.value as Range)" + ), + SearchParamDefinition( + "context-type", + Enumerations.SearchParamType.TOKEN, + "GraphDefinition.useContext.code" + ), + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "GraphDefinition.date"), + SearchParamDefinition( + "description", + Enumerations.SearchParamType.STRING, + "GraphDefinition.description" + ), + SearchParamDefinition( + "jurisdiction", + Enumerations.SearchParamType.TOKEN, + "GraphDefinition.jurisdiction" + ), + SearchParamDefinition("name", Enumerations.SearchParamType.STRING, "GraphDefinition.name"), + SearchParamDefinition( + "publisher", + Enumerations.SearchParamType.STRING, + "GraphDefinition.publisher" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "GraphDefinition.status" + ), + SearchParamDefinition("url", Enumerations.SearchParamType.URI, "GraphDefinition.url"), + SearchParamDefinition( + "version", + Enumerations.SearchParamType.TOKEN, + "GraphDefinition.version" + ), + SearchParamDefinition( + "context-type-quantity", + Enumerations.SearchParamType.COMPOSITE, + "GraphDefinition.useContext" + ), + SearchParamDefinition( + "context-type-value", + Enumerations.SearchParamType.COMPOSITE, + "GraphDefinition.useContext" + ), + SearchParamDefinition("start", Enumerations.SearchParamType.TOKEN, "GraphDefinition.start"), + ) + "CoverageEligibilityResponse" -> + listOf( + SearchParamDefinition( + "created", + Enumerations.SearchParamType.DATE, + "CoverageEligibilityResponse.created" + ), + SearchParamDefinition( + "disposition", + Enumerations.SearchParamType.STRING, + "CoverageEligibilityResponse.disposition" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "CoverageEligibilityResponse.identifier" + ), + SearchParamDefinition( + "insurer", + Enumerations.SearchParamType.REFERENCE, + "CoverageEligibilityResponse.insurer" + ), + SearchParamDefinition( + "outcome", + Enumerations.SearchParamType.TOKEN, + "CoverageEligibilityResponse.outcome" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "CoverageEligibilityResponse.patient" + ), + SearchParamDefinition( + "request", + Enumerations.SearchParamType.REFERENCE, + "CoverageEligibilityResponse.request" + ), + SearchParamDefinition( + "requestor", + Enumerations.SearchParamType.REFERENCE, + "CoverageEligibilityResponse.requestor" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "CoverageEligibilityResponse.status" + ), + ) + "MeasureReport" -> + listOf( + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "MeasureReport.date"), + SearchParamDefinition( + "evaluated-resource", + Enumerations.SearchParamType.REFERENCE, + "MeasureReport.evaluatedResource" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "MeasureReport.identifier" + ), + SearchParamDefinition( + "measure", + Enumerations.SearchParamType.REFERENCE, + "MeasureReport.measure" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "MeasureReport.subject.where(resolve() is Patient)" + ), + SearchParamDefinition("period", Enumerations.SearchParamType.DATE, "MeasureReport.period"), + SearchParamDefinition( + "reporter", + Enumerations.SearchParamType.REFERENCE, + "MeasureReport.reporter" + ), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "MeasureReport.status"), + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "MeasureReport.subject" + ), + ) + "PractitionerRole" -> + listOf( + SearchParamDefinition( + "email", + Enumerations.SearchParamType.TOKEN, + "PractitionerRole.telecom.where(system='email')" + ), + SearchParamDefinition( + "phone", + Enumerations.SearchParamType.TOKEN, + "PractitionerRole.telecom.where(system='phone')" + ), + SearchParamDefinition( + "telecom", + Enumerations.SearchParamType.TOKEN, + "PractitionerRole.telecom" + ), + SearchParamDefinition( + "active", + Enumerations.SearchParamType.TOKEN, + "PractitionerRole.active" + ), + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "PractitionerRole.period"), + SearchParamDefinition( + "endpoint", + Enumerations.SearchParamType.REFERENCE, + "PractitionerRole.endpoint" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "PractitionerRole.identifier" + ), + SearchParamDefinition( + "location", + Enumerations.SearchParamType.REFERENCE, + "PractitionerRole.location" + ), + SearchParamDefinition( + "organization", + Enumerations.SearchParamType.REFERENCE, + "PractitionerRole.organization" + ), + SearchParamDefinition( + "practitioner", + Enumerations.SearchParamType.REFERENCE, + "PractitionerRole.practitioner" + ), + SearchParamDefinition("role", Enumerations.SearchParamType.TOKEN, "PractitionerRole.code"), + SearchParamDefinition( + "service", + Enumerations.SearchParamType.REFERENCE, + "PractitionerRole.healthcareService" + ), + SearchParamDefinition( + "specialty", + Enumerations.SearchParamType.TOKEN, + "PractitionerRole.specialty" + ), + ) + "ServiceRequest" -> + listOf( + SearchParamDefinition("code", Enumerations.SearchParamType.TOKEN, "ServiceRequest.code"), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "ServiceRequest.identifier" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "ServiceRequest.subject.where(resolve() is Patient)" + ), + SearchParamDefinition( + "encounter", + Enumerations.SearchParamType.REFERENCE, + "ServiceRequest.encounter" + ), + SearchParamDefinition( + "authored", + Enumerations.SearchParamType.DATE, + "ServiceRequest.authoredOn" + ), + SearchParamDefinition( + "based-on", + Enumerations.SearchParamType.REFERENCE, + "ServiceRequest.basedOn" + ), + SearchParamDefinition( + "body-site", + Enumerations.SearchParamType.TOKEN, + "ServiceRequest.bodySite" + ), + SearchParamDefinition( + "category", + Enumerations.SearchParamType.TOKEN, + "ServiceRequest.category" + ), + SearchParamDefinition( + "instantiates-canonical", + Enumerations.SearchParamType.REFERENCE, + "ServiceRequest.instantiatesCanonical" + ), + SearchParamDefinition( + "instantiates-uri", + Enumerations.SearchParamType.URI, + "ServiceRequest.instantiatesUri" + ), + SearchParamDefinition( + "intent", + Enumerations.SearchParamType.TOKEN, + "ServiceRequest.intent" + ), + SearchParamDefinition( + "occurrence", + Enumerations.SearchParamType.DATE, + "ServiceRequest.occurrence" + ), + SearchParamDefinition( + "performer", + Enumerations.SearchParamType.REFERENCE, + "ServiceRequest.performer" + ), + SearchParamDefinition( + "performer-type", + Enumerations.SearchParamType.TOKEN, + "ServiceRequest.performerType" + ), + SearchParamDefinition( + "priority", + Enumerations.SearchParamType.TOKEN, + "ServiceRequest.priority" + ), + SearchParamDefinition( + "replaces", + Enumerations.SearchParamType.REFERENCE, + "ServiceRequest.replaces" + ), + SearchParamDefinition( + "requester", + Enumerations.SearchParamType.REFERENCE, + "ServiceRequest.requester" + ), + SearchParamDefinition( + "requisition", + Enumerations.SearchParamType.TOKEN, + "ServiceRequest.requisition" + ), + SearchParamDefinition( + "specimen", + Enumerations.SearchParamType.REFERENCE, + "ServiceRequest.specimen" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "ServiceRequest.status" + ), + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "ServiceRequest.subject" + ), + ) + "RelatedPerson" -> + listOf( + SearchParamDefinition( + "address", + Enumerations.SearchParamType.STRING, + "RelatedPerson.address" + ), + SearchParamDefinition( + "address-city", + Enumerations.SearchParamType.STRING, + "RelatedPerson.address.city" + ), + SearchParamDefinition( + "address-country", + Enumerations.SearchParamType.STRING, + "RelatedPerson.address.country" + ), + SearchParamDefinition( + "address-postalcode", + Enumerations.SearchParamType.STRING, + "RelatedPerson.address.postalCode" + ), + SearchParamDefinition( + "address-state", + Enumerations.SearchParamType.STRING, + "RelatedPerson.address.state" + ), + SearchParamDefinition( + "address-use", + Enumerations.SearchParamType.TOKEN, + "RelatedPerson.address.use" + ), + SearchParamDefinition( + "birthdate", + Enumerations.SearchParamType.DATE, + "RelatedPerson.birthDate" + ), + SearchParamDefinition( + "email", + Enumerations.SearchParamType.TOKEN, + "RelatedPerson.telecom.where(system='email')" + ), + SearchParamDefinition("gender", Enumerations.SearchParamType.TOKEN, "RelatedPerson.gender"), + SearchParamDefinition( + "phone", + Enumerations.SearchParamType.TOKEN, + "RelatedPerson.telecom.where(system='phone')" + ), + SearchParamDefinition( + "phonetic", + Enumerations.SearchParamType.STRING, + "RelatedPerson.name" + ), + SearchParamDefinition( + "telecom", + Enumerations.SearchParamType.TOKEN, + "RelatedPerson.telecom" + ), + SearchParamDefinition("active", Enumerations.SearchParamType.TOKEN, "RelatedPerson.active"), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "RelatedPerson.identifier" + ), + SearchParamDefinition("name", Enumerations.SearchParamType.STRING, "RelatedPerson.name"), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "RelatedPerson.patient" + ), + SearchParamDefinition( + "relationship", + Enumerations.SearchParamType.TOKEN, + "RelatedPerson.relationship" + ), + ) + "SupplyRequest" -> + listOf( + SearchParamDefinition( + "date", + Enumerations.SearchParamType.DATE, + "SupplyRequest.authoredOn" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "SupplyRequest.identifier" + ), + SearchParamDefinition( + "category", + Enumerations.SearchParamType.TOKEN, + "SupplyRequest.category" + ), + SearchParamDefinition( + "requester", + Enumerations.SearchParamType.REFERENCE, + "SupplyRequest.requester" + ), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "SupplyRequest.status"), + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "SupplyRequest.deliverTo" + ), + SearchParamDefinition( + "supplier", + Enumerations.SearchParamType.REFERENCE, + "SupplyRequest.supplier" + ), + ) + "Practitioner" -> + listOf( + SearchParamDefinition( + "address", + Enumerations.SearchParamType.STRING, + "Practitioner.address" + ), + SearchParamDefinition( + "address-city", + Enumerations.SearchParamType.STRING, + "Practitioner.address.city" + ), + SearchParamDefinition( + "address-country", + Enumerations.SearchParamType.STRING, + "Practitioner.address.country" + ), + SearchParamDefinition( + "address-postalcode", + Enumerations.SearchParamType.STRING, + "Practitioner.address.postalCode" + ), + SearchParamDefinition( + "address-state", + Enumerations.SearchParamType.STRING, + "Practitioner.address.state" + ), + SearchParamDefinition( + "address-use", + Enumerations.SearchParamType.TOKEN, + "Practitioner.address.use" + ), + SearchParamDefinition( + "email", + Enumerations.SearchParamType.TOKEN, + "Practitioner.telecom.where(system='email')" + ), + SearchParamDefinition( + "family", + Enumerations.SearchParamType.STRING, + "Practitioner.name.family" + ), + SearchParamDefinition("gender", Enumerations.SearchParamType.TOKEN, "Practitioner.gender"), + SearchParamDefinition( + "given", + Enumerations.SearchParamType.STRING, + "Practitioner.name.given" + ), + SearchParamDefinition( + "phone", + Enumerations.SearchParamType.TOKEN, + "Practitioner.telecom.where(system='phone')" + ), + SearchParamDefinition("phonetic", Enumerations.SearchParamType.STRING, "Practitioner.name"), + SearchParamDefinition( + "telecom", + Enumerations.SearchParamType.TOKEN, + "Practitioner.telecom" + ), + SearchParamDefinition("active", Enumerations.SearchParamType.TOKEN, "Practitioner.active"), + SearchParamDefinition( + "communication", + Enumerations.SearchParamType.TOKEN, + "Practitioner.communication" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "Practitioner.identifier" + ), + SearchParamDefinition("name", Enumerations.SearchParamType.STRING, "Practitioner.name"), + ) + "VerificationResult" -> + listOf( + SearchParamDefinition( + "target", + Enumerations.SearchParamType.REFERENCE, + "VerificationResult.target" + ), + ) + "BodyStructure" -> + listOf( + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "BodyStructure.identifier" + ), + SearchParamDefinition( + "location", + Enumerations.SearchParamType.TOKEN, + "BodyStructure.location" + ), + SearchParamDefinition( + "morphology", + Enumerations.SearchParamType.TOKEN, + "BodyStructure.morphology" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "BodyStructure.patient" + ), + ) + "Slot" -> + listOf( + SearchParamDefinition( + "appointment-type", + Enumerations.SearchParamType.TOKEN, + "Slot.appointmentType" + ), + SearchParamDefinition("identifier", Enumerations.SearchParamType.TOKEN, "Slot.identifier"), + SearchParamDefinition("schedule", Enumerations.SearchParamType.REFERENCE, "Slot.schedule"), + SearchParamDefinition( + "service-category", + Enumerations.SearchParamType.TOKEN, + "Slot.serviceCategory" + ), + SearchParamDefinition( + "service-type", + Enumerations.SearchParamType.TOKEN, + "Slot.serviceType" + ), + SearchParamDefinition("specialty", Enumerations.SearchParamType.TOKEN, "Slot.specialty"), + SearchParamDefinition("start", Enumerations.SearchParamType.DATE, "Slot.start"), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "Slot.status"), + ) + "Contract" -> + listOf( + SearchParamDefinition( + "authority", + Enumerations.SearchParamType.REFERENCE, + "Contract.authority" + ), + SearchParamDefinition("domain", Enumerations.SearchParamType.REFERENCE, "Contract.domain"), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "Contract.identifier" + ), + SearchParamDefinition( + "instantiates", + Enumerations.SearchParamType.URI, + "Contract.instantiatesUri" + ), + SearchParamDefinition("issued", Enumerations.SearchParamType.DATE, "Contract.issued"), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "Contract.subject.where(resolve() is Patient)" + ), + SearchParamDefinition( + "signer", + Enumerations.SearchParamType.REFERENCE, + "Contract.signer.party" + ), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "Contract.status"), + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "Contract.subject" + ), + SearchParamDefinition("url", Enumerations.SearchParamType.URI, "Contract.url"), + ) + "Person" -> + listOf( + SearchParamDefinition("address", Enumerations.SearchParamType.STRING, "Person.address"), + SearchParamDefinition( + "address-city", + Enumerations.SearchParamType.STRING, + "Person.address.city" + ), + SearchParamDefinition( + "address-country", + Enumerations.SearchParamType.STRING, + "Person.address.country" + ), + SearchParamDefinition( + "address-postalcode", + Enumerations.SearchParamType.STRING, + "Person.address.postalCode" + ), + SearchParamDefinition( + "address-state", + Enumerations.SearchParamType.STRING, + "Person.address.state" + ), + SearchParamDefinition( + "address-use", + Enumerations.SearchParamType.TOKEN, + "Person.address.use" + ), + SearchParamDefinition("birthdate", Enumerations.SearchParamType.DATE, "Person.birthDate"), + SearchParamDefinition( + "email", + Enumerations.SearchParamType.TOKEN, + "Person.telecom.where(system='email')" + ), + SearchParamDefinition("gender", Enumerations.SearchParamType.TOKEN, "Person.gender"), + SearchParamDefinition( + "phone", + Enumerations.SearchParamType.TOKEN, + "Person.telecom.where(system='phone')" + ), + SearchParamDefinition("phonetic", Enumerations.SearchParamType.STRING, "Person.name"), + SearchParamDefinition("telecom", Enumerations.SearchParamType.TOKEN, "Person.telecom"), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "Person.identifier" + ), + SearchParamDefinition("link", Enumerations.SearchParamType.REFERENCE, "Person.link.target"), + SearchParamDefinition("name", Enumerations.SearchParamType.STRING, "Person.name"), + SearchParamDefinition( + "organization", + Enumerations.SearchParamType.REFERENCE, + "Person.managingOrganization" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "Person.link.target.where(resolve() is Patient)" + ), + SearchParamDefinition( + "practitioner", + Enumerations.SearchParamType.REFERENCE, + "Person.link.target.where(resolve() is Practitioner)" + ), + SearchParamDefinition( + "relatedperson", + Enumerations.SearchParamType.REFERENCE, + "Person.link.target.where(resolve() is RelatedPerson)" + ), + ) + "RiskAssessment" -> + listOf( + SearchParamDefinition( + "date", + Enumerations.SearchParamType.DATE, + "(RiskAssessment.occurrence as dateTime)" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "RiskAssessment.identifier" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "RiskAssessment.subject.where(resolve() is Patient)" + ), + SearchParamDefinition( + "encounter", + Enumerations.SearchParamType.REFERENCE, + "RiskAssessment.encounter" + ), + SearchParamDefinition( + "condition", + Enumerations.SearchParamType.REFERENCE, + "RiskAssessment.condition" + ), + SearchParamDefinition( + "method", + Enumerations.SearchParamType.TOKEN, + "RiskAssessment.method" + ), + SearchParamDefinition( + "performer", + Enumerations.SearchParamType.REFERENCE, + "RiskAssessment.performer" + ), + SearchParamDefinition( + "probability", + Enumerations.SearchParamType.NUMBER, + "RiskAssessment.prediction.probability" + ), + SearchParamDefinition( + "risk", + Enumerations.SearchParamType.TOKEN, + "RiskAssessment.prediction.qualitativeRisk" + ), + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "RiskAssessment.subject" + ), + ) + "Group" -> + listOf( + SearchParamDefinition("actual", Enumerations.SearchParamType.TOKEN, "Group.actual"), + SearchParamDefinition( + "characteristic", + Enumerations.SearchParamType.TOKEN, + "Group.characteristic.code" + ), + SearchParamDefinition("code", Enumerations.SearchParamType.TOKEN, "Group.code"), + SearchParamDefinition( + "exclude", + Enumerations.SearchParamType.TOKEN, + "Group.characteristic.exclude" + ), + SearchParamDefinition("identifier", Enumerations.SearchParamType.TOKEN, "Group.identifier"), + SearchParamDefinition( + "managing-entity", + Enumerations.SearchParamType.REFERENCE, + "Group.managingEntity" + ), + SearchParamDefinition( + "member", + Enumerations.SearchParamType.REFERENCE, + "Group.member.entity" + ), + SearchParamDefinition("type", Enumerations.SearchParamType.TOKEN, "Group.type"), + SearchParamDefinition( + "value", + Enumerations.SearchParamType.TOKEN, + "(Group.characteristic.value as CodeableConcept) | (Group.characteristic.value as boolean)" + ), + SearchParamDefinition( + "characteristic-value", + Enumerations.SearchParamType.COMPOSITE, + "Group.characteristic" + ), + ) + "PaymentNotice" -> + listOf( + SearchParamDefinition( + "created", + Enumerations.SearchParamType.DATE, + "PaymentNotice.created" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "PaymentNotice.identifier" + ), + SearchParamDefinition( + "payment-status", + Enumerations.SearchParamType.TOKEN, + "PaymentNotice.paymentStatus" + ), + SearchParamDefinition( + "provider", + Enumerations.SearchParamType.REFERENCE, + "PaymentNotice.provider" + ), + SearchParamDefinition( + "request", + Enumerations.SearchParamType.REFERENCE, + "PaymentNotice.request" + ), + SearchParamDefinition( + "response", + Enumerations.SearchParamType.REFERENCE, + "PaymentNotice.response" + ), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "PaymentNotice.status"), + ) + "ResearchDefinition" -> + listOf( + SearchParamDefinition( + "composed-of", + Enumerations.SearchParamType.REFERENCE, + "ResearchDefinition.relatedArtifact.where(type='composed-of').resource" + ), + SearchParamDefinition( + "context", + Enumerations.SearchParamType.TOKEN, + "(ResearchDefinition.useContext.value as CodeableConcept)" + ), + SearchParamDefinition( + "context-quantity", + Enumerations.SearchParamType.QUANTITY, + "(ResearchDefinition.useContext.value as Quantity) | (ResearchDefinition.useContext.value as Range)" + ), + SearchParamDefinition( + "context-type", + Enumerations.SearchParamType.TOKEN, + "ResearchDefinition.useContext.code" + ), + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "ResearchDefinition.date"), + SearchParamDefinition( + "depends-on", + Enumerations.SearchParamType.REFERENCE, + "ResearchDefinition.relatedArtifact.where(type='depends-on').resource | ResearchDefinition.library" + ), + SearchParamDefinition( + "derived-from", + Enumerations.SearchParamType.REFERENCE, + "ResearchDefinition.relatedArtifact.where(type='derived-from').resource" + ), + SearchParamDefinition( + "description", + Enumerations.SearchParamType.STRING, + "ResearchDefinition.description" + ), + SearchParamDefinition( + "effective", + Enumerations.SearchParamType.DATE, + "ResearchDefinition.effectivePeriod" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "ResearchDefinition.identifier" + ), + SearchParamDefinition( + "jurisdiction", + Enumerations.SearchParamType.TOKEN, + "ResearchDefinition.jurisdiction" + ), + SearchParamDefinition( + "name", + Enumerations.SearchParamType.STRING, + "ResearchDefinition.name" + ), + SearchParamDefinition( + "predecessor", + Enumerations.SearchParamType.REFERENCE, + "ResearchDefinition.relatedArtifact.where(type='predecessor').resource" + ), + SearchParamDefinition( + "publisher", + Enumerations.SearchParamType.STRING, + "ResearchDefinition.publisher" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "ResearchDefinition.status" + ), + SearchParamDefinition( + "successor", + Enumerations.SearchParamType.REFERENCE, + "ResearchDefinition.relatedArtifact.where(type='successor').resource" + ), + SearchParamDefinition( + "title", + Enumerations.SearchParamType.STRING, + "ResearchDefinition.title" + ), + SearchParamDefinition( + "topic", + Enumerations.SearchParamType.TOKEN, + "ResearchDefinition.topic" + ), + SearchParamDefinition("url", Enumerations.SearchParamType.URI, "ResearchDefinition.url"), + SearchParamDefinition( + "version", + Enumerations.SearchParamType.TOKEN, + "ResearchDefinition.version" + ), + SearchParamDefinition( + "context-type-quantity", + Enumerations.SearchParamType.COMPOSITE, + "ResearchDefinition.useContext" + ), + SearchParamDefinition( + "context-type-value", + Enumerations.SearchParamType.COMPOSITE, + "ResearchDefinition.useContext" + ), + ) + "Organization" -> + listOf( + SearchParamDefinition("active", Enumerations.SearchParamType.TOKEN, "Organization.active"), + SearchParamDefinition( + "address", + Enumerations.SearchParamType.STRING, + "Organization.address" + ), + SearchParamDefinition( + "address-city", + Enumerations.SearchParamType.STRING, + "Organization.address.city" + ), + SearchParamDefinition( + "address-country", + Enumerations.SearchParamType.STRING, + "Organization.address.country" + ), + SearchParamDefinition( + "address-postalcode", + Enumerations.SearchParamType.STRING, + "Organization.address.postalCode" + ), + SearchParamDefinition( + "address-state", + Enumerations.SearchParamType.STRING, + "Organization.address.state" + ), + SearchParamDefinition( + "address-use", + Enumerations.SearchParamType.TOKEN, + "Organization.address.use" + ), + SearchParamDefinition( + "endpoint", + Enumerations.SearchParamType.REFERENCE, + "Organization.endpoint" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "Organization.identifier" + ), + SearchParamDefinition( + "name", + Enumerations.SearchParamType.STRING, + "Organization.name | Organization.alias" + ), + SearchParamDefinition( + "partof", + Enumerations.SearchParamType.REFERENCE, + "Organization.partOf" + ), + SearchParamDefinition("phonetic", Enumerations.SearchParamType.STRING, "Organization.name"), + SearchParamDefinition("type", Enumerations.SearchParamType.TOKEN, "Organization.type"), + ) + "CareTeam" -> + listOf( + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "CareTeam.period"), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "CareTeam.identifier" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "CareTeam.subject.where(resolve() is Patient)" + ), + SearchParamDefinition("category", Enumerations.SearchParamType.TOKEN, "CareTeam.category"), + SearchParamDefinition( + "encounter", + Enumerations.SearchParamType.REFERENCE, + "CareTeam.encounter" + ), + SearchParamDefinition( + "participant", + Enumerations.SearchParamType.REFERENCE, + "CareTeam.participant.member" + ), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "CareTeam.status"), + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "CareTeam.subject" + ), + ) + "ImplementationGuide" -> + listOf( + SearchParamDefinition( + "context", + Enumerations.SearchParamType.TOKEN, + "(ImplementationGuide.useContext.value as CodeableConcept)" + ), + SearchParamDefinition( + "context-quantity", + Enumerations.SearchParamType.QUANTITY, + "(ImplementationGuide.useContext.value as Quantity) | (ImplementationGuide.useContext.value as Range)" + ), + SearchParamDefinition( + "context-type", + Enumerations.SearchParamType.TOKEN, + "ImplementationGuide.useContext.code" + ), + SearchParamDefinition( + "date", + Enumerations.SearchParamType.DATE, + "ImplementationGuide.date" + ), + SearchParamDefinition( + "description", + Enumerations.SearchParamType.STRING, + "ImplementationGuide.description" + ), + SearchParamDefinition( + "jurisdiction", + Enumerations.SearchParamType.TOKEN, + "ImplementationGuide.jurisdiction" + ), + SearchParamDefinition( + "name", + Enumerations.SearchParamType.STRING, + "ImplementationGuide.name" + ), + SearchParamDefinition( + "publisher", + Enumerations.SearchParamType.STRING, + "ImplementationGuide.publisher" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "ImplementationGuide.status" + ), + SearchParamDefinition( + "title", + Enumerations.SearchParamType.STRING, + "ImplementationGuide.title" + ), + SearchParamDefinition("url", Enumerations.SearchParamType.URI, "ImplementationGuide.url"), + SearchParamDefinition( + "version", + Enumerations.SearchParamType.TOKEN, + "ImplementationGuide.version" + ), + SearchParamDefinition( + "context-type-quantity", + Enumerations.SearchParamType.COMPOSITE, + "ImplementationGuide.useContext" + ), + SearchParamDefinition( + "context-type-value", + Enumerations.SearchParamType.COMPOSITE, + "ImplementationGuide.useContext" + ), + SearchParamDefinition( + "depends-on", + Enumerations.SearchParamType.REFERENCE, + "ImplementationGuide.dependsOn.uri" + ), + SearchParamDefinition( + "experimental", + Enumerations.SearchParamType.TOKEN, + "ImplementationGuide.experimental" + ), + SearchParamDefinition( + "global", + Enumerations.SearchParamType.REFERENCE, + "ImplementationGuide.global.profile" + ), + SearchParamDefinition( + "resource", + Enumerations.SearchParamType.REFERENCE, + "ImplementationGuide.definition.resource.reference" + ), + ) + "ImagingStudy" -> + listOf( + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "ImagingStudy.identifier" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "ImagingStudy.subject.where(resolve() is Patient)" + ), + SearchParamDefinition( + "basedon", + Enumerations.SearchParamType.REFERENCE, + "ImagingStudy.basedOn" + ), + SearchParamDefinition( + "bodysite", + Enumerations.SearchParamType.TOKEN, + "ImagingStudy.series.bodySite" + ), + SearchParamDefinition( + "dicom-class", + Enumerations.SearchParamType.TOKEN, + "ImagingStudy.series.instance.sopClass" + ), + SearchParamDefinition( + "encounter", + Enumerations.SearchParamType.REFERENCE, + "ImagingStudy.encounter" + ), + SearchParamDefinition( + "endpoint", + Enumerations.SearchParamType.REFERENCE, + "ImagingStudy.endpoint | ImagingStudy.series.endpoint" + ), + SearchParamDefinition( + "instance", + Enumerations.SearchParamType.TOKEN, + "ImagingStudy.series.instance.uid" + ), + SearchParamDefinition( + "interpreter", + Enumerations.SearchParamType.REFERENCE, + "ImagingStudy.interpreter" + ), + SearchParamDefinition( + "modality", + Enumerations.SearchParamType.TOKEN, + "ImagingStudy.series.modality" + ), + SearchParamDefinition( + "performer", + Enumerations.SearchParamType.REFERENCE, + "ImagingStudy.series.performer.actor" + ), + SearchParamDefinition( + "reason", + Enumerations.SearchParamType.TOKEN, + "ImagingStudy.reasonCode" + ), + SearchParamDefinition( + "referrer", + Enumerations.SearchParamType.REFERENCE, + "ImagingStudy.referrer" + ), + SearchParamDefinition( + "series", + Enumerations.SearchParamType.TOKEN, + "ImagingStudy.series.uid" + ), + SearchParamDefinition("started", Enumerations.SearchParamType.DATE, "ImagingStudy.started"), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "ImagingStudy.status"), + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "ImagingStudy.subject" + ), + ) + "FamilyMemberHistory" -> + listOf( + SearchParamDefinition( + "code", + Enumerations.SearchParamType.TOKEN, + "FamilyMemberHistory.condition.code" + ), + SearchParamDefinition( + "date", + Enumerations.SearchParamType.DATE, + "FamilyMemberHistory.date" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "FamilyMemberHistory.identifier" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "FamilyMemberHistory.patient" + ), + SearchParamDefinition( + "instantiates-canonical", + Enumerations.SearchParamType.REFERENCE, + "FamilyMemberHistory.instantiatesCanonical" + ), + SearchParamDefinition( + "instantiates-uri", + Enumerations.SearchParamType.URI, + "FamilyMemberHistory.instantiatesUri" + ), + SearchParamDefinition( + "relationship", + Enumerations.SearchParamType.TOKEN, + "FamilyMemberHistory.relationship" + ), + SearchParamDefinition("sex", Enumerations.SearchParamType.TOKEN, "FamilyMemberHistory.sex"), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "FamilyMemberHistory.status" + ), + ) + "ChargeItem" -> + listOf( + SearchParamDefinition( + "account", + Enumerations.SearchParamType.REFERENCE, + "ChargeItem.account" + ), + SearchParamDefinition("code", Enumerations.SearchParamType.TOKEN, "ChargeItem.code"), + SearchParamDefinition( + "context", + Enumerations.SearchParamType.REFERENCE, + "ChargeItem.context" + ), + SearchParamDefinition( + "entered-date", + Enumerations.SearchParamType.DATE, + "ChargeItem.enteredDate" + ), + SearchParamDefinition( + "enterer", + Enumerations.SearchParamType.REFERENCE, + "ChargeItem.enterer" + ), + SearchParamDefinition( + "factor-override", + Enumerations.SearchParamType.NUMBER, + "ChargeItem.factorOverride" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "ChargeItem.identifier" + ), + SearchParamDefinition( + "occurrence", + Enumerations.SearchParamType.DATE, + "ChargeItem.occurrence" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "ChargeItem.subject.where(resolve() is Patient)" + ), + SearchParamDefinition( + "performer-actor", + Enumerations.SearchParamType.REFERENCE, + "ChargeItem.performer.actor" + ), + SearchParamDefinition( + "performer-function", + Enumerations.SearchParamType.TOKEN, + "ChargeItem.performer.function" + ), + SearchParamDefinition( + "performing-organization", + Enumerations.SearchParamType.REFERENCE, + "ChargeItem.performingOrganization" + ), + SearchParamDefinition( + "price-override", + Enumerations.SearchParamType.QUANTITY, + "ChargeItem.priceOverride" + ), + SearchParamDefinition( + "quantity", + Enumerations.SearchParamType.QUANTITY, + "ChargeItem.quantity" + ), + SearchParamDefinition( + "requesting-organization", + Enumerations.SearchParamType.REFERENCE, + "ChargeItem.requestingOrganization" + ), + SearchParamDefinition( + "service", + Enumerations.SearchParamType.REFERENCE, + "ChargeItem.service" + ), + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "ChargeItem.subject" + ), + ) + "ResearchElementDefinition" -> + listOf( + SearchParamDefinition( + "composed-of", + Enumerations.SearchParamType.REFERENCE, + "ResearchElementDefinition.relatedArtifact.where(type='composed-of').resource" + ), + SearchParamDefinition( + "context", + Enumerations.SearchParamType.TOKEN, + "(ResearchElementDefinition.useContext.value as CodeableConcept)" + ), + SearchParamDefinition( + "context-quantity", + Enumerations.SearchParamType.QUANTITY, + "(ResearchElementDefinition.useContext.value as Quantity) | (ResearchElementDefinition.useContext.value as Range)" + ), + SearchParamDefinition( + "context-type", + Enumerations.SearchParamType.TOKEN, + "ResearchElementDefinition.useContext.code" + ), + SearchParamDefinition( + "date", + Enumerations.SearchParamType.DATE, + "ResearchElementDefinition.date" + ), + SearchParamDefinition( + "depends-on", + Enumerations.SearchParamType.REFERENCE, + "ResearchElementDefinition.relatedArtifact.where(type='depends-on').resource | ResearchElementDefinition.library" + ), + SearchParamDefinition( + "derived-from", + Enumerations.SearchParamType.REFERENCE, + "ResearchElementDefinition.relatedArtifact.where(type='derived-from').resource" + ), + SearchParamDefinition( + "description", + Enumerations.SearchParamType.STRING, + "ResearchElementDefinition.description" + ), + SearchParamDefinition( + "effective", + Enumerations.SearchParamType.DATE, + "ResearchElementDefinition.effectivePeriod" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "ResearchElementDefinition.identifier" + ), + SearchParamDefinition( + "jurisdiction", + Enumerations.SearchParamType.TOKEN, + "ResearchElementDefinition.jurisdiction" + ), + SearchParamDefinition( + "name", + Enumerations.SearchParamType.STRING, + "ResearchElementDefinition.name" + ), + SearchParamDefinition( + "predecessor", + Enumerations.SearchParamType.REFERENCE, + "ResearchElementDefinition.relatedArtifact.where(type='predecessor').resource" + ), + SearchParamDefinition( + "publisher", + Enumerations.SearchParamType.STRING, + "ResearchElementDefinition.publisher" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "ResearchElementDefinition.status" + ), + SearchParamDefinition( + "successor", + Enumerations.SearchParamType.REFERENCE, + "ResearchElementDefinition.relatedArtifact.where(type='successor').resource" + ), + SearchParamDefinition( + "title", + Enumerations.SearchParamType.STRING, + "ResearchElementDefinition.title" + ), + SearchParamDefinition( + "topic", + Enumerations.SearchParamType.TOKEN, + "ResearchElementDefinition.topic" + ), + SearchParamDefinition( + "url", + Enumerations.SearchParamType.URI, + "ResearchElementDefinition.url" + ), + SearchParamDefinition( + "version", + Enumerations.SearchParamType.TOKEN, + "ResearchElementDefinition.version" + ), + SearchParamDefinition( + "context-type-quantity", + Enumerations.SearchParamType.COMPOSITE, + "ResearchElementDefinition.useContext" + ), + SearchParamDefinition( + "context-type-value", + Enumerations.SearchParamType.COMPOSITE, + "ResearchElementDefinition.useContext" + ), + ) + "Encounter" -> + listOf( + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "Encounter.period"), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "Encounter.identifier" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "Encounter.subject.where(resolve() is Patient)" + ), + SearchParamDefinition("type", Enumerations.SearchParamType.TOKEN, "Encounter.type"), + SearchParamDefinition( + "account", + Enumerations.SearchParamType.REFERENCE, + "Encounter.account" + ), + SearchParamDefinition( + "appointment", + Enumerations.SearchParamType.REFERENCE, + "Encounter.appointment" + ), + SearchParamDefinition( + "based-on", + Enumerations.SearchParamType.REFERENCE, + "Encounter.basedOn" + ), + SearchParamDefinition("class", Enumerations.SearchParamType.TOKEN, "Encounter.class"), + SearchParamDefinition( + "diagnosis", + Enumerations.SearchParamType.REFERENCE, + "Encounter.diagnosis.condition" + ), + SearchParamDefinition( + "episode-of-care", + Enumerations.SearchParamType.REFERENCE, + "Encounter.episodeOfCare" + ), + SearchParamDefinition("length", Enumerations.SearchParamType.QUANTITY, "Encounter.length"), + SearchParamDefinition( + "location", + Enumerations.SearchParamType.REFERENCE, + "Encounter.location.location" + ), + SearchParamDefinition( + "location-period", + Enumerations.SearchParamType.DATE, + "Encounter.location.period" + ), + SearchParamDefinition( + "part-of", + Enumerations.SearchParamType.REFERENCE, + "Encounter.partOf" + ), + SearchParamDefinition( + "participant", + Enumerations.SearchParamType.REFERENCE, + "Encounter.participant.individual" + ), + SearchParamDefinition( + "participant-type", + Enumerations.SearchParamType.TOKEN, + "Encounter.participant.type" + ), + SearchParamDefinition( + "practitioner", + Enumerations.SearchParamType.REFERENCE, + "Encounter.participant.individual.where(resolve() is Practitioner)" + ), + SearchParamDefinition( + "reason-code", + Enumerations.SearchParamType.TOKEN, + "Encounter.reasonCode" + ), + SearchParamDefinition( + "reason-reference", + Enumerations.SearchParamType.REFERENCE, + "Encounter.reasonReference" + ), + SearchParamDefinition( + "service-provider", + Enumerations.SearchParamType.REFERENCE, + "Encounter.serviceProvider" + ), + SearchParamDefinition( + "special-arrangement", + Enumerations.SearchParamType.TOKEN, + "Encounter.hospitalization.specialArrangement" + ), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "Encounter.status"), + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "Encounter.subject" + ), + ) + "Substance" -> + listOf( + SearchParamDefinition("category", Enumerations.SearchParamType.TOKEN, "Substance.category"), + SearchParamDefinition( + "code", + Enumerations.SearchParamType.TOKEN, + "Substance.code | (Substance.ingredient.substance as CodeableConcept)" + ), + SearchParamDefinition( + "container-identifier", + Enumerations.SearchParamType.TOKEN, + "Substance.instance.identifier" + ), + SearchParamDefinition( + "expiry", + Enumerations.SearchParamType.DATE, + "Substance.instance.expiry" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "Substance.identifier" + ), + SearchParamDefinition( + "quantity", + Enumerations.SearchParamType.QUANTITY, + "Substance.instance.quantity" + ), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "Substance.status"), + SearchParamDefinition( + "substance-reference", + Enumerations.SearchParamType.REFERENCE, + "(Substance.ingredient.substance as Reference)" + ), + ) + "SubstanceSpecification" -> + listOf( + SearchParamDefinition( + "code", + Enumerations.SearchParamType.TOKEN, + "SubstanceSpecification.code.code" + ), + ) + "SearchParameter" -> + listOf( + SearchParamDefinition( + "context", + Enumerations.SearchParamType.TOKEN, + "(SearchParameter.useContext.value as CodeableConcept)" + ), + SearchParamDefinition( + "context-quantity", + Enumerations.SearchParamType.QUANTITY, + "(SearchParameter.useContext.value as Quantity) | (SearchParameter.useContext.value as Range)" + ), + SearchParamDefinition( + "context-type", + Enumerations.SearchParamType.TOKEN, + "SearchParameter.useContext.code" + ), + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "SearchParameter.date"), + SearchParamDefinition( + "description", + Enumerations.SearchParamType.STRING, + "SearchParameter.description" + ), + SearchParamDefinition( + "jurisdiction", + Enumerations.SearchParamType.TOKEN, + "SearchParameter.jurisdiction" + ), + SearchParamDefinition("name", Enumerations.SearchParamType.STRING, "SearchParameter.name"), + SearchParamDefinition( + "publisher", + Enumerations.SearchParamType.STRING, + "SearchParameter.publisher" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "SearchParameter.status" + ), + SearchParamDefinition("url", Enumerations.SearchParamType.URI, "SearchParameter.url"), + SearchParamDefinition( + "version", + Enumerations.SearchParamType.TOKEN, + "SearchParameter.version" + ), + SearchParamDefinition( + "context-type-quantity", + Enumerations.SearchParamType.COMPOSITE, + "SearchParameter.useContext" + ), + SearchParamDefinition( + "context-type-value", + Enumerations.SearchParamType.COMPOSITE, + "SearchParameter.useContext" + ), + SearchParamDefinition("base", Enumerations.SearchParamType.TOKEN, "SearchParameter.base"), + SearchParamDefinition("code", Enumerations.SearchParamType.TOKEN, "SearchParameter.code"), + SearchParamDefinition( + "component", + Enumerations.SearchParamType.REFERENCE, + "SearchParameter.component.definition" + ), + SearchParamDefinition( + "derived-from", + Enumerations.SearchParamType.REFERENCE, + "SearchParameter.derivedFrom" + ), + SearchParamDefinition( + "target", + Enumerations.SearchParamType.TOKEN, + "SearchParameter.target" + ), + SearchParamDefinition("type", Enumerations.SearchParamType.TOKEN, "SearchParameter.type"), + ) + "ActivityDefinition" -> + listOf( + SearchParamDefinition( + "composed-of", + Enumerations.SearchParamType.REFERENCE, + "ActivityDefinition.relatedArtifact.where(type='composed-of').resource" + ), + SearchParamDefinition( + "context", + Enumerations.SearchParamType.TOKEN, + "(ActivityDefinition.useContext.value as CodeableConcept)" + ), + SearchParamDefinition( + "context-quantity", + Enumerations.SearchParamType.QUANTITY, + "(ActivityDefinition.useContext.value as Quantity) | (ActivityDefinition.useContext.value as Range)" + ), + SearchParamDefinition( + "context-type", + Enumerations.SearchParamType.TOKEN, + "ActivityDefinition.useContext.code" + ), + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "ActivityDefinition.date"), + SearchParamDefinition( + "depends-on", + Enumerations.SearchParamType.REFERENCE, + "ActivityDefinition.relatedArtifact.where(type='depends-on').resource | ActivityDefinition.library" + ), + SearchParamDefinition( + "derived-from", + Enumerations.SearchParamType.REFERENCE, + "ActivityDefinition.relatedArtifact.where(type='derived-from').resource" + ), + SearchParamDefinition( + "description", + Enumerations.SearchParamType.STRING, + "ActivityDefinition.description" + ), + SearchParamDefinition( + "effective", + Enumerations.SearchParamType.DATE, + "ActivityDefinition.effectivePeriod" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "ActivityDefinition.identifier" + ), + SearchParamDefinition( + "jurisdiction", + Enumerations.SearchParamType.TOKEN, + "ActivityDefinition.jurisdiction" + ), + SearchParamDefinition( + "name", + Enumerations.SearchParamType.STRING, + "ActivityDefinition.name" + ), + SearchParamDefinition( + "predecessor", + Enumerations.SearchParamType.REFERENCE, + "ActivityDefinition.relatedArtifact.where(type='predecessor').resource" + ), + SearchParamDefinition( + "publisher", + Enumerations.SearchParamType.STRING, + "ActivityDefinition.publisher" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "ActivityDefinition.status" + ), + SearchParamDefinition( + "successor", + Enumerations.SearchParamType.REFERENCE, + "ActivityDefinition.relatedArtifact.where(type='successor').resource" + ), + SearchParamDefinition( + "title", + Enumerations.SearchParamType.STRING, + "ActivityDefinition.title" + ), + SearchParamDefinition( + "topic", + Enumerations.SearchParamType.TOKEN, + "ActivityDefinition.topic" + ), + SearchParamDefinition("url", Enumerations.SearchParamType.URI, "ActivityDefinition.url"), + SearchParamDefinition( + "version", + Enumerations.SearchParamType.TOKEN, + "ActivityDefinition.version" + ), + SearchParamDefinition( + "context-type-quantity", + Enumerations.SearchParamType.COMPOSITE, + "ActivityDefinition.useContext" + ), + SearchParamDefinition( + "context-type-value", + Enumerations.SearchParamType.COMPOSITE, + "ActivityDefinition.useContext" + ), + ) + "Communication" -> + listOf( + SearchParamDefinition( + "based-on", + Enumerations.SearchParamType.REFERENCE, + "Communication.basedOn" + ), + SearchParamDefinition( + "category", + Enumerations.SearchParamType.TOKEN, + "Communication.category" + ), + SearchParamDefinition( + "encounter", + Enumerations.SearchParamType.REFERENCE, + "Communication.encounter" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "Communication.identifier" + ), + SearchParamDefinition( + "instantiates-canonical", + Enumerations.SearchParamType.REFERENCE, + "Communication.instantiatesCanonical" + ), + SearchParamDefinition( + "instantiates-uri", + Enumerations.SearchParamType.URI, + "Communication.instantiatesUri" + ), + SearchParamDefinition("medium", Enumerations.SearchParamType.TOKEN, "Communication.medium"), + SearchParamDefinition( + "part-of", + Enumerations.SearchParamType.REFERENCE, + "Communication.partOf" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "Communication.subject.where(resolve() is Patient)" + ), + SearchParamDefinition( + "received", + Enumerations.SearchParamType.DATE, + "Communication.received" + ), + SearchParamDefinition( + "recipient", + Enumerations.SearchParamType.REFERENCE, + "Communication.recipient" + ), + SearchParamDefinition( + "sender", + Enumerations.SearchParamType.REFERENCE, + "Communication.sender" + ), + SearchParamDefinition("sent", Enumerations.SearchParamType.DATE, "Communication.sent"), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "Communication.status"), + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "Communication.subject" + ), + ) + "InsurancePlan" -> + listOf( + SearchParamDefinition( + "address", + Enumerations.SearchParamType.STRING, + "InsurancePlan.contact.address" + ), + SearchParamDefinition( + "address-city", + Enumerations.SearchParamType.STRING, + "InsurancePlan.contact.address.city" + ), + SearchParamDefinition( + "address-country", + Enumerations.SearchParamType.STRING, + "InsurancePlan.contact.address.country" + ), + SearchParamDefinition( + "address-postalcode", + Enumerations.SearchParamType.STRING, + "InsurancePlan.contact.address.postalCode" + ), + SearchParamDefinition( + "address-state", + Enumerations.SearchParamType.STRING, + "InsurancePlan.contact.address.state" + ), + SearchParamDefinition( + "address-use", + Enumerations.SearchParamType.TOKEN, + "InsurancePlan.contact.address.use" + ), + SearchParamDefinition( + "administered-by", + Enumerations.SearchParamType.REFERENCE, + "InsurancePlan.administeredBy" + ), + SearchParamDefinition( + "endpoint", + Enumerations.SearchParamType.REFERENCE, + "InsurancePlan.endpoint" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "InsurancePlan.identifier" + ), + SearchParamDefinition( + "owned-by", + Enumerations.SearchParamType.REFERENCE, + "InsurancePlan.ownedBy" + ), + SearchParamDefinition( + "phonetic", + Enumerations.SearchParamType.STRING, + "InsurancePlan.name" + ), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "InsurancePlan.status"), + SearchParamDefinition("type", Enumerations.SearchParamType.TOKEN, "InsurancePlan.type"), + ) + "Linkage" -> + listOf( + SearchParamDefinition("author", Enumerations.SearchParamType.REFERENCE, "Linkage.author"), + SearchParamDefinition( + "item", + Enumerations.SearchParamType.REFERENCE, + "Linkage.item.resource" + ), + SearchParamDefinition( + "source", + Enumerations.SearchParamType.REFERENCE, + "Linkage.item.resource" + ), + ) + "ImmunizationEvaluation" -> + listOf( + SearchParamDefinition( + "date", + Enumerations.SearchParamType.DATE, + "ImmunizationEvaluation.date" + ), + SearchParamDefinition( + "dose-status", + Enumerations.SearchParamType.TOKEN, + "ImmunizationEvaluation.doseStatus" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "ImmunizationEvaluation.identifier" + ), + SearchParamDefinition( + "immunization-event", + Enumerations.SearchParamType.REFERENCE, + "ImmunizationEvaluation.immunizationEvent" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "ImmunizationEvaluation.patient" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "ImmunizationEvaluation.status" + ), + SearchParamDefinition( + "target-disease", + Enumerations.SearchParamType.TOKEN, + "ImmunizationEvaluation.targetDisease" + ), + ) + "DeviceUseStatement" -> + listOf( + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "DeviceUseStatement.subject" + ), + SearchParamDefinition( + "device", + Enumerations.SearchParamType.REFERENCE, + "DeviceUseStatement.device" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "DeviceUseStatement.identifier" + ), + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "DeviceUseStatement.subject" + ), + ) + "RequestGroup" -> + listOf( + SearchParamDefinition( + "author", + Enumerations.SearchParamType.REFERENCE, + "RequestGroup.author" + ), + SearchParamDefinition( + "authored", + Enumerations.SearchParamType.DATE, + "RequestGroup.authoredOn" + ), + SearchParamDefinition("code", Enumerations.SearchParamType.TOKEN, "RequestGroup.code"), + SearchParamDefinition( + "encounter", + Enumerations.SearchParamType.REFERENCE, + "RequestGroup.encounter" + ), + SearchParamDefinition( + "group-identifier", + Enumerations.SearchParamType.TOKEN, + "RequestGroup.groupIdentifier" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "RequestGroup.identifier" + ), + SearchParamDefinition( + "instantiates-canonical", + Enumerations.SearchParamType.REFERENCE, + "RequestGroup.instantiatesCanonical" + ), + SearchParamDefinition( + "instantiates-uri", + Enumerations.SearchParamType.URI, + "RequestGroup.instantiatesUri" + ), + SearchParamDefinition("intent", Enumerations.SearchParamType.TOKEN, "RequestGroup.intent"), + SearchParamDefinition( + "participant", + Enumerations.SearchParamType.REFERENCE, + "RequestGroup.action.participant" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "RequestGroup.subject.where(resolve() is Patient)" + ), + SearchParamDefinition( + "priority", + Enumerations.SearchParamType.TOKEN, + "RequestGroup.priority" + ), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "RequestGroup.status"), + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "RequestGroup.subject" + ), + ) + "DeviceRequest" -> + listOf( + SearchParamDefinition( + "code", + Enumerations.SearchParamType.TOKEN, + "(DeviceRequest.code as CodeableConcept)" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "DeviceRequest.identifier" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "DeviceRequest.subject.where(resolve() is Patient)" + ), + SearchParamDefinition( + "encounter", + Enumerations.SearchParamType.REFERENCE, + "DeviceRequest.encounter" + ), + SearchParamDefinition( + "authored-on", + Enumerations.SearchParamType.DATE, + "DeviceRequest.authoredOn" + ), + SearchParamDefinition( + "based-on", + Enumerations.SearchParamType.REFERENCE, + "DeviceRequest.basedOn" + ), + SearchParamDefinition( + "device", + Enumerations.SearchParamType.REFERENCE, + "(DeviceRequest.code as Reference)" + ), + SearchParamDefinition( + "event-date", + Enumerations.SearchParamType.DATE, + "(DeviceRequest.occurrence as dateTime) | (DeviceRequest.occurrence as Period)" + ), + SearchParamDefinition( + "group-identifier", + Enumerations.SearchParamType.TOKEN, + "DeviceRequest.groupIdentifier" + ), + SearchParamDefinition( + "instantiates-canonical", + Enumerations.SearchParamType.REFERENCE, + "DeviceRequest.instantiatesCanonical" + ), + SearchParamDefinition( + "instantiates-uri", + Enumerations.SearchParamType.URI, + "DeviceRequest.instantiatesUri" + ), + SearchParamDefinition( + "insurance", + Enumerations.SearchParamType.REFERENCE, + "DeviceRequest.insurance" + ), + SearchParamDefinition("intent", Enumerations.SearchParamType.TOKEN, "DeviceRequest.intent"), + SearchParamDefinition( + "performer", + Enumerations.SearchParamType.REFERENCE, + "DeviceRequest.performer" + ), + SearchParamDefinition( + "prior-request", + Enumerations.SearchParamType.REFERENCE, + "DeviceRequest.priorRequest" + ), + SearchParamDefinition( + "requester", + Enumerations.SearchParamType.REFERENCE, + "DeviceRequest.requester" + ), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "DeviceRequest.status"), + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "DeviceRequest.subject" + ), + ) + "MessageHeader" -> + listOf( + SearchParamDefinition( + "author", + Enumerations.SearchParamType.REFERENCE, + "MessageHeader.author" + ), + SearchParamDefinition( + "code", + Enumerations.SearchParamType.TOKEN, + "MessageHeader.response.code" + ), + SearchParamDefinition( + "destination", + Enumerations.SearchParamType.STRING, + "MessageHeader.destination.name" + ), + SearchParamDefinition( + "destination-uri", + Enumerations.SearchParamType.URI, + "MessageHeader.destination.endpoint" + ), + SearchParamDefinition( + "enterer", + Enumerations.SearchParamType.REFERENCE, + "MessageHeader.enterer" + ), + SearchParamDefinition("event", Enumerations.SearchParamType.TOKEN, "MessageHeader.event"), + SearchParamDefinition( + "focus", + Enumerations.SearchParamType.REFERENCE, + "MessageHeader.focus" + ), + SearchParamDefinition( + "receiver", + Enumerations.SearchParamType.REFERENCE, + "MessageHeader.destination.receiver" + ), + SearchParamDefinition( + "response-id", + Enumerations.SearchParamType.TOKEN, + "MessageHeader.response.identifier" + ), + SearchParamDefinition( + "responsible", + Enumerations.SearchParamType.REFERENCE, + "MessageHeader.responsible" + ), + SearchParamDefinition( + "sender", + Enumerations.SearchParamType.REFERENCE, + "MessageHeader.sender" + ), + SearchParamDefinition( + "source", + Enumerations.SearchParamType.STRING, + "MessageHeader.source.name" + ), + SearchParamDefinition( + "source-uri", + Enumerations.SearchParamType.URI, + "MessageHeader.source.endpoint" + ), + SearchParamDefinition( + "target", + Enumerations.SearchParamType.REFERENCE, + "MessageHeader.destination.target" + ), + ) + "ImmunizationRecommendation" -> + listOf( + SearchParamDefinition( + "date", + Enumerations.SearchParamType.DATE, + "ImmunizationRecommendation.date" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "ImmunizationRecommendation.identifier" + ), + SearchParamDefinition( + "information", + Enumerations.SearchParamType.REFERENCE, + "ImmunizationRecommendation.recommendation.supportingPatientInformation" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "ImmunizationRecommendation.patient" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "ImmunizationRecommendation.recommendation.forecastStatus" + ), + SearchParamDefinition( + "support", + Enumerations.SearchParamType.REFERENCE, + "ImmunizationRecommendation.recommendation.supportingImmunization" + ), + SearchParamDefinition( + "target-disease", + Enumerations.SearchParamType.TOKEN, + "ImmunizationRecommendation.recommendation.targetDisease" + ), + SearchParamDefinition( + "vaccine-type", + Enumerations.SearchParamType.TOKEN, + "ImmunizationRecommendation.recommendation.vaccineCode" + ), + ) + "Provenance" -> + listOf( + SearchParamDefinition( + "agent", + Enumerations.SearchParamType.REFERENCE, + "Provenance.agent.who" + ), + SearchParamDefinition( + "agent-role", + Enumerations.SearchParamType.TOKEN, + "Provenance.agent.role" + ), + SearchParamDefinition( + "agent-type", + Enumerations.SearchParamType.TOKEN, + "Provenance.agent.type" + ), + SearchParamDefinition( + "entity", + Enumerations.SearchParamType.REFERENCE, + "Provenance.entity.what" + ), + SearchParamDefinition( + "location", + Enumerations.SearchParamType.REFERENCE, + "Provenance.location" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "Provenance.target.where(resolve() is Patient)" + ), + SearchParamDefinition("recorded", Enumerations.SearchParamType.DATE, "Provenance.recorded"), + SearchParamDefinition( + "signature-type", + Enumerations.SearchParamType.TOKEN, + "Provenance.signature.type" + ), + SearchParamDefinition( + "target", + Enumerations.SearchParamType.REFERENCE, + "Provenance.target" + ), + SearchParamDefinition( + "when", + Enumerations.SearchParamType.DATE, + "(Provenance.occurred as dateTime)" + ), + ) + "Task" -> + listOf( + SearchParamDefinition("authored-on", Enumerations.SearchParamType.DATE, "Task.authoredOn"), + SearchParamDefinition("based-on", Enumerations.SearchParamType.REFERENCE, "Task.basedOn"), + SearchParamDefinition( + "business-status", + Enumerations.SearchParamType.TOKEN, + "Task.businessStatus" + ), + SearchParamDefinition("code", Enumerations.SearchParamType.TOKEN, "Task.code"), + SearchParamDefinition( + "encounter", + Enumerations.SearchParamType.REFERENCE, + "Task.encounter" + ), + SearchParamDefinition("focus", Enumerations.SearchParamType.REFERENCE, "Task.focus"), + SearchParamDefinition( + "group-identifier", + Enumerations.SearchParamType.TOKEN, + "Task.groupIdentifier" + ), + SearchParamDefinition("identifier", Enumerations.SearchParamType.TOKEN, "Task.identifier"), + SearchParamDefinition("intent", Enumerations.SearchParamType.TOKEN, "Task.intent"), + SearchParamDefinition("modified", Enumerations.SearchParamType.DATE, "Task.lastModified"), + SearchParamDefinition("owner", Enumerations.SearchParamType.REFERENCE, "Task.owner"), + SearchParamDefinition("part-of", Enumerations.SearchParamType.REFERENCE, "Task.partOf"), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "Task.for.where(resolve() is Patient)" + ), + SearchParamDefinition( + "performer", + Enumerations.SearchParamType.TOKEN, + "Task.performerType" + ), + SearchParamDefinition("period", Enumerations.SearchParamType.DATE, "Task.executionPeriod"), + SearchParamDefinition("priority", Enumerations.SearchParamType.TOKEN, "Task.priority"), + SearchParamDefinition( + "requester", + Enumerations.SearchParamType.REFERENCE, + "Task.requester" + ), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "Task.status"), + SearchParamDefinition("subject", Enumerations.SearchParamType.REFERENCE, "Task.for"), + ) + "Questionnaire" -> + listOf( + SearchParamDefinition( + "code", + Enumerations.SearchParamType.TOKEN, + "Questionnaire.item.code" + ), + SearchParamDefinition( + "context", + Enumerations.SearchParamType.TOKEN, + "(Questionnaire.useContext.value as CodeableConcept)" + ), + SearchParamDefinition( + "context-quantity", + Enumerations.SearchParamType.QUANTITY, + "(Questionnaire.useContext.value as Quantity) | (Questionnaire.useContext.value as Range)" + ), + SearchParamDefinition( + "context-type", + Enumerations.SearchParamType.TOKEN, + "Questionnaire.useContext.code" + ), + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "Questionnaire.date"), + SearchParamDefinition( + "definition", + Enumerations.SearchParamType.URI, + "Questionnaire.item.definition" + ), + SearchParamDefinition( + "description", + Enumerations.SearchParamType.STRING, + "Questionnaire.description" + ), + SearchParamDefinition( + "effective", + Enumerations.SearchParamType.DATE, + "Questionnaire.effectivePeriod" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "Questionnaire.identifier" + ), + SearchParamDefinition( + "jurisdiction", + Enumerations.SearchParamType.TOKEN, + "Questionnaire.jurisdiction" + ), + SearchParamDefinition("name", Enumerations.SearchParamType.STRING, "Questionnaire.name"), + SearchParamDefinition( + "publisher", + Enumerations.SearchParamType.STRING, + "Questionnaire.publisher" + ), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "Questionnaire.status"), + SearchParamDefinition( + "subject-type", + Enumerations.SearchParamType.TOKEN, + "Questionnaire.subjectType" + ), + SearchParamDefinition("title", Enumerations.SearchParamType.STRING, "Questionnaire.title"), + SearchParamDefinition("url", Enumerations.SearchParamType.URI, "Questionnaire.url"), + SearchParamDefinition( + "version", + Enumerations.SearchParamType.TOKEN, + "Questionnaire.version" + ), + SearchParamDefinition( + "context-type-quantity", + Enumerations.SearchParamType.COMPOSITE, + "Questionnaire.useContext" + ), + SearchParamDefinition( + "context-type-value", + Enumerations.SearchParamType.COMPOSITE, + "Questionnaire.useContext" + ), + ) + "ExplanationOfBenefit" -> + listOf( + SearchParamDefinition( + "care-team", + Enumerations.SearchParamType.REFERENCE, + "ExplanationOfBenefit.careTeam.provider" + ), + SearchParamDefinition( + "claim", + Enumerations.SearchParamType.REFERENCE, + "ExplanationOfBenefit.claim" + ), + SearchParamDefinition( + "coverage", + Enumerations.SearchParamType.REFERENCE, + "ExplanationOfBenefit.insurance.coverage" + ), + SearchParamDefinition( + "created", + Enumerations.SearchParamType.DATE, + "ExplanationOfBenefit.created" + ), + SearchParamDefinition( + "detail-udi", + Enumerations.SearchParamType.REFERENCE, + "ExplanationOfBenefit.item.detail.udi" + ), + SearchParamDefinition( + "disposition", + Enumerations.SearchParamType.STRING, + "ExplanationOfBenefit.disposition" + ), + SearchParamDefinition( + "encounter", + Enumerations.SearchParamType.REFERENCE, + "ExplanationOfBenefit.item.encounter" + ), + SearchParamDefinition( + "enterer", + Enumerations.SearchParamType.REFERENCE, + "ExplanationOfBenefit.enterer" + ), + SearchParamDefinition( + "facility", + Enumerations.SearchParamType.REFERENCE, + "ExplanationOfBenefit.facility" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "ExplanationOfBenefit.identifier" + ), + SearchParamDefinition( + "item-udi", + Enumerations.SearchParamType.REFERENCE, + "ExplanationOfBenefit.item.udi" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "ExplanationOfBenefit.patient" + ), + SearchParamDefinition( + "payee", + Enumerations.SearchParamType.REFERENCE, + "ExplanationOfBenefit.payee.party" + ), + SearchParamDefinition( + "procedure-udi", + Enumerations.SearchParamType.REFERENCE, + "ExplanationOfBenefit.procedure.udi" + ), + SearchParamDefinition( + "provider", + Enumerations.SearchParamType.REFERENCE, + "ExplanationOfBenefit.provider" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "ExplanationOfBenefit.status" + ), + SearchParamDefinition( + "subdetail-udi", + Enumerations.SearchParamType.REFERENCE, + "ExplanationOfBenefit.item.detail.subDetail.udi" + ), + ) + "MedicinalProductPharmaceutical" -> + listOf( + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "MedicinalProductPharmaceutical.identifier" + ), + SearchParamDefinition( + "route", + Enumerations.SearchParamType.TOKEN, + "MedicinalProductPharmaceutical.routeOfAdministration.code" + ), + SearchParamDefinition( + "target-species", + Enumerations.SearchParamType.TOKEN, + "MedicinalProductPharmaceutical.routeOfAdministration.targetSpecies.code" + ), + ) + "ResearchStudy" -> + listOf( + SearchParamDefinition( + "category", + Enumerations.SearchParamType.TOKEN, + "ResearchStudy.category" + ), + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "ResearchStudy.period"), + SearchParamDefinition("focus", Enumerations.SearchParamType.TOKEN, "ResearchStudy.focus"), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "ResearchStudy.identifier" + ), + SearchParamDefinition( + "keyword", + Enumerations.SearchParamType.TOKEN, + "ResearchStudy.keyword" + ), + SearchParamDefinition( + "location", + Enumerations.SearchParamType.TOKEN, + "ResearchStudy.location" + ), + SearchParamDefinition( + "partof", + Enumerations.SearchParamType.REFERENCE, + "ResearchStudy.partOf" + ), + SearchParamDefinition( + "principalinvestigator", + Enumerations.SearchParamType.REFERENCE, + "ResearchStudy.principalInvestigator" + ), + SearchParamDefinition( + "protocol", + Enumerations.SearchParamType.REFERENCE, + "ResearchStudy.protocol" + ), + SearchParamDefinition("site", Enumerations.SearchParamType.REFERENCE, "ResearchStudy.site"), + SearchParamDefinition( + "sponsor", + Enumerations.SearchParamType.REFERENCE, + "ResearchStudy.sponsor" + ), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "ResearchStudy.status"), + SearchParamDefinition("title", Enumerations.SearchParamType.STRING, "ResearchStudy.title"), + ) + "Specimen" -> + listOf( + SearchParamDefinition( + "accession", + Enumerations.SearchParamType.TOKEN, + "Specimen.accessionIdentifier" + ), + SearchParamDefinition( + "bodysite", + Enumerations.SearchParamType.TOKEN, + "Specimen.collection.bodySite" + ), + SearchParamDefinition( + "collected", + Enumerations.SearchParamType.DATE, + "Specimen.collection.collected" + ), + SearchParamDefinition( + "collector", + Enumerations.SearchParamType.REFERENCE, + "Specimen.collection.collector" + ), + SearchParamDefinition( + "container", + Enumerations.SearchParamType.TOKEN, + "Specimen.container.type" + ), + SearchParamDefinition( + "container-id", + Enumerations.SearchParamType.TOKEN, + "Specimen.container.identifier" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "Specimen.identifier" + ), + SearchParamDefinition("parent", Enumerations.SearchParamType.REFERENCE, "Specimen.parent"), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "Specimen.subject.where(resolve() is Patient)" + ), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "Specimen.status"), + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "Specimen.subject" + ), + SearchParamDefinition("type", Enumerations.SearchParamType.TOKEN, "Specimen.type"), + ) + "AllergyIntolerance" -> + listOf( + SearchParamDefinition( + "asserter", + Enumerations.SearchParamType.REFERENCE, + "AllergyIntolerance.asserter" + ), + SearchParamDefinition( + "category", + Enumerations.SearchParamType.TOKEN, + "AllergyIntolerance.category" + ), + SearchParamDefinition( + "clinical-status", + Enumerations.SearchParamType.TOKEN, + "AllergyIntolerance.clinicalStatus" + ), + SearchParamDefinition( + "code", + Enumerations.SearchParamType.TOKEN, + "AllergyIntolerance.code | AllergyIntolerance.reaction.substance" + ), + SearchParamDefinition( + "criticality", + Enumerations.SearchParamType.TOKEN, + "AllergyIntolerance.criticality" + ), + SearchParamDefinition( + "date", + Enumerations.SearchParamType.DATE, + "AllergyIntolerance.recordedDate" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "AllergyIntolerance.identifier" + ), + SearchParamDefinition( + "last-date", + Enumerations.SearchParamType.DATE, + "AllergyIntolerance.lastOccurrence" + ), + SearchParamDefinition( + "manifestation", + Enumerations.SearchParamType.TOKEN, + "AllergyIntolerance.reaction.manifestation" + ), + SearchParamDefinition( + "onset", + Enumerations.SearchParamType.DATE, + "AllergyIntolerance.reaction.onset" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "AllergyIntolerance.patient" + ), + SearchParamDefinition( + "recorder", + Enumerations.SearchParamType.REFERENCE, + "AllergyIntolerance.recorder" + ), + SearchParamDefinition( + "route", + Enumerations.SearchParamType.TOKEN, + "AllergyIntolerance.reaction.exposureRoute" + ), + SearchParamDefinition( + "severity", + Enumerations.SearchParamType.TOKEN, + "AllergyIntolerance.reaction.severity" + ), + SearchParamDefinition( + "type", + Enumerations.SearchParamType.TOKEN, + "AllergyIntolerance.type" + ), + SearchParamDefinition( + "verification-status", + Enumerations.SearchParamType.TOKEN, + "AllergyIntolerance.verificationStatus" + ), + ) + "CarePlan" -> + listOf( + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "CarePlan.period"), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "CarePlan.identifier" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "CarePlan.subject.where(resolve() is Patient)" + ), + SearchParamDefinition( + "activity-code", + Enumerations.SearchParamType.TOKEN, + "CarePlan.activity.detail.code" + ), + SearchParamDefinition( + "activity-date", + Enumerations.SearchParamType.DATE, + "CarePlan.activity.detail.scheduled" + ), + SearchParamDefinition( + "activity-reference", + Enumerations.SearchParamType.REFERENCE, + "CarePlan.activity.reference" + ), + SearchParamDefinition( + "based-on", + Enumerations.SearchParamType.REFERENCE, + "CarePlan.basedOn" + ), + SearchParamDefinition( + "care-team", + Enumerations.SearchParamType.REFERENCE, + "CarePlan.careTeam" + ), + SearchParamDefinition("category", Enumerations.SearchParamType.TOKEN, "CarePlan.category"), + SearchParamDefinition( + "condition", + Enumerations.SearchParamType.REFERENCE, + "CarePlan.addresses" + ), + SearchParamDefinition( + "encounter", + Enumerations.SearchParamType.REFERENCE, + "CarePlan.encounter" + ), + SearchParamDefinition("goal", Enumerations.SearchParamType.REFERENCE, "CarePlan.goal"), + SearchParamDefinition( + "instantiates-canonical", + Enumerations.SearchParamType.REFERENCE, + "CarePlan.instantiatesCanonical" + ), + SearchParamDefinition( + "instantiates-uri", + Enumerations.SearchParamType.URI, + "CarePlan.instantiatesUri" + ), + SearchParamDefinition("intent", Enumerations.SearchParamType.TOKEN, "CarePlan.intent"), + SearchParamDefinition("part-of", Enumerations.SearchParamType.REFERENCE, "CarePlan.partOf"), + SearchParamDefinition( + "performer", + Enumerations.SearchParamType.REFERENCE, + "CarePlan.activity.detail.performer" + ), + SearchParamDefinition( + "replaces", + Enumerations.SearchParamType.REFERENCE, + "CarePlan.replaces" + ), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "CarePlan.status"), + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "CarePlan.subject" + ), + ) + "StructureDefinition" -> + listOf( + SearchParamDefinition( + "context", + Enumerations.SearchParamType.TOKEN, + "(StructureDefinition.useContext.value as CodeableConcept)" + ), + SearchParamDefinition( + "context-quantity", + Enumerations.SearchParamType.QUANTITY, + "(StructureDefinition.useContext.value as Quantity) | (StructureDefinition.useContext.value as Range)" + ), + SearchParamDefinition( + "context-type", + Enumerations.SearchParamType.TOKEN, + "StructureDefinition.useContext.code" + ), + SearchParamDefinition( + "date", + Enumerations.SearchParamType.DATE, + "StructureDefinition.date" + ), + SearchParamDefinition( + "description", + Enumerations.SearchParamType.STRING, + "StructureDefinition.description" + ), + SearchParamDefinition( + "jurisdiction", + Enumerations.SearchParamType.TOKEN, + "StructureDefinition.jurisdiction" + ), + SearchParamDefinition( + "name", + Enumerations.SearchParamType.STRING, + "StructureDefinition.name" + ), + SearchParamDefinition( + "publisher", + Enumerations.SearchParamType.STRING, + "StructureDefinition.publisher" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "StructureDefinition.status" + ), + SearchParamDefinition( + "title", + Enumerations.SearchParamType.STRING, + "StructureDefinition.title" + ), + SearchParamDefinition("url", Enumerations.SearchParamType.URI, "StructureDefinition.url"), + SearchParamDefinition( + "version", + Enumerations.SearchParamType.TOKEN, + "StructureDefinition.version" + ), + SearchParamDefinition( + "context-type-quantity", + Enumerations.SearchParamType.COMPOSITE, + "StructureDefinition.useContext" + ), + SearchParamDefinition( + "context-type-value", + Enumerations.SearchParamType.COMPOSITE, + "StructureDefinition.useContext" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "StructureDefinition.identifier" + ), + SearchParamDefinition( + "abstract", + Enumerations.SearchParamType.TOKEN, + "StructureDefinition.abstract" + ), + SearchParamDefinition( + "base", + Enumerations.SearchParamType.REFERENCE, + "StructureDefinition.baseDefinition" + ), + SearchParamDefinition( + "base-path", + Enumerations.SearchParamType.TOKEN, + "StructureDefinition.snapshot.element.base.path | StructureDefinition.differential.element.base.path" + ), + SearchParamDefinition( + "derivation", + Enumerations.SearchParamType.TOKEN, + "StructureDefinition.derivation" + ), + SearchParamDefinition( + "experimental", + Enumerations.SearchParamType.TOKEN, + "StructureDefinition.experimental" + ), + SearchParamDefinition( + "ext-context", + Enumerations.SearchParamType.TOKEN, + "StructureDefinition.context.type" + ), + SearchParamDefinition( + "keyword", + Enumerations.SearchParamType.TOKEN, + "StructureDefinition.keyword" + ), + SearchParamDefinition( + "kind", + Enumerations.SearchParamType.TOKEN, + "StructureDefinition.kind" + ), + SearchParamDefinition( + "path", + Enumerations.SearchParamType.TOKEN, + "StructureDefinition.snapshot.element.path | StructureDefinition.differential.element.path" + ), + SearchParamDefinition("type", Enumerations.SearchParamType.URI, "StructureDefinition.type"), + SearchParamDefinition( + "valueset", + Enumerations.SearchParamType.REFERENCE, + "StructureDefinition.snapshot.element.binding.valueSet" + ), + ) + "EpisodeOfCare" -> + listOf( + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "EpisodeOfCare.period"), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "EpisodeOfCare.identifier" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "EpisodeOfCare.patient" + ), + SearchParamDefinition("type", Enumerations.SearchParamType.TOKEN, "EpisodeOfCare.type"), + SearchParamDefinition( + "care-manager", + Enumerations.SearchParamType.REFERENCE, + "EpisodeOfCare.careManager.where(resolve() is Practitioner)" + ), + SearchParamDefinition( + "condition", + Enumerations.SearchParamType.REFERENCE, + "EpisodeOfCare.diagnosis.condition" + ), + SearchParamDefinition( + "incoming-referral", + Enumerations.SearchParamType.REFERENCE, + "EpisodeOfCare.referralRequest" + ), + SearchParamDefinition( + "organization", + Enumerations.SearchParamType.REFERENCE, + "EpisodeOfCare.managingOrganization" + ), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "EpisodeOfCare.status"), + ) + "ChargeItemDefinition" -> + listOf( + SearchParamDefinition( + "context", + Enumerations.SearchParamType.TOKEN, + "(ChargeItemDefinition.useContext.value as CodeableConcept)" + ), + SearchParamDefinition( + "context-quantity", + Enumerations.SearchParamType.QUANTITY, + "(ChargeItemDefinition.useContext.value as Quantity) | (ChargeItemDefinition.useContext.value as Range)" + ), + SearchParamDefinition( + "context-type", + Enumerations.SearchParamType.TOKEN, + "ChargeItemDefinition.useContext.code" + ), + SearchParamDefinition( + "date", + Enumerations.SearchParamType.DATE, + "ChargeItemDefinition.date" + ), + SearchParamDefinition( + "description", + Enumerations.SearchParamType.STRING, + "ChargeItemDefinition.description" + ), + SearchParamDefinition( + "effective", + Enumerations.SearchParamType.DATE, + "ChargeItemDefinition.effectivePeriod" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "ChargeItemDefinition.identifier" + ), + SearchParamDefinition( + "jurisdiction", + Enumerations.SearchParamType.TOKEN, + "ChargeItemDefinition.jurisdiction" + ), + SearchParamDefinition( + "publisher", + Enumerations.SearchParamType.STRING, + "ChargeItemDefinition.publisher" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "ChargeItemDefinition.status" + ), + SearchParamDefinition( + "title", + Enumerations.SearchParamType.STRING, + "ChargeItemDefinition.title" + ), + SearchParamDefinition("url", Enumerations.SearchParamType.URI, "ChargeItemDefinition.url"), + SearchParamDefinition( + "version", + Enumerations.SearchParamType.TOKEN, + "ChargeItemDefinition.version" + ), + SearchParamDefinition( + "context-type-quantity", + Enumerations.SearchParamType.COMPOSITE, + "ChargeItemDefinition.useContext" + ), + SearchParamDefinition( + "context-type-value", + Enumerations.SearchParamType.COMPOSITE, + "ChargeItemDefinition.useContext" + ), + ) + "Procedure" -> + listOf( + SearchParamDefinition("code", Enumerations.SearchParamType.TOKEN, "Procedure.code"), + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "Procedure.performed"), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "Procedure.identifier" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "Procedure.subject.where(resolve() is Patient)" + ), + SearchParamDefinition( + "encounter", + Enumerations.SearchParamType.REFERENCE, + "Procedure.encounter" + ), + SearchParamDefinition( + "based-on", + Enumerations.SearchParamType.REFERENCE, + "Procedure.basedOn" + ), + SearchParamDefinition("category", Enumerations.SearchParamType.TOKEN, "Procedure.category"), + SearchParamDefinition( + "instantiates-canonical", + Enumerations.SearchParamType.REFERENCE, + "Procedure.instantiatesCanonical" + ), + SearchParamDefinition( + "instantiates-uri", + Enumerations.SearchParamType.URI, + "Procedure.instantiatesUri" + ), + SearchParamDefinition( + "location", + Enumerations.SearchParamType.REFERENCE, + "Procedure.location" + ), + SearchParamDefinition( + "part-of", + Enumerations.SearchParamType.REFERENCE, + "Procedure.partOf" + ), + SearchParamDefinition( + "performer", + Enumerations.SearchParamType.REFERENCE, + "Procedure.performer.actor" + ), + SearchParamDefinition( + "reason-code", + Enumerations.SearchParamType.TOKEN, + "Procedure.reasonCode" + ), + SearchParamDefinition( + "reason-reference", + Enumerations.SearchParamType.REFERENCE, + "Procedure.reasonReference" + ), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "Procedure.status"), + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "Procedure.subject" + ), + ) + "List" -> + listOf( + SearchParamDefinition("code", Enumerations.SearchParamType.TOKEN, "List.code"), + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "List.date"), + SearchParamDefinition("identifier", Enumerations.SearchParamType.TOKEN, "List.identifier"), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "List.subject.where(resolve() is Patient)" + ), + SearchParamDefinition( + "encounter", + Enumerations.SearchParamType.REFERENCE, + "List.encounter" + ), + SearchParamDefinition( + "empty-reason", + Enumerations.SearchParamType.TOKEN, + "List.emptyReason" + ), + SearchParamDefinition("item", Enumerations.SearchParamType.REFERENCE, "List.entry.item"), + SearchParamDefinition("notes", Enumerations.SearchParamType.STRING, "List.note.text"), + SearchParamDefinition("source", Enumerations.SearchParamType.REFERENCE, "List.source"), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "List.status"), + SearchParamDefinition("subject", Enumerations.SearchParamType.REFERENCE, "List.subject"), + SearchParamDefinition("title", Enumerations.SearchParamType.STRING, "List.title"), + ) + "ConceptMap" -> + listOf( + SearchParamDefinition( + "context", + Enumerations.SearchParamType.TOKEN, + "(ConceptMap.useContext.value as CodeableConcept)" + ), + SearchParamDefinition( + "context-quantity", + Enumerations.SearchParamType.QUANTITY, + "(ConceptMap.useContext.value as Quantity) | (ConceptMap.useContext.value as Range)" + ), + SearchParamDefinition( + "context-type", + Enumerations.SearchParamType.TOKEN, + "ConceptMap.useContext.code" + ), + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "ConceptMap.date"), + SearchParamDefinition( + "description", + Enumerations.SearchParamType.STRING, + "ConceptMap.description" + ), + SearchParamDefinition( + "jurisdiction", + Enumerations.SearchParamType.TOKEN, + "ConceptMap.jurisdiction" + ), + SearchParamDefinition("name", Enumerations.SearchParamType.STRING, "ConceptMap.name"), + SearchParamDefinition( + "publisher", + Enumerations.SearchParamType.STRING, + "ConceptMap.publisher" + ), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "ConceptMap.status"), + SearchParamDefinition("title", Enumerations.SearchParamType.STRING, "ConceptMap.title"), + SearchParamDefinition("url", Enumerations.SearchParamType.URI, "ConceptMap.url"), + SearchParamDefinition("version", Enumerations.SearchParamType.TOKEN, "ConceptMap.version"), + SearchParamDefinition( + "context-type-quantity", + Enumerations.SearchParamType.COMPOSITE, + "ConceptMap.useContext" + ), + SearchParamDefinition( + "context-type-value", + Enumerations.SearchParamType.COMPOSITE, + "ConceptMap.useContext" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "ConceptMap.identifier" + ), + SearchParamDefinition( + "dependson", + Enumerations.SearchParamType.URI, + "ConceptMap.group.element.target.dependsOn.property" + ), + SearchParamDefinition( + "other", + Enumerations.SearchParamType.REFERENCE, + "ConceptMap.group.unmapped.url" + ), + SearchParamDefinition( + "product", + Enumerations.SearchParamType.URI, + "ConceptMap.group.element.target.product.property" + ), + SearchParamDefinition( + "source", + Enumerations.SearchParamType.REFERENCE, + "(ConceptMap.source as canonical)" + ), + SearchParamDefinition( + "source-code", + Enumerations.SearchParamType.TOKEN, + "ConceptMap.group.element.code" + ), + SearchParamDefinition( + "source-system", + Enumerations.SearchParamType.URI, + "ConceptMap.group.source" + ), + SearchParamDefinition( + "source-uri", + Enumerations.SearchParamType.REFERENCE, + "(ConceptMap.source as uri)" + ), + SearchParamDefinition( + "target", + Enumerations.SearchParamType.REFERENCE, + "(ConceptMap.target as canonical)" + ), + SearchParamDefinition( + "target-code", + Enumerations.SearchParamType.TOKEN, + "ConceptMap.group.element.target.code" + ), + SearchParamDefinition( + "target-system", + Enumerations.SearchParamType.URI, + "ConceptMap.group.target" + ), + SearchParamDefinition( + "target-uri", + Enumerations.SearchParamType.REFERENCE, + "(ConceptMap.target as uri)" + ), + ) + "OperationDefinition" -> + listOf( + SearchParamDefinition( + "context", + Enumerations.SearchParamType.TOKEN, + "(OperationDefinition.useContext.value as CodeableConcept)" + ), + SearchParamDefinition( + "context-quantity", + Enumerations.SearchParamType.QUANTITY, + "(OperationDefinition.useContext.value as Quantity) | (OperationDefinition.useContext.value as Range)" + ), + SearchParamDefinition( + "context-type", + Enumerations.SearchParamType.TOKEN, + "OperationDefinition.useContext.code" + ), + SearchParamDefinition( + "date", + Enumerations.SearchParamType.DATE, + "OperationDefinition.date" + ), + SearchParamDefinition( + "description", + Enumerations.SearchParamType.STRING, + "OperationDefinition.description" + ), + SearchParamDefinition( + "jurisdiction", + Enumerations.SearchParamType.TOKEN, + "OperationDefinition.jurisdiction" + ), + SearchParamDefinition( + "name", + Enumerations.SearchParamType.STRING, + "OperationDefinition.name" + ), + SearchParamDefinition( + "publisher", + Enumerations.SearchParamType.STRING, + "OperationDefinition.publisher" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "OperationDefinition.status" + ), + SearchParamDefinition( + "title", + Enumerations.SearchParamType.STRING, + "OperationDefinition.title" + ), + SearchParamDefinition("url", Enumerations.SearchParamType.URI, "OperationDefinition.url"), + SearchParamDefinition( + "version", + Enumerations.SearchParamType.TOKEN, + "OperationDefinition.version" + ), + SearchParamDefinition( + "context-type-quantity", + Enumerations.SearchParamType.COMPOSITE, + "OperationDefinition.useContext" + ), + SearchParamDefinition( + "context-type-value", + Enumerations.SearchParamType.COMPOSITE, + "OperationDefinition.useContext" + ), + SearchParamDefinition( + "base", + Enumerations.SearchParamType.REFERENCE, + "OperationDefinition.base" + ), + SearchParamDefinition( + "code", + Enumerations.SearchParamType.TOKEN, + "OperationDefinition.code" + ), + SearchParamDefinition( + "input-profile", + Enumerations.SearchParamType.REFERENCE, + "OperationDefinition.inputProfile" + ), + SearchParamDefinition( + "instance", + Enumerations.SearchParamType.TOKEN, + "OperationDefinition.instance" + ), + SearchParamDefinition( + "kind", + Enumerations.SearchParamType.TOKEN, + "OperationDefinition.kind" + ), + SearchParamDefinition( + "output-profile", + Enumerations.SearchParamType.REFERENCE, + "OperationDefinition.outputProfile" + ), + SearchParamDefinition( + "system", + Enumerations.SearchParamType.TOKEN, + "OperationDefinition.system" + ), + SearchParamDefinition( + "type", + Enumerations.SearchParamType.TOKEN, + "OperationDefinition.type" + ), + ) + "ValueSet" -> + listOf( + SearchParamDefinition( + "context", + Enumerations.SearchParamType.TOKEN, + "(ValueSet.useContext.value as CodeableConcept)" + ), + SearchParamDefinition( + "context-quantity", + Enumerations.SearchParamType.QUANTITY, + "(ValueSet.useContext.value as Quantity) | (ValueSet.useContext.value as Range)" + ), + SearchParamDefinition( + "context-type", + Enumerations.SearchParamType.TOKEN, + "ValueSet.useContext.code" + ), + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "ValueSet.date"), + SearchParamDefinition( + "description", + Enumerations.SearchParamType.STRING, + "ValueSet.description" + ), + SearchParamDefinition( + "jurisdiction", + Enumerations.SearchParamType.TOKEN, + "ValueSet.jurisdiction" + ), + SearchParamDefinition("name", Enumerations.SearchParamType.STRING, "ValueSet.name"), + SearchParamDefinition( + "publisher", + Enumerations.SearchParamType.STRING, + "ValueSet.publisher" + ), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "ValueSet.status"), + SearchParamDefinition("title", Enumerations.SearchParamType.STRING, "ValueSet.title"), + SearchParamDefinition("url", Enumerations.SearchParamType.URI, "ValueSet.url"), + SearchParamDefinition("version", Enumerations.SearchParamType.TOKEN, "ValueSet.version"), + SearchParamDefinition( + "context-type-quantity", + Enumerations.SearchParamType.COMPOSITE, + "ValueSet.useContext" + ), + SearchParamDefinition( + "context-type-value", + Enumerations.SearchParamType.COMPOSITE, + "ValueSet.useContext" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "ValueSet.identifier" + ), + SearchParamDefinition( + "code", + Enumerations.SearchParamType.TOKEN, + "ValueSet.expansion.contains.code | ValueSet.compose.include.concept.code" + ), + SearchParamDefinition( + "expansion", + Enumerations.SearchParamType.URI, + "ValueSet.expansion.identifier" + ), + SearchParamDefinition( + "reference", + Enumerations.SearchParamType.URI, + "ValueSet.compose.include.system" + ), + ) + "MedicationRequest" -> + listOf( + SearchParamDefinition( + "code", + Enumerations.SearchParamType.TOKEN, + "(MedicationRequest.medication as CodeableConcept)" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "MedicationRequest.identifier" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "MedicationRequest.subject.where(resolve() is Patient)" + ), + SearchParamDefinition( + "medication", + Enumerations.SearchParamType.REFERENCE, + "(MedicationRequest.medication as Reference)" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "MedicationRequest.status" + ), + SearchParamDefinition( + "authoredon", + Enumerations.SearchParamType.DATE, + "MedicationRequest.authoredOn" + ), + SearchParamDefinition( + "category", + Enumerations.SearchParamType.TOKEN, + "MedicationRequest.category" + ), + SearchParamDefinition( + "date", + Enumerations.SearchParamType.DATE, + "MedicationRequest.dosageInstruction.timing.event" + ), + SearchParamDefinition( + "encounter", + Enumerations.SearchParamType.REFERENCE, + "MedicationRequest.encounter" + ), + SearchParamDefinition( + "intended-dispenser", + Enumerations.SearchParamType.REFERENCE, + "MedicationRequest.dispenseRequest.performer" + ), + SearchParamDefinition( + "intended-performer", + Enumerations.SearchParamType.REFERENCE, + "MedicationRequest.performer" + ), + SearchParamDefinition( + "intended-performertype", + Enumerations.SearchParamType.TOKEN, + "MedicationRequest.performerType" + ), + SearchParamDefinition( + "intent", + Enumerations.SearchParamType.TOKEN, + "MedicationRequest.intent" + ), + SearchParamDefinition( + "priority", + Enumerations.SearchParamType.TOKEN, + "MedicationRequest.priority" + ), + SearchParamDefinition( + "requester", + Enumerations.SearchParamType.REFERENCE, + "MedicationRequest.requester" + ), + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "MedicationRequest.subject" + ), + ) + "Immunization" -> + listOf( + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "Immunization.occurrence"), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "Immunization.identifier" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "Immunization.patient" + ), + SearchParamDefinition( + "location", + Enumerations.SearchParamType.REFERENCE, + "Immunization.location" + ), + SearchParamDefinition( + "lot-number", + Enumerations.SearchParamType.STRING, + "Immunization.lotNumber" + ), + SearchParamDefinition( + "manufacturer", + Enumerations.SearchParamType.REFERENCE, + "Immunization.manufacturer" + ), + SearchParamDefinition( + "performer", + Enumerations.SearchParamType.REFERENCE, + "Immunization.performer.actor" + ), + SearchParamDefinition( + "reaction", + Enumerations.SearchParamType.REFERENCE, + "Immunization.reaction.detail" + ), + SearchParamDefinition( + "reaction-date", + Enumerations.SearchParamType.DATE, + "Immunization.reaction.date" + ), + SearchParamDefinition( + "reason-code", + Enumerations.SearchParamType.TOKEN, + "Immunization.reasonCode" + ), + SearchParamDefinition( + "reason-reference", + Enumerations.SearchParamType.REFERENCE, + "Immunization.reasonReference" + ), + SearchParamDefinition( + "series", + Enumerations.SearchParamType.STRING, + "Immunization.protocolApplied.series" + ), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "Immunization.status"), + SearchParamDefinition( + "status-reason", + Enumerations.SearchParamType.TOKEN, + "Immunization.statusReason" + ), + SearchParamDefinition( + "target-disease", + Enumerations.SearchParamType.TOKEN, + "Immunization.protocolApplied.targetDisease" + ), + SearchParamDefinition( + "vaccine-code", + Enumerations.SearchParamType.TOKEN, + "Immunization.vaccineCode" + ), + ) + "EffectEvidenceSynthesis" -> + listOf( + SearchParamDefinition( + "context", + Enumerations.SearchParamType.TOKEN, + "(EffectEvidenceSynthesis.useContext.value as CodeableConcept)" + ), + SearchParamDefinition( + "context-quantity", + Enumerations.SearchParamType.QUANTITY, + "(EffectEvidenceSynthesis.useContext.value as Quantity) | (EffectEvidenceSynthesis.useContext.value as Range)" + ), + SearchParamDefinition( + "context-type", + Enumerations.SearchParamType.TOKEN, + "EffectEvidenceSynthesis.useContext.code" + ), + SearchParamDefinition( + "date", + Enumerations.SearchParamType.DATE, + "EffectEvidenceSynthesis.date" + ), + SearchParamDefinition( + "description", + Enumerations.SearchParamType.STRING, + "EffectEvidenceSynthesis.description" + ), + SearchParamDefinition( + "effective", + Enumerations.SearchParamType.DATE, + "EffectEvidenceSynthesis.effectivePeriod" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "EffectEvidenceSynthesis.identifier" + ), + SearchParamDefinition( + "jurisdiction", + Enumerations.SearchParamType.TOKEN, + "EffectEvidenceSynthesis.jurisdiction" + ), + SearchParamDefinition( + "name", + Enumerations.SearchParamType.STRING, + "EffectEvidenceSynthesis.name" + ), + SearchParamDefinition( + "publisher", + Enumerations.SearchParamType.STRING, + "EffectEvidenceSynthesis.publisher" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "EffectEvidenceSynthesis.status" + ), + SearchParamDefinition( + "title", + Enumerations.SearchParamType.STRING, + "EffectEvidenceSynthesis.title" + ), + SearchParamDefinition( + "url", + Enumerations.SearchParamType.URI, + "EffectEvidenceSynthesis.url" + ), + SearchParamDefinition( + "version", + Enumerations.SearchParamType.TOKEN, + "EffectEvidenceSynthesis.version" + ), + SearchParamDefinition( + "context-type-quantity", + Enumerations.SearchParamType.COMPOSITE, + "EffectEvidenceSynthesis.useContext" + ), + SearchParamDefinition( + "context-type-value", + Enumerations.SearchParamType.COMPOSITE, + "EffectEvidenceSynthesis.useContext" + ), + ) + "Device" -> + listOf( + SearchParamDefinition( + "device-name", + Enumerations.SearchParamType.STRING, + "Device.deviceName.name | Device.type.coding.display | Device.type.text" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "Device.identifier" + ), + SearchParamDefinition( + "location", + Enumerations.SearchParamType.REFERENCE, + "Device.location" + ), + SearchParamDefinition( + "manufacturer", + Enumerations.SearchParamType.STRING, + "Device.manufacturer" + ), + SearchParamDefinition("model", Enumerations.SearchParamType.STRING, "Device.modelNumber"), + SearchParamDefinition( + "organization", + Enumerations.SearchParamType.REFERENCE, + "Device.owner" + ), + SearchParamDefinition("patient", Enumerations.SearchParamType.REFERENCE, "Device.patient"), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "Device.status"), + SearchParamDefinition("type", Enumerations.SearchParamType.TOKEN, "Device.type"), + SearchParamDefinition( + "udi-carrier", + Enumerations.SearchParamType.STRING, + "Device.udiCarrier.carrierHRF" + ), + SearchParamDefinition( + "udi-di", + Enumerations.SearchParamType.STRING, + "Device.udiCarrier.deviceIdentifier" + ), + SearchParamDefinition("url", Enumerations.SearchParamType.URI, "Device.url"), + ) + "VisionPrescription" -> + listOf( + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "VisionPrescription.identifier" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "VisionPrescription.patient" + ), + SearchParamDefinition( + "encounter", + Enumerations.SearchParamType.REFERENCE, + "VisionPrescription.encounter" + ), + SearchParamDefinition( + "datewritten", + Enumerations.SearchParamType.DATE, + "VisionPrescription.dateWritten" + ), + SearchParamDefinition( + "prescriber", + Enumerations.SearchParamType.REFERENCE, + "VisionPrescription.prescriber" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "VisionPrescription.status" + ), + ) + "Resource" -> + listOf( + SearchParamDefinition("_id", Enumerations.SearchParamType.TOKEN, "Resource.id"), + SearchParamDefinition( + "_lastUpdated", + Enumerations.SearchParamType.DATE, + "Resource.meta.lastUpdated" + ), + SearchParamDefinition( + "_profile", + Enumerations.SearchParamType.URI, + "Resource.meta.profile" + ), + SearchParamDefinition( + "_security", + Enumerations.SearchParamType.TOKEN, + "Resource.meta.security" + ), + SearchParamDefinition("_source", Enumerations.SearchParamType.URI, "Resource.meta.source"), + SearchParamDefinition("_tag", Enumerations.SearchParamType.TOKEN, "Resource.meta.tag"), + ) + "Media" -> + listOf( + SearchParamDefinition("based-on", Enumerations.SearchParamType.REFERENCE, "Media.basedOn"), + SearchParamDefinition("created", Enumerations.SearchParamType.DATE, "Media.created"), + SearchParamDefinition("device", Enumerations.SearchParamType.REFERENCE, "Media.device"), + SearchParamDefinition( + "encounter", + Enumerations.SearchParamType.REFERENCE, + "Media.encounter" + ), + SearchParamDefinition("identifier", Enumerations.SearchParamType.TOKEN, "Media.identifier"), + SearchParamDefinition("modality", Enumerations.SearchParamType.TOKEN, "Media.modality"), + SearchParamDefinition("operator", Enumerations.SearchParamType.REFERENCE, "Media.operator"), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "Media.subject.where(resolve() is Patient)" + ), + SearchParamDefinition("site", Enumerations.SearchParamType.TOKEN, "Media.bodySite"), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "Media.status"), + SearchParamDefinition("subject", Enumerations.SearchParamType.REFERENCE, "Media.subject"), + SearchParamDefinition("type", Enumerations.SearchParamType.TOKEN, "Media.type"), + SearchParamDefinition("view", Enumerations.SearchParamType.TOKEN, "Media.view"), + ) + "MedicinalProductContraindication" -> + listOf( + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "MedicinalProductContraindication.subject" + ), + ) + "EvidenceVariable" -> + listOf( + SearchParamDefinition( + "composed-of", + Enumerations.SearchParamType.REFERENCE, + "EvidenceVariable.relatedArtifact.where(type='composed-of').resource" + ), + SearchParamDefinition( + "context", + Enumerations.SearchParamType.TOKEN, + "(EvidenceVariable.useContext.value as CodeableConcept)" + ), + SearchParamDefinition( + "context-quantity", + Enumerations.SearchParamType.QUANTITY, + "(EvidenceVariable.useContext.value as Quantity) | (EvidenceVariable.useContext.value as Range)" + ), + SearchParamDefinition( + "context-type", + Enumerations.SearchParamType.TOKEN, + "EvidenceVariable.useContext.code" + ), + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "EvidenceVariable.date"), + SearchParamDefinition( + "depends-on", + Enumerations.SearchParamType.REFERENCE, + "EvidenceVariable.relatedArtifact.where(type='depends-on').resource" + ), + SearchParamDefinition( + "derived-from", + Enumerations.SearchParamType.REFERENCE, + "EvidenceVariable.relatedArtifact.where(type='derived-from').resource" + ), + SearchParamDefinition( + "description", + Enumerations.SearchParamType.STRING, + "EvidenceVariable.description" + ), + SearchParamDefinition( + "effective", + Enumerations.SearchParamType.DATE, + "EvidenceVariable.effectivePeriod" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "EvidenceVariable.identifier" + ), + SearchParamDefinition( + "jurisdiction", + Enumerations.SearchParamType.TOKEN, + "EvidenceVariable.jurisdiction" + ), + SearchParamDefinition("name", Enumerations.SearchParamType.STRING, "EvidenceVariable.name"), + SearchParamDefinition( + "predecessor", + Enumerations.SearchParamType.REFERENCE, + "EvidenceVariable.relatedArtifact.where(type='predecessor').resource" + ), + SearchParamDefinition( + "publisher", + Enumerations.SearchParamType.STRING, + "EvidenceVariable.publisher" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "EvidenceVariable.status" + ), + SearchParamDefinition( + "successor", + Enumerations.SearchParamType.REFERENCE, + "EvidenceVariable.relatedArtifact.where(type='successor').resource" + ), + SearchParamDefinition( + "title", + Enumerations.SearchParamType.STRING, + "EvidenceVariable.title" + ), + SearchParamDefinition( + "topic", + Enumerations.SearchParamType.TOKEN, + "EvidenceVariable.topic" + ), + SearchParamDefinition("url", Enumerations.SearchParamType.URI, "EvidenceVariable.url"), + SearchParamDefinition( + "version", + Enumerations.SearchParamType.TOKEN, + "EvidenceVariable.version" + ), + SearchParamDefinition( + "context-type-quantity", + Enumerations.SearchParamType.COMPOSITE, + "EvidenceVariable.useContext" + ), + SearchParamDefinition( + "context-type-value", + Enumerations.SearchParamType.COMPOSITE, + "EvidenceVariable.useContext" + ), + ) + "MolecularSequence" -> + listOf( + SearchParamDefinition( + "chromosome", + Enumerations.SearchParamType.TOKEN, + "MolecularSequence.referenceSeq.chromosome" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "MolecularSequence.identifier" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "MolecularSequence.patient" + ), + SearchParamDefinition( + "referenceseqid", + Enumerations.SearchParamType.TOKEN, + "MolecularSequence.referenceSeq.referenceSeqId" + ), + SearchParamDefinition("type", Enumerations.SearchParamType.TOKEN, "MolecularSequence.type"), + SearchParamDefinition( + "variant-end", + Enumerations.SearchParamType.NUMBER, + "MolecularSequence.variant.end" + ), + SearchParamDefinition( + "variant-start", + Enumerations.SearchParamType.NUMBER, + "MolecularSequence.variant.start" + ), + SearchParamDefinition( + "window-end", + Enumerations.SearchParamType.NUMBER, + "MolecularSequence.referenceSeq.windowEnd" + ), + SearchParamDefinition( + "window-start", + Enumerations.SearchParamType.NUMBER, + "MolecularSequence.referenceSeq.windowStart" + ), + SearchParamDefinition( + "chromosome-variant-coordinate", + Enumerations.SearchParamType.COMPOSITE, + "MolecularSequence.variant" + ), + SearchParamDefinition( + "chromosome-window-coordinate", + Enumerations.SearchParamType.COMPOSITE, + "MolecularSequence.referenceSeq" + ), + SearchParamDefinition( + "referenceseqid-variant-coordinate", + Enumerations.SearchParamType.COMPOSITE, + "MolecularSequence.variant" + ), + SearchParamDefinition( + "referenceseqid-window-coordinate", + Enumerations.SearchParamType.COMPOSITE, + "MolecularSequence.referenceSeq" + ), + ) + "MedicinalProduct" -> + listOf( + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "MedicinalProduct.identifier" + ), + SearchParamDefinition( + "name", + Enumerations.SearchParamType.STRING, + "MedicinalProduct.name.productName" + ), + SearchParamDefinition( + "name-language", + Enumerations.SearchParamType.TOKEN, + "MedicinalProduct.name.countryLanguage.language" + ), + ) + "DeviceMetric" -> + listOf( + SearchParamDefinition( + "category", + Enumerations.SearchParamType.TOKEN, + "DeviceMetric.category" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "DeviceMetric.identifier" + ), + SearchParamDefinition( + "parent", + Enumerations.SearchParamType.REFERENCE, + "DeviceMetric.parent" + ), + SearchParamDefinition( + "source", + Enumerations.SearchParamType.REFERENCE, + "DeviceMetric.source" + ), + SearchParamDefinition("type", Enumerations.SearchParamType.TOKEN, "DeviceMetric.type"), + ) + "Flag" -> + listOf( + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "Flag.period"), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "Flag.subject.where(resolve() is Patient)" + ), + SearchParamDefinition( + "encounter", + Enumerations.SearchParamType.REFERENCE, + "Flag.encounter" + ), + SearchParamDefinition("author", Enumerations.SearchParamType.REFERENCE, "Flag.author"), + SearchParamDefinition("identifier", Enumerations.SearchParamType.TOKEN, "Flag.identifier"), + SearchParamDefinition("subject", Enumerations.SearchParamType.REFERENCE, "Flag.subject"), + ) + "CodeSystem" -> + listOf( + SearchParamDefinition( + "context", + Enumerations.SearchParamType.TOKEN, + "(CodeSystem.useContext.value as CodeableConcept)" + ), + SearchParamDefinition( + "context-quantity", + Enumerations.SearchParamType.QUANTITY, + "(CodeSystem.useContext.value as Quantity) | (CodeSystem.useContext.value as Range)" + ), + SearchParamDefinition( + "context-type", + Enumerations.SearchParamType.TOKEN, + "CodeSystem.useContext.code" + ), + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "CodeSystem.date"), + SearchParamDefinition( + "description", + Enumerations.SearchParamType.STRING, + "CodeSystem.description" + ), + SearchParamDefinition( + "jurisdiction", + Enumerations.SearchParamType.TOKEN, + "CodeSystem.jurisdiction" + ), + SearchParamDefinition("name", Enumerations.SearchParamType.STRING, "CodeSystem.name"), + SearchParamDefinition( + "publisher", + Enumerations.SearchParamType.STRING, + "CodeSystem.publisher" + ), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "CodeSystem.status"), + SearchParamDefinition("title", Enumerations.SearchParamType.STRING, "CodeSystem.title"), + SearchParamDefinition("url", Enumerations.SearchParamType.URI, "CodeSystem.url"), + SearchParamDefinition("version", Enumerations.SearchParamType.TOKEN, "CodeSystem.version"), + SearchParamDefinition( + "context-type-quantity", + Enumerations.SearchParamType.COMPOSITE, + "CodeSystem.useContext" + ), + SearchParamDefinition( + "context-type-value", + Enumerations.SearchParamType.COMPOSITE, + "CodeSystem.useContext" + ), + SearchParamDefinition( + "code", + Enumerations.SearchParamType.TOKEN, + "CodeSystem.concept.code" + ), + SearchParamDefinition( + "content-mode", + Enumerations.SearchParamType.TOKEN, + "CodeSystem.content" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "CodeSystem.identifier" + ), + SearchParamDefinition( + "language", + Enumerations.SearchParamType.TOKEN, + "CodeSystem.concept.designation.language" + ), + SearchParamDefinition( + "supplements", + Enumerations.SearchParamType.REFERENCE, + "CodeSystem.supplements" + ), + SearchParamDefinition("system", Enumerations.SearchParamType.URI, "CodeSystem.url"), + ) + "RiskEvidenceSynthesis" -> + listOf( + SearchParamDefinition( + "context", + Enumerations.SearchParamType.TOKEN, + "(RiskEvidenceSynthesis.useContext.value as CodeableConcept)" + ), + SearchParamDefinition( + "context-quantity", + Enumerations.SearchParamType.QUANTITY, + "(RiskEvidenceSynthesis.useContext.value as Quantity) | (RiskEvidenceSynthesis.useContext.value as Range)" + ), + SearchParamDefinition( + "context-type", + Enumerations.SearchParamType.TOKEN, + "RiskEvidenceSynthesis.useContext.code" + ), + SearchParamDefinition( + "date", + Enumerations.SearchParamType.DATE, + "RiskEvidenceSynthesis.date" + ), + SearchParamDefinition( + "description", + Enumerations.SearchParamType.STRING, + "RiskEvidenceSynthesis.description" + ), + SearchParamDefinition( + "effective", + Enumerations.SearchParamType.DATE, + "RiskEvidenceSynthesis.effectivePeriod" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "RiskEvidenceSynthesis.identifier" + ), + SearchParamDefinition( + "jurisdiction", + Enumerations.SearchParamType.TOKEN, + "RiskEvidenceSynthesis.jurisdiction" + ), + SearchParamDefinition( + "name", + Enumerations.SearchParamType.STRING, + "RiskEvidenceSynthesis.name" + ), + SearchParamDefinition( + "publisher", + Enumerations.SearchParamType.STRING, + "RiskEvidenceSynthesis.publisher" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "RiskEvidenceSynthesis.status" + ), + SearchParamDefinition( + "title", + Enumerations.SearchParamType.STRING, + "RiskEvidenceSynthesis.title" + ), + SearchParamDefinition("url", Enumerations.SearchParamType.URI, "RiskEvidenceSynthesis.url"), + SearchParamDefinition( + "version", + Enumerations.SearchParamType.TOKEN, + "RiskEvidenceSynthesis.version" + ), + SearchParamDefinition( + "context-type-quantity", + Enumerations.SearchParamType.COMPOSITE, + "RiskEvidenceSynthesis.useContext" + ), + SearchParamDefinition( + "context-type-value", + Enumerations.SearchParamType.COMPOSITE, + "RiskEvidenceSynthesis.useContext" + ), + ) + "AppointmentResponse" -> + listOf( + SearchParamDefinition( + "actor", + Enumerations.SearchParamType.REFERENCE, + "AppointmentResponse.actor" + ), + SearchParamDefinition( + "appointment", + Enumerations.SearchParamType.REFERENCE, + "AppointmentResponse.appointment" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "AppointmentResponse.identifier" + ), + SearchParamDefinition( + "location", + Enumerations.SearchParamType.REFERENCE, + "AppointmentResponse.actor.where(resolve() is Location)" + ), + SearchParamDefinition( + "part-status", + Enumerations.SearchParamType.TOKEN, + "AppointmentResponse.participantStatus" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "AppointmentResponse.actor.where(resolve() is Patient)" + ), + SearchParamDefinition( + "practitioner", + Enumerations.SearchParamType.REFERENCE, + "AppointmentResponse.actor.where(resolve() is Practitioner)" + ), + ) + "StructureMap" -> + listOf( + SearchParamDefinition( + "context", + Enumerations.SearchParamType.TOKEN, + "(StructureMap.useContext.value as CodeableConcept)" + ), + SearchParamDefinition( + "context-quantity", + Enumerations.SearchParamType.QUANTITY, + "(StructureMap.useContext.value as Quantity) | (StructureMap.useContext.value as Range)" + ), + SearchParamDefinition( + "context-type", + Enumerations.SearchParamType.TOKEN, + "StructureMap.useContext.code" + ), + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "StructureMap.date"), + SearchParamDefinition( + "description", + Enumerations.SearchParamType.STRING, + "StructureMap.description" + ), + SearchParamDefinition( + "jurisdiction", + Enumerations.SearchParamType.TOKEN, + "StructureMap.jurisdiction" + ), + SearchParamDefinition("name", Enumerations.SearchParamType.STRING, "StructureMap.name"), + SearchParamDefinition( + "publisher", + Enumerations.SearchParamType.STRING, + "StructureMap.publisher" + ), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "StructureMap.status"), + SearchParamDefinition("title", Enumerations.SearchParamType.STRING, "StructureMap.title"), + SearchParamDefinition("url", Enumerations.SearchParamType.URI, "StructureMap.url"), + SearchParamDefinition( + "version", + Enumerations.SearchParamType.TOKEN, + "StructureMap.version" + ), + SearchParamDefinition( + "context-type-quantity", + Enumerations.SearchParamType.COMPOSITE, + "StructureMap.useContext" + ), + SearchParamDefinition( + "context-type-value", + Enumerations.SearchParamType.COMPOSITE, + "StructureMap.useContext" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "StructureMap.identifier" + ), + ) + "AdverseEvent" -> + listOf( + SearchParamDefinition( + "actuality", + Enumerations.SearchParamType.TOKEN, + "AdverseEvent.actuality" + ), + SearchParamDefinition( + "category", + Enumerations.SearchParamType.TOKEN, + "AdverseEvent.category" + ), + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "AdverseEvent.date"), + SearchParamDefinition("event", Enumerations.SearchParamType.TOKEN, "AdverseEvent.event"), + SearchParamDefinition( + "location", + Enumerations.SearchParamType.REFERENCE, + "AdverseEvent.location" + ), + SearchParamDefinition( + "recorder", + Enumerations.SearchParamType.REFERENCE, + "AdverseEvent.recorder" + ), + SearchParamDefinition( + "resultingcondition", + Enumerations.SearchParamType.REFERENCE, + "AdverseEvent.resultingCondition" + ), + SearchParamDefinition( + "seriousness", + Enumerations.SearchParamType.TOKEN, + "AdverseEvent.seriousness" + ), + SearchParamDefinition( + "severity", + Enumerations.SearchParamType.TOKEN, + "AdverseEvent.severity" + ), + SearchParamDefinition( + "study", + Enumerations.SearchParamType.REFERENCE, + "AdverseEvent.study" + ), + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "AdverseEvent.subject" + ), + SearchParamDefinition( + "substance", + Enumerations.SearchParamType.REFERENCE, + "AdverseEvent.suspectEntity.instance" + ), + ) + "GuidanceResponse" -> + listOf( + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "GuidanceResponse.identifier" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "GuidanceResponse.subject.where(resolve() is Patient)" + ), + SearchParamDefinition( + "request", + Enumerations.SearchParamType.TOKEN, + "GuidanceResponse.requestIdentifier" + ), + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "GuidanceResponse.subject" + ), + ) + "Observation" -> + listOf( + SearchParamDefinition("code", Enumerations.SearchParamType.TOKEN, "Observation.code"), + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "Observation.effective"), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "Observation.identifier" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "Observation.subject.where(resolve() is Patient)" + ), + SearchParamDefinition( + "encounter", + Enumerations.SearchParamType.REFERENCE, + "Observation.encounter" + ), + SearchParamDefinition( + "based-on", + Enumerations.SearchParamType.REFERENCE, + "Observation.basedOn" + ), + SearchParamDefinition( + "category", + Enumerations.SearchParamType.TOKEN, + "Observation.category" + ), + SearchParamDefinition( + "combo-code", + Enumerations.SearchParamType.TOKEN, + "Observation.code | Observation.component.code" + ), + SearchParamDefinition( + "combo-data-absent-reason", + Enumerations.SearchParamType.TOKEN, + "Observation.dataAbsentReason | Observation.component.dataAbsentReason" + ), + SearchParamDefinition( + "combo-value-concept", + Enumerations.SearchParamType.TOKEN, + "(Observation.value as CodeableConcept) | (Observation.component.value as CodeableConcept)" + ), + SearchParamDefinition( + "combo-value-quantity", + Enumerations.SearchParamType.QUANTITY, + "(Observation.value as Quantity) | (Observation.value as SampledData) | (Observation.component.value as Quantity) | (Observation.component.value as SampledData)" + ), + SearchParamDefinition( + "component-code", + Enumerations.SearchParamType.TOKEN, + "Observation.component.code" + ), + SearchParamDefinition( + "component-data-absent-reason", + Enumerations.SearchParamType.TOKEN, + "Observation.component.dataAbsentReason" + ), + SearchParamDefinition( + "component-value-concept", + Enumerations.SearchParamType.TOKEN, + "(Observation.component.value as CodeableConcept)" + ), + SearchParamDefinition( + "component-value-quantity", + Enumerations.SearchParamType.QUANTITY, + "(Observation.component.value as Quantity) | (Observation.component.value as SampledData)" + ), + SearchParamDefinition( + "data-absent-reason", + Enumerations.SearchParamType.TOKEN, + "Observation.dataAbsentReason" + ), + SearchParamDefinition( + "derived-from", + Enumerations.SearchParamType.REFERENCE, + "Observation.derivedFrom" + ), + SearchParamDefinition( + "device", + Enumerations.SearchParamType.REFERENCE, + "Observation.device" + ), + SearchParamDefinition("focus", Enumerations.SearchParamType.REFERENCE, "Observation.focus"), + SearchParamDefinition( + "has-member", + Enumerations.SearchParamType.REFERENCE, + "Observation.hasMember" + ), + SearchParamDefinition("method", Enumerations.SearchParamType.TOKEN, "Observation.method"), + SearchParamDefinition( + "part-of", + Enumerations.SearchParamType.REFERENCE, + "Observation.partOf" + ), + SearchParamDefinition( + "performer", + Enumerations.SearchParamType.REFERENCE, + "Observation.performer" + ), + SearchParamDefinition( + "specimen", + Enumerations.SearchParamType.REFERENCE, + "Observation.specimen" + ), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "Observation.status"), + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "Observation.subject" + ), + SearchParamDefinition( + "value-concept", + Enumerations.SearchParamType.TOKEN, + "(Observation.value as CodeableConcept)" + ), + SearchParamDefinition( + "value-date", + Enumerations.SearchParamType.DATE, + "(Observation.value as dateTime) | (Observation.value as Period)" + ), + SearchParamDefinition( + "value-quantity", + Enumerations.SearchParamType.QUANTITY, + "(Observation.value as Quantity) | (Observation.value as SampledData)" + ), + SearchParamDefinition( + "value-string", + Enumerations.SearchParamType.STRING, + "(Observation.value as string) | (Observation.value as CodeableConcept).text" + ), + SearchParamDefinition( + "code-value-concept", + Enumerations.SearchParamType.COMPOSITE, + "Observation" + ), + SearchParamDefinition( + "code-value-date", + Enumerations.SearchParamType.COMPOSITE, + "Observation" + ), + SearchParamDefinition( + "code-value-quantity", + Enumerations.SearchParamType.COMPOSITE, + "Observation" + ), + SearchParamDefinition( + "code-value-string", + Enumerations.SearchParamType.COMPOSITE, + "Observation" + ), + SearchParamDefinition( + "combo-code-value-concept", + Enumerations.SearchParamType.COMPOSITE, + "Observation | Observation.component" + ), + SearchParamDefinition( + "combo-code-value-quantity", + Enumerations.SearchParamType.COMPOSITE, + "Observation | Observation.component" + ), + SearchParamDefinition( + "component-code-value-concept", + Enumerations.SearchParamType.COMPOSITE, + "Observation.component" + ), + SearchParamDefinition( + "component-code-value-quantity", + Enumerations.SearchParamType.COMPOSITE, + "Observation.component" + ), + ) + "MedicationAdministration" -> + listOf( + SearchParamDefinition( + "code", + Enumerations.SearchParamType.TOKEN, + "(MedicationAdministration.medication as CodeableConcept)" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "MedicationAdministration.identifier" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "MedicationAdministration.subject.where(resolve() is Patient)" + ), + SearchParamDefinition( + "context", + Enumerations.SearchParamType.REFERENCE, + "MedicationAdministration.context" + ), + SearchParamDefinition( + "device", + Enumerations.SearchParamType.REFERENCE, + "MedicationAdministration.device" + ), + SearchParamDefinition( + "effective-time", + Enumerations.SearchParamType.DATE, + "MedicationAdministration.effective" + ), + SearchParamDefinition( + "medication", + Enumerations.SearchParamType.REFERENCE, + "(MedicationAdministration.medication as Reference)" + ), + SearchParamDefinition( + "performer", + Enumerations.SearchParamType.REFERENCE, + "MedicationAdministration.performer.actor" + ), + SearchParamDefinition( + "reason-given", + Enumerations.SearchParamType.TOKEN, + "MedicationAdministration.reasonCode" + ), + SearchParamDefinition( + "reason-not-given", + Enumerations.SearchParamType.TOKEN, + "MedicationAdministration.statusReason" + ), + SearchParamDefinition( + "request", + Enumerations.SearchParamType.REFERENCE, + "MedicationAdministration.request" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "MedicationAdministration.status" + ), + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "MedicationAdministration.subject" + ), + ) + "EnrollmentResponse" -> + listOf( + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "EnrollmentResponse.identifier" + ), + SearchParamDefinition( + "request", + Enumerations.SearchParamType.REFERENCE, + "EnrollmentResponse.request" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "EnrollmentResponse.status" + ), + ) + "Library" -> + listOf( + SearchParamDefinition( + "composed-of", + Enumerations.SearchParamType.REFERENCE, + "Library.relatedArtifact.where(type='composed-of').resource" + ), + SearchParamDefinition( + "content-type", + Enumerations.SearchParamType.TOKEN, + "Library.content.contentType" + ), + SearchParamDefinition( + "context", + Enumerations.SearchParamType.TOKEN, + "(Library.useContext.value as CodeableConcept)" + ), + SearchParamDefinition( + "context-quantity", + Enumerations.SearchParamType.QUANTITY, + "(Library.useContext.value as Quantity) | (Library.useContext.value as Range)" + ), + SearchParamDefinition( + "context-type", + Enumerations.SearchParamType.TOKEN, + "Library.useContext.code" + ), + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "Library.date"), + SearchParamDefinition( + "depends-on", + Enumerations.SearchParamType.REFERENCE, + "Library.relatedArtifact.where(type='depends-on').resource" + ), + SearchParamDefinition( + "derived-from", + Enumerations.SearchParamType.REFERENCE, + "Library.relatedArtifact.where(type='derived-from').resource" + ), + SearchParamDefinition( + "description", + Enumerations.SearchParamType.STRING, + "Library.description" + ), + SearchParamDefinition( + "effective", + Enumerations.SearchParamType.DATE, + "Library.effectivePeriod" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "Library.identifier" + ), + SearchParamDefinition( + "jurisdiction", + Enumerations.SearchParamType.TOKEN, + "Library.jurisdiction" + ), + SearchParamDefinition("name", Enumerations.SearchParamType.STRING, "Library.name"), + SearchParamDefinition( + "predecessor", + Enumerations.SearchParamType.REFERENCE, + "Library.relatedArtifact.where(type='predecessor').resource" + ), + SearchParamDefinition( + "publisher", + Enumerations.SearchParamType.STRING, + "Library.publisher" + ), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "Library.status"), + SearchParamDefinition( + "successor", + Enumerations.SearchParamType.REFERENCE, + "Library.relatedArtifact.where(type='successor').resource" + ), + SearchParamDefinition("title", Enumerations.SearchParamType.STRING, "Library.title"), + SearchParamDefinition("topic", Enumerations.SearchParamType.TOKEN, "Library.topic"), + SearchParamDefinition("type", Enumerations.SearchParamType.TOKEN, "Library.type"), + SearchParamDefinition("url", Enumerations.SearchParamType.URI, "Library.url"), + SearchParamDefinition("version", Enumerations.SearchParamType.TOKEN, "Library.version"), + SearchParamDefinition( + "context-type-quantity", + Enumerations.SearchParamType.COMPOSITE, + "Library.useContext" + ), + SearchParamDefinition( + "context-type-value", + Enumerations.SearchParamType.COMPOSITE, + "Library.useContext" + ), + ) + "MedicinalProductInteraction" -> + listOf( + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "MedicinalProductInteraction.subject" + ), + ) + "MedicationStatement" -> + listOf( + SearchParamDefinition( + "code", + Enumerations.SearchParamType.TOKEN, + "(MedicationStatement.medication as CodeableConcept)" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "MedicationStatement.identifier" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "MedicationStatement.subject.where(resolve() is Patient)" + ), + SearchParamDefinition( + "medication", + Enumerations.SearchParamType.REFERENCE, + "(MedicationStatement.medication as Reference)" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "MedicationStatement.status" + ), + SearchParamDefinition( + "category", + Enumerations.SearchParamType.TOKEN, + "MedicationStatement.category" + ), + SearchParamDefinition( + "context", + Enumerations.SearchParamType.REFERENCE, + "MedicationStatement.context" + ), + SearchParamDefinition( + "effective", + Enumerations.SearchParamType.DATE, + "MedicationStatement.effective" + ), + SearchParamDefinition( + "part-of", + Enumerations.SearchParamType.REFERENCE, + "MedicationStatement.partOf" + ), + SearchParamDefinition( + "source", + Enumerations.SearchParamType.REFERENCE, + "MedicationStatement.informationSource" + ), + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "MedicationStatement.subject" + ), + ) + "CommunicationRequest" -> + listOf( + SearchParamDefinition( + "authored", + Enumerations.SearchParamType.DATE, + "CommunicationRequest.authoredOn" + ), + SearchParamDefinition( + "based-on", + Enumerations.SearchParamType.REFERENCE, + "CommunicationRequest.basedOn" + ), + SearchParamDefinition( + "category", + Enumerations.SearchParamType.TOKEN, + "CommunicationRequest.category" + ), + SearchParamDefinition( + "encounter", + Enumerations.SearchParamType.REFERENCE, + "CommunicationRequest.encounter" + ), + SearchParamDefinition( + "group-identifier", + Enumerations.SearchParamType.TOKEN, + "CommunicationRequest.groupIdentifier" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "CommunicationRequest.identifier" + ), + SearchParamDefinition( + "medium", + Enumerations.SearchParamType.TOKEN, + "CommunicationRequest.medium" + ), + SearchParamDefinition( + "occurrence", + Enumerations.SearchParamType.DATE, + "(CommunicationRequest.occurrence as dateTime)" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "CommunicationRequest.subject.where(resolve() is Patient)" + ), + SearchParamDefinition( + "priority", + Enumerations.SearchParamType.TOKEN, + "CommunicationRequest.priority" + ), + SearchParamDefinition( + "recipient", + Enumerations.SearchParamType.REFERENCE, + "CommunicationRequest.recipient" + ), + SearchParamDefinition( + "replaces", + Enumerations.SearchParamType.REFERENCE, + "CommunicationRequest.replaces" + ), + SearchParamDefinition( + "requester", + Enumerations.SearchParamType.REFERENCE, + "CommunicationRequest.requester" + ), + SearchParamDefinition( + "sender", + Enumerations.SearchParamType.REFERENCE, + "CommunicationRequest.sender" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "CommunicationRequest.status" + ), + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "CommunicationRequest.subject" + ), + ) + "TestScript" -> + listOf( + SearchParamDefinition( + "context", + Enumerations.SearchParamType.TOKEN, + "(TestScript.useContext.value as CodeableConcept)" + ), + SearchParamDefinition( + "context-quantity", + Enumerations.SearchParamType.QUANTITY, + "(TestScript.useContext.value as Quantity) | (TestScript.useContext.value as Range)" + ), + SearchParamDefinition( + "context-type", + Enumerations.SearchParamType.TOKEN, + "TestScript.useContext.code" + ), + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "TestScript.date"), + SearchParamDefinition( + "description", + Enumerations.SearchParamType.STRING, + "TestScript.description" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "TestScript.identifier" + ), + SearchParamDefinition( + "jurisdiction", + Enumerations.SearchParamType.TOKEN, + "TestScript.jurisdiction" + ), + SearchParamDefinition("name", Enumerations.SearchParamType.STRING, "TestScript.name"), + SearchParamDefinition( + "publisher", + Enumerations.SearchParamType.STRING, + "TestScript.publisher" + ), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "TestScript.status"), + SearchParamDefinition( + "testscript-capability", + Enumerations.SearchParamType.STRING, + "TestScript.metadata.capability.description" + ), + SearchParamDefinition("title", Enumerations.SearchParamType.STRING, "TestScript.title"), + SearchParamDefinition("url", Enumerations.SearchParamType.URI, "TestScript.url"), + SearchParamDefinition("version", Enumerations.SearchParamType.TOKEN, "TestScript.version"), + SearchParamDefinition( + "context-type-quantity", + Enumerations.SearchParamType.COMPOSITE, + "TestScript.useContext" + ), + SearchParamDefinition( + "context-type-value", + Enumerations.SearchParamType.COMPOSITE, + "TestScript.useContext" + ), + ) + "Basic" -> + listOf( + SearchParamDefinition("author", Enumerations.SearchParamType.REFERENCE, "Basic.author"), + SearchParamDefinition("code", Enumerations.SearchParamType.TOKEN, "Basic.code"), + SearchParamDefinition("created", Enumerations.SearchParamType.DATE, "Basic.created"), + SearchParamDefinition("identifier", Enumerations.SearchParamType.TOKEN, "Basic.identifier"), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "Basic.subject.where(resolve() is Patient)" + ), + SearchParamDefinition("subject", Enumerations.SearchParamType.REFERENCE, "Basic.subject"), + ) + "TestReport" -> + listOf( + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "TestReport.identifier" + ), + SearchParamDefinition("issued", Enumerations.SearchParamType.DATE, "TestReport.issued"), + SearchParamDefinition( + "participant", + Enumerations.SearchParamType.URI, + "TestReport.participant.uri" + ), + SearchParamDefinition("result", Enumerations.SearchParamType.TOKEN, "TestReport.result"), + SearchParamDefinition("tester", Enumerations.SearchParamType.STRING, "TestReport.tester"), + SearchParamDefinition( + "testscript", + Enumerations.SearchParamType.REFERENCE, + "TestReport.testScript" + ), + ) + "ClaimResponse" -> + listOf( + SearchParamDefinition( + "created", + Enumerations.SearchParamType.DATE, + "ClaimResponse.created" + ), + SearchParamDefinition( + "disposition", + Enumerations.SearchParamType.STRING, + "ClaimResponse.disposition" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "ClaimResponse.identifier" + ), + SearchParamDefinition( + "insurer", + Enumerations.SearchParamType.REFERENCE, + "ClaimResponse.insurer" + ), + SearchParamDefinition( + "outcome", + Enumerations.SearchParamType.TOKEN, + "ClaimResponse.outcome" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "ClaimResponse.patient" + ), + SearchParamDefinition( + "payment-date", + Enumerations.SearchParamType.DATE, + "ClaimResponse.payment.date" + ), + SearchParamDefinition( + "request", + Enumerations.SearchParamType.REFERENCE, + "ClaimResponse.request" + ), + SearchParamDefinition( + "requestor", + Enumerations.SearchParamType.REFERENCE, + "ClaimResponse.requestor" + ), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "ClaimResponse.status"), + SearchParamDefinition("use", Enumerations.SearchParamType.TOKEN, "ClaimResponse.use"), + ) + "MedicationDispense" -> + listOf( + SearchParamDefinition( + "code", + Enumerations.SearchParamType.TOKEN, + "(MedicationDispense.medication as CodeableConcept)" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "MedicationDispense.identifier" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "MedicationDispense.subject.where(resolve() is Patient)" + ), + SearchParamDefinition( + "medication", + Enumerations.SearchParamType.REFERENCE, + "(MedicationDispense.medication as Reference)" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "MedicationDispense.status" + ), + SearchParamDefinition( + "context", + Enumerations.SearchParamType.REFERENCE, + "MedicationDispense.context" + ), + SearchParamDefinition( + "destination", + Enumerations.SearchParamType.REFERENCE, + "MedicationDispense.destination" + ), + SearchParamDefinition( + "performer", + Enumerations.SearchParamType.REFERENCE, + "MedicationDispense.performer.actor" + ), + SearchParamDefinition( + "prescription", + Enumerations.SearchParamType.REFERENCE, + "MedicationDispense.authorizingPrescription" + ), + SearchParamDefinition( + "receiver", + Enumerations.SearchParamType.REFERENCE, + "MedicationDispense.receiver" + ), + SearchParamDefinition( + "responsibleparty", + Enumerations.SearchParamType.REFERENCE, + "MedicationDispense.substitution.responsibleParty" + ), + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "MedicationDispense.subject" + ), + SearchParamDefinition( + "type", + Enumerations.SearchParamType.TOKEN, + "MedicationDispense.type" + ), + SearchParamDefinition( + "whenhandedover", + Enumerations.SearchParamType.DATE, + "MedicationDispense.whenHandedOver" + ), + SearchParamDefinition( + "whenprepared", + Enumerations.SearchParamType.DATE, + "MedicationDispense.whenPrepared" + ), + ) + "DiagnosticReport" -> + listOf( + SearchParamDefinition("code", Enumerations.SearchParamType.TOKEN, "DiagnosticReport.code"), + SearchParamDefinition( + "date", + Enumerations.SearchParamType.DATE, + "DiagnosticReport.effective" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "DiagnosticReport.identifier" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "DiagnosticReport.subject.where(resolve() is Patient)" + ), + SearchParamDefinition( + "encounter", + Enumerations.SearchParamType.REFERENCE, + "DiagnosticReport.encounter" + ), + SearchParamDefinition( + "based-on", + Enumerations.SearchParamType.REFERENCE, + "DiagnosticReport.basedOn" + ), + SearchParamDefinition( + "category", + Enumerations.SearchParamType.TOKEN, + "DiagnosticReport.category" + ), + SearchParamDefinition( + "conclusion", + Enumerations.SearchParamType.TOKEN, + "DiagnosticReport.conclusionCode" + ), + SearchParamDefinition( + "issued", + Enumerations.SearchParamType.DATE, + "DiagnosticReport.issued" + ), + SearchParamDefinition( + "media", + Enumerations.SearchParamType.REFERENCE, + "DiagnosticReport.media.link" + ), + SearchParamDefinition( + "performer", + Enumerations.SearchParamType.REFERENCE, + "DiagnosticReport.performer" + ), + SearchParamDefinition( + "result", + Enumerations.SearchParamType.REFERENCE, + "DiagnosticReport.result" + ), + SearchParamDefinition( + "results-interpreter", + Enumerations.SearchParamType.REFERENCE, + "DiagnosticReport.resultsInterpreter" + ), + SearchParamDefinition( + "specimen", + Enumerations.SearchParamType.REFERENCE, + "DiagnosticReport.specimen" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "DiagnosticReport.status" + ), + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "DiagnosticReport.subject" + ), + ) + "OrganizationAffiliation" -> + listOf( + SearchParamDefinition( + "active", + Enumerations.SearchParamType.TOKEN, + "OrganizationAffiliation.active" + ), + SearchParamDefinition( + "date", + Enumerations.SearchParamType.DATE, + "OrganizationAffiliation.period" + ), + SearchParamDefinition( + "email", + Enumerations.SearchParamType.TOKEN, + "OrganizationAffiliation.telecom.where(system='email')" + ), + SearchParamDefinition( + "endpoint", + Enumerations.SearchParamType.REFERENCE, + "OrganizationAffiliation.endpoint" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "OrganizationAffiliation.identifier" + ), + SearchParamDefinition( + "location", + Enumerations.SearchParamType.REFERENCE, + "OrganizationAffiliation.location" + ), + SearchParamDefinition( + "network", + Enumerations.SearchParamType.REFERENCE, + "OrganizationAffiliation.network" + ), + SearchParamDefinition( + "participating-organization", + Enumerations.SearchParamType.REFERENCE, + "OrganizationAffiliation.participatingOrganization" + ), + SearchParamDefinition( + "phone", + Enumerations.SearchParamType.TOKEN, + "OrganizationAffiliation.telecom.where(system='phone')" + ), + SearchParamDefinition( + "primary-organization", + Enumerations.SearchParamType.REFERENCE, + "OrganizationAffiliation.organization" + ), + SearchParamDefinition( + "role", + Enumerations.SearchParamType.TOKEN, + "OrganizationAffiliation.code" + ), + SearchParamDefinition( + "service", + Enumerations.SearchParamType.REFERENCE, + "OrganizationAffiliation.healthcareService" + ), + SearchParamDefinition( + "specialty", + Enumerations.SearchParamType.TOKEN, + "OrganizationAffiliation.specialty" + ), + SearchParamDefinition( + "telecom", + Enumerations.SearchParamType.TOKEN, + "OrganizationAffiliation.telecom" + ), + ) + "HealthcareService" -> + listOf( + SearchParamDefinition( + "active", + Enumerations.SearchParamType.TOKEN, + "HealthcareService.active" + ), + SearchParamDefinition( + "characteristic", + Enumerations.SearchParamType.TOKEN, + "HealthcareService.characteristic" + ), + SearchParamDefinition( + "coverage-area", + Enumerations.SearchParamType.REFERENCE, + "HealthcareService.coverageArea" + ), + SearchParamDefinition( + "endpoint", + Enumerations.SearchParamType.REFERENCE, + "HealthcareService.endpoint" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "HealthcareService.identifier" + ), + SearchParamDefinition( + "location", + Enumerations.SearchParamType.REFERENCE, + "HealthcareService.location" + ), + SearchParamDefinition( + "name", + Enumerations.SearchParamType.STRING, + "HealthcareService.name" + ), + SearchParamDefinition( + "organization", + Enumerations.SearchParamType.REFERENCE, + "HealthcareService.providedBy" + ), + SearchParamDefinition( + "program", + Enumerations.SearchParamType.TOKEN, + "HealthcareService.program" + ), + SearchParamDefinition( + "service-category", + Enumerations.SearchParamType.TOKEN, + "HealthcareService.category" + ), + SearchParamDefinition( + "service-type", + Enumerations.SearchParamType.TOKEN, + "HealthcareService.type" + ), + SearchParamDefinition( + "specialty", + Enumerations.SearchParamType.TOKEN, + "HealthcareService.specialty" + ), + ) + "MedicinalProductIndication" -> + listOf( + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "MedicinalProductIndication.subject" + ), + ) + "NutritionOrder" -> + listOf( + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "NutritionOrder.identifier" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "NutritionOrder.patient" + ), + SearchParamDefinition( + "encounter", + Enumerations.SearchParamType.REFERENCE, + "NutritionOrder.encounter" + ), + SearchParamDefinition( + "additive", + Enumerations.SearchParamType.TOKEN, + "NutritionOrder.enteralFormula.additiveType" + ), + SearchParamDefinition( + "datetime", + Enumerations.SearchParamType.DATE, + "NutritionOrder.dateTime" + ), + SearchParamDefinition( + "formula", + Enumerations.SearchParamType.TOKEN, + "NutritionOrder.enteralFormula.baseFormulaType" + ), + SearchParamDefinition( + "instantiates-canonical", + Enumerations.SearchParamType.REFERENCE, + "NutritionOrder.instantiatesCanonical" + ), + SearchParamDefinition( + "instantiates-uri", + Enumerations.SearchParamType.URI, + "NutritionOrder.instantiatesUri" + ), + SearchParamDefinition( + "oraldiet", + Enumerations.SearchParamType.TOKEN, + "NutritionOrder.oralDiet.type" + ), + SearchParamDefinition( + "provider", + Enumerations.SearchParamType.REFERENCE, + "NutritionOrder.orderer" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "NutritionOrder.status" + ), + SearchParamDefinition( + "supplement", + Enumerations.SearchParamType.TOKEN, + "NutritionOrder.supplement.type" + ), + ) + "TerminologyCapabilities" -> + listOf( + SearchParamDefinition( + "context", + Enumerations.SearchParamType.TOKEN, + "(TerminologyCapabilities.useContext.value as CodeableConcept)" + ), + SearchParamDefinition( + "context-quantity", + Enumerations.SearchParamType.QUANTITY, + "(TerminologyCapabilities.useContext.value as Quantity) | (TerminologyCapabilities.useContext.value as Range)" + ), + SearchParamDefinition( + "context-type", + Enumerations.SearchParamType.TOKEN, + "TerminologyCapabilities.useContext.code" + ), + SearchParamDefinition( + "date", + Enumerations.SearchParamType.DATE, + "TerminologyCapabilities.date" + ), + SearchParamDefinition( + "description", + Enumerations.SearchParamType.STRING, + "TerminologyCapabilities.description" + ), + SearchParamDefinition( + "jurisdiction", + Enumerations.SearchParamType.TOKEN, + "TerminologyCapabilities.jurisdiction" + ), + SearchParamDefinition( + "name", + Enumerations.SearchParamType.STRING, + "TerminologyCapabilities.name" + ), + SearchParamDefinition( + "publisher", + Enumerations.SearchParamType.STRING, + "TerminologyCapabilities.publisher" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "TerminologyCapabilities.status" + ), + SearchParamDefinition( + "title", + Enumerations.SearchParamType.STRING, + "TerminologyCapabilities.title" + ), + SearchParamDefinition( + "url", + Enumerations.SearchParamType.URI, + "TerminologyCapabilities.url" + ), + SearchParamDefinition( + "version", + Enumerations.SearchParamType.TOKEN, + "TerminologyCapabilities.version" + ), + SearchParamDefinition( + "context-type-quantity", + Enumerations.SearchParamType.COMPOSITE, + "TerminologyCapabilities.useContext" + ), + SearchParamDefinition( + "context-type-value", + Enumerations.SearchParamType.COMPOSITE, + "TerminologyCapabilities.useContext" + ), + ) + "Evidence" -> + listOf( + SearchParamDefinition( + "composed-of", + Enumerations.SearchParamType.REFERENCE, + "Evidence.relatedArtifact.where(type='composed-of').resource" + ), + SearchParamDefinition( + "context", + Enumerations.SearchParamType.TOKEN, + "(Evidence.useContext.value as CodeableConcept)" + ), + SearchParamDefinition( + "context-quantity", + Enumerations.SearchParamType.QUANTITY, + "(Evidence.useContext.value as Quantity) | (Evidence.useContext.value as Range)" + ), + SearchParamDefinition( + "context-type", + Enumerations.SearchParamType.TOKEN, + "Evidence.useContext.code" + ), + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "Evidence.date"), + SearchParamDefinition( + "depends-on", + Enumerations.SearchParamType.REFERENCE, + "Evidence.relatedArtifact.where(type='depends-on').resource" + ), + SearchParamDefinition( + "derived-from", + Enumerations.SearchParamType.REFERENCE, + "Evidence.relatedArtifact.where(type='derived-from').resource" + ), + SearchParamDefinition( + "description", + Enumerations.SearchParamType.STRING, + "Evidence.description" + ), + SearchParamDefinition( + "effective", + Enumerations.SearchParamType.DATE, + "Evidence.effectivePeriod" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "Evidence.identifier" + ), + SearchParamDefinition( + "jurisdiction", + Enumerations.SearchParamType.TOKEN, + "Evidence.jurisdiction" + ), + SearchParamDefinition("name", Enumerations.SearchParamType.STRING, "Evidence.name"), + SearchParamDefinition( + "predecessor", + Enumerations.SearchParamType.REFERENCE, + "Evidence.relatedArtifact.where(type='predecessor').resource" + ), + SearchParamDefinition( + "publisher", + Enumerations.SearchParamType.STRING, + "Evidence.publisher" + ), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "Evidence.status"), + SearchParamDefinition( + "successor", + Enumerations.SearchParamType.REFERENCE, + "Evidence.relatedArtifact.where(type='successor').resource" + ), + SearchParamDefinition("title", Enumerations.SearchParamType.STRING, "Evidence.title"), + SearchParamDefinition("topic", Enumerations.SearchParamType.TOKEN, "Evidence.topic"), + SearchParamDefinition("url", Enumerations.SearchParamType.URI, "Evidence.url"), + SearchParamDefinition("version", Enumerations.SearchParamType.TOKEN, "Evidence.version"), + SearchParamDefinition( + "context-type-quantity", + Enumerations.SearchParamType.COMPOSITE, + "Evidence.useContext" + ), + SearchParamDefinition( + "context-type-value", + Enumerations.SearchParamType.COMPOSITE, + "Evidence.useContext" + ), + ) + "AuditEvent" -> + listOf( + SearchParamDefinition("action", Enumerations.SearchParamType.TOKEN, "AuditEvent.action"), + SearchParamDefinition( + "address", + Enumerations.SearchParamType.STRING, + "AuditEvent.agent.network.address" + ), + SearchParamDefinition( + "agent", + Enumerations.SearchParamType.REFERENCE, + "AuditEvent.agent.who" + ), + SearchParamDefinition( + "agent-name", + Enumerations.SearchParamType.STRING, + "AuditEvent.agent.name" + ), + SearchParamDefinition( + "agent-role", + Enumerations.SearchParamType.TOKEN, + "AuditEvent.agent.role" + ), + SearchParamDefinition( + "altid", + Enumerations.SearchParamType.TOKEN, + "AuditEvent.agent.altId" + ), + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "AuditEvent.recorded"), + SearchParamDefinition( + "entity", + Enumerations.SearchParamType.REFERENCE, + "AuditEvent.entity.what" + ), + SearchParamDefinition( + "entity-name", + Enumerations.SearchParamType.STRING, + "AuditEvent.entity.name" + ), + SearchParamDefinition( + "entity-role", + Enumerations.SearchParamType.TOKEN, + "AuditEvent.entity.role" + ), + SearchParamDefinition( + "entity-type", + Enumerations.SearchParamType.TOKEN, + "AuditEvent.entity.type" + ), + SearchParamDefinition("outcome", Enumerations.SearchParamType.TOKEN, "AuditEvent.outcome"), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "AuditEvent.agent.who.where(resolve() is Patient) | AuditEvent.entity.what.where(resolve() is Patient)" + ), + SearchParamDefinition( + "policy", + Enumerations.SearchParamType.URI, + "AuditEvent.agent.policy" + ), + SearchParamDefinition("site", Enumerations.SearchParamType.TOKEN, "AuditEvent.source.site"), + SearchParamDefinition( + "source", + Enumerations.SearchParamType.REFERENCE, + "AuditEvent.source.observer" + ), + SearchParamDefinition("subtype", Enumerations.SearchParamType.TOKEN, "AuditEvent.subtype"), + SearchParamDefinition("type", Enumerations.SearchParamType.TOKEN, "AuditEvent.type"), + ) + "PaymentReconciliation" -> + listOf( + SearchParamDefinition( + "created", + Enumerations.SearchParamType.DATE, + "PaymentReconciliation.created" + ), + SearchParamDefinition( + "disposition", + Enumerations.SearchParamType.STRING, + "PaymentReconciliation.disposition" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "PaymentReconciliation.identifier" + ), + SearchParamDefinition( + "outcome", + Enumerations.SearchParamType.TOKEN, + "PaymentReconciliation.outcome" + ), + SearchParamDefinition( + "payment-issuer", + Enumerations.SearchParamType.REFERENCE, + "PaymentReconciliation.paymentIssuer" + ), + SearchParamDefinition( + "request", + Enumerations.SearchParamType.REFERENCE, + "PaymentReconciliation.request" + ), + SearchParamDefinition( + "requestor", + Enumerations.SearchParamType.REFERENCE, + "PaymentReconciliation.requestor" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "PaymentReconciliation.status" + ), + ) + "Condition" -> + listOf( + SearchParamDefinition("code", Enumerations.SearchParamType.TOKEN, "Condition.code"), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "Condition.identifier" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "Condition.subject.where(resolve() is Patient)" + ), + SearchParamDefinition( + "abatement-age", + Enumerations.SearchParamType.QUANTITY, + "Condition.abatement.as(Age) | Condition.abatement.as(Range)" + ), + SearchParamDefinition( + "abatement-date", + Enumerations.SearchParamType.DATE, + "Condition.abatement.as(dateTime) | Condition.abatement.as(Period)" + ), + SearchParamDefinition( + "abatement-string", + Enumerations.SearchParamType.STRING, + "Condition.abatement.as(string)" + ), + SearchParamDefinition( + "asserter", + Enumerations.SearchParamType.REFERENCE, + "Condition.asserter" + ), + SearchParamDefinition( + "body-site", + Enumerations.SearchParamType.TOKEN, + "Condition.bodySite" + ), + SearchParamDefinition("category", Enumerations.SearchParamType.TOKEN, "Condition.category"), + SearchParamDefinition( + "clinical-status", + Enumerations.SearchParamType.TOKEN, + "Condition.clinicalStatus" + ), + SearchParamDefinition( + "encounter", + Enumerations.SearchParamType.REFERENCE, + "Condition.encounter" + ), + SearchParamDefinition( + "evidence", + Enumerations.SearchParamType.TOKEN, + "Condition.evidence.code" + ), + SearchParamDefinition( + "evidence-detail", + Enumerations.SearchParamType.REFERENCE, + "Condition.evidence.detail" + ), + SearchParamDefinition( + "onset-age", + Enumerations.SearchParamType.QUANTITY, + "Condition.onset.as(Age) | Condition.onset.as(Range)" + ), + SearchParamDefinition( + "onset-date", + Enumerations.SearchParamType.DATE, + "Condition.onset.as(dateTime) | Condition.onset.as(Period)" + ), + SearchParamDefinition( + "onset-info", + Enumerations.SearchParamType.STRING, + "Condition.onset.as(string)" + ), + SearchParamDefinition( + "recorded-date", + Enumerations.SearchParamType.DATE, + "Condition.recordedDate" + ), + SearchParamDefinition("severity", Enumerations.SearchParamType.TOKEN, "Condition.severity"), + SearchParamDefinition( + "stage", + Enumerations.SearchParamType.TOKEN, + "Condition.stage.summary" + ), + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "Condition.subject" + ), + SearchParamDefinition( + "verification-status", + Enumerations.SearchParamType.TOKEN, + "Condition.verificationStatus" + ), + ) + "SpecimenDefinition" -> + listOf( + SearchParamDefinition( + "container", + Enumerations.SearchParamType.TOKEN, + "SpecimenDefinition.typeTested.container.type" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "SpecimenDefinition.identifier" + ), + SearchParamDefinition( + "type", + Enumerations.SearchParamType.TOKEN, + "SpecimenDefinition.typeCollected" + ), + ) + "Composition" -> + listOf( + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "Composition.date"), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "Composition.identifier" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "Composition.subject.where(resolve() is Patient)" + ), + SearchParamDefinition("type", Enumerations.SearchParamType.TOKEN, "Composition.type"), + SearchParamDefinition( + "attester", + Enumerations.SearchParamType.REFERENCE, + "Composition.attester.party" + ), + SearchParamDefinition( + "author", + Enumerations.SearchParamType.REFERENCE, + "Composition.author" + ), + SearchParamDefinition( + "category", + Enumerations.SearchParamType.TOKEN, + "Composition.category" + ), + SearchParamDefinition( + "confidentiality", + Enumerations.SearchParamType.TOKEN, + "Composition.confidentiality" + ), + SearchParamDefinition( + "context", + Enumerations.SearchParamType.TOKEN, + "Composition.event.code" + ), + SearchParamDefinition( + "encounter", + Enumerations.SearchParamType.REFERENCE, + "Composition.encounter" + ), + SearchParamDefinition( + "entry", + Enumerations.SearchParamType.REFERENCE, + "Composition.section.entry" + ), + SearchParamDefinition( + "period", + Enumerations.SearchParamType.DATE, + "Composition.event.period" + ), + SearchParamDefinition( + "related-id", + Enumerations.SearchParamType.TOKEN, + "(Composition.relatesTo.target as Identifier)" + ), + SearchParamDefinition( + "related-ref", + Enumerations.SearchParamType.REFERENCE, + "(Composition.relatesTo.target as Reference)" + ), + SearchParamDefinition( + "section", + Enumerations.SearchParamType.TOKEN, + "Composition.section.code" + ), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "Composition.status"), + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "Composition.subject" + ), + SearchParamDefinition("title", Enumerations.SearchParamType.STRING, "Composition.title"), + ) + "DetectedIssue" -> + listOf( + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "DetectedIssue.identifier" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "DetectedIssue.patient" + ), + SearchParamDefinition( + "author", + Enumerations.SearchParamType.REFERENCE, + "DetectedIssue.author" + ), + SearchParamDefinition("code", Enumerations.SearchParamType.TOKEN, "DetectedIssue.code"), + SearchParamDefinition( + "identified", + Enumerations.SearchParamType.DATE, + "DetectedIssue.identified" + ), + SearchParamDefinition( + "implicated", + Enumerations.SearchParamType.REFERENCE, + "DetectedIssue.implicated" + ), + ) + "Bundle" -> + listOf( + SearchParamDefinition( + "composition", + Enumerations.SearchParamType.REFERENCE, + "Bundle.entry[0].resource" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "Bundle.identifier" + ), + SearchParamDefinition( + "message", + Enumerations.SearchParamType.REFERENCE, + "Bundle.entry[0].resource" + ), + SearchParamDefinition("timestamp", Enumerations.SearchParamType.DATE, "Bundle.timestamp"), + SearchParamDefinition("type", Enumerations.SearchParamType.TOKEN, "Bundle.type"), + ) + "CompartmentDefinition" -> + listOf( + SearchParamDefinition( + "context", + Enumerations.SearchParamType.TOKEN, + "(CompartmentDefinition.useContext.value as CodeableConcept)" + ), + SearchParamDefinition( + "context-quantity", + Enumerations.SearchParamType.QUANTITY, + "(CompartmentDefinition.useContext.value as Quantity) | (CompartmentDefinition.useContext.value as Range)" + ), + SearchParamDefinition( + "context-type", + Enumerations.SearchParamType.TOKEN, + "CompartmentDefinition.useContext.code" + ), + SearchParamDefinition( + "date", + Enumerations.SearchParamType.DATE, + "CompartmentDefinition.date" + ), + SearchParamDefinition( + "description", + Enumerations.SearchParamType.STRING, + "CompartmentDefinition.description" + ), + SearchParamDefinition( + "name", + Enumerations.SearchParamType.STRING, + "CompartmentDefinition.name" + ), + SearchParamDefinition( + "publisher", + Enumerations.SearchParamType.STRING, + "CompartmentDefinition.publisher" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "CompartmentDefinition.status" + ), + SearchParamDefinition("url", Enumerations.SearchParamType.URI, "CompartmentDefinition.url"), + SearchParamDefinition( + "version", + Enumerations.SearchParamType.TOKEN, + "CompartmentDefinition.version" + ), + SearchParamDefinition( + "context-type-quantity", + Enumerations.SearchParamType.COMPOSITE, + "CompartmentDefinition.useContext" + ), + SearchParamDefinition( + "context-type-value", + Enumerations.SearchParamType.COMPOSITE, + "CompartmentDefinition.useContext" + ), + SearchParamDefinition( + "code", + Enumerations.SearchParamType.TOKEN, + "CompartmentDefinition.code" + ), + SearchParamDefinition( + "resource", + Enumerations.SearchParamType.TOKEN, + "CompartmentDefinition.resource.code" + ), + ) + "MedicationKnowledge" -> + listOf( + SearchParamDefinition( + "classification", + Enumerations.SearchParamType.TOKEN, + "MedicationKnowledge.medicineClassification.classification" + ), + SearchParamDefinition( + "classification-type", + Enumerations.SearchParamType.TOKEN, + "MedicationKnowledge.medicineClassification.type" + ), + SearchParamDefinition( + "code", + Enumerations.SearchParamType.TOKEN, + "MedicationKnowledge.code" + ), + SearchParamDefinition( + "doseform", + Enumerations.SearchParamType.TOKEN, + "MedicationKnowledge.doseForm" + ), + SearchParamDefinition( + "ingredient", + Enumerations.SearchParamType.REFERENCE, + "(MedicationKnowledge.ingredient.item as Reference)" + ), + SearchParamDefinition( + "ingredient-code", + Enumerations.SearchParamType.TOKEN, + "(MedicationKnowledge.ingredient.item as CodeableConcept)" + ), + SearchParamDefinition( + "manufacturer", + Enumerations.SearchParamType.REFERENCE, + "MedicationKnowledge.manufacturer" + ), + SearchParamDefinition( + "monitoring-program-name", + Enumerations.SearchParamType.TOKEN, + "MedicationKnowledge.monitoringProgram.name" + ), + SearchParamDefinition( + "monitoring-program-type", + Enumerations.SearchParamType.TOKEN, + "MedicationKnowledge.monitoringProgram.type" + ), + SearchParamDefinition( + "monograph", + Enumerations.SearchParamType.REFERENCE, + "MedicationKnowledge.monograph.source" + ), + SearchParamDefinition( + "monograph-type", + Enumerations.SearchParamType.TOKEN, + "MedicationKnowledge.monograph.type" + ), + SearchParamDefinition( + "source-cost", + Enumerations.SearchParamType.TOKEN, + "MedicationKnowledge.cost.source" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "MedicationKnowledge.status" + ), + ) + "Patient" -> + listOf( + SearchParamDefinition("active", Enumerations.SearchParamType.TOKEN, "Patient.active"), + SearchParamDefinition("address", Enumerations.SearchParamType.STRING, "Patient.address"), + SearchParamDefinition( + "address-city", + Enumerations.SearchParamType.STRING, + "Patient.address.city" + ), + SearchParamDefinition( + "address-country", + Enumerations.SearchParamType.STRING, + "Patient.address.country" + ), + SearchParamDefinition( + "address-postalcode", + Enumerations.SearchParamType.STRING, + "Patient.address.postalCode" + ), + SearchParamDefinition( + "address-state", + Enumerations.SearchParamType.STRING, + "Patient.address.state" + ), + SearchParamDefinition( + "address-use", + Enumerations.SearchParamType.TOKEN, + "Patient.address.use" + ), + SearchParamDefinition("birthdate", Enumerations.SearchParamType.DATE, "Patient.birthDate"), + SearchParamDefinition( + "death-date", + Enumerations.SearchParamType.DATE, + "(Patient.deceased as dateTime)" + ), + SearchParamDefinition( + "deceased", + Enumerations.SearchParamType.TOKEN, + "Patient.deceased.exists() and Patient.deceased != false" + ), + SearchParamDefinition( + "email", + Enumerations.SearchParamType.TOKEN, + "Patient.telecom.where(system='email')" + ), + SearchParamDefinition("family", Enumerations.SearchParamType.STRING, "Patient.name.family"), + SearchParamDefinition("gender", Enumerations.SearchParamType.TOKEN, "Patient.gender"), + SearchParamDefinition( + "general-practitioner", + Enumerations.SearchParamType.REFERENCE, + "Patient.generalPractitioner" + ), + SearchParamDefinition("given", Enumerations.SearchParamType.STRING, "Patient.name.given"), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "Patient.identifier" + ), + SearchParamDefinition( + "language", + Enumerations.SearchParamType.TOKEN, + "Patient.communication.language" + ), + SearchParamDefinition("link", Enumerations.SearchParamType.REFERENCE, "Patient.link.other"), + SearchParamDefinition("name", Enumerations.SearchParamType.STRING, "Patient.name"), + SearchParamDefinition( + "organization", + Enumerations.SearchParamType.REFERENCE, + "Patient.managingOrganization" + ), + SearchParamDefinition( + "phone", + Enumerations.SearchParamType.TOKEN, + "Patient.telecom.where(system='phone')" + ), + SearchParamDefinition("phonetic", Enumerations.SearchParamType.STRING, "Patient.name"), + SearchParamDefinition("telecom", Enumerations.SearchParamType.TOKEN, "Patient.telecom"), + ) + "Coverage" -> + listOf( + SearchParamDefinition( + "beneficiary", + Enumerations.SearchParamType.REFERENCE, + "Coverage.beneficiary" + ), + SearchParamDefinition( + "class-type", + Enumerations.SearchParamType.TOKEN, + "Coverage.class.type" + ), + SearchParamDefinition( + "class-value", + Enumerations.SearchParamType.STRING, + "Coverage.class.value" + ), + SearchParamDefinition( + "dependent", + Enumerations.SearchParamType.STRING, + "Coverage.dependent" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "Coverage.identifier" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "Coverage.beneficiary" + ), + SearchParamDefinition("payor", Enumerations.SearchParamType.REFERENCE, "Coverage.payor"), + SearchParamDefinition( + "policy-holder", + Enumerations.SearchParamType.REFERENCE, + "Coverage.policyHolder" + ), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "Coverage.status"), + SearchParamDefinition( + "subscriber", + Enumerations.SearchParamType.REFERENCE, + "Coverage.subscriber" + ), + SearchParamDefinition("type", Enumerations.SearchParamType.TOKEN, "Coverage.type"), + ) + "QuestionnaireResponse" -> + listOf( + SearchParamDefinition( + "author", + Enumerations.SearchParamType.REFERENCE, + "QuestionnaireResponse.author" + ), + SearchParamDefinition( + "authored", + Enumerations.SearchParamType.DATE, + "QuestionnaireResponse.authored" + ), + SearchParamDefinition( + "based-on", + Enumerations.SearchParamType.REFERENCE, + "QuestionnaireResponse.basedOn" + ), + SearchParamDefinition( + "encounter", + Enumerations.SearchParamType.REFERENCE, + "QuestionnaireResponse.encounter" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "QuestionnaireResponse.identifier" + ), + SearchParamDefinition( + "part-of", + Enumerations.SearchParamType.REFERENCE, + "QuestionnaireResponse.partOf" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "QuestionnaireResponse.subject.where(resolve() is Patient)" + ), + SearchParamDefinition( + "questionnaire", + Enumerations.SearchParamType.REFERENCE, + "QuestionnaireResponse.questionnaire" + ), + SearchParamDefinition( + "source", + Enumerations.SearchParamType.REFERENCE, + "QuestionnaireResponse.source" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "QuestionnaireResponse.status" + ), + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "QuestionnaireResponse.subject" + ), + ) + "CoverageEligibilityRequest" -> + listOf( + SearchParamDefinition( + "created", + Enumerations.SearchParamType.DATE, + "CoverageEligibilityRequest.created" + ), + SearchParamDefinition( + "enterer", + Enumerations.SearchParamType.REFERENCE, + "CoverageEligibilityRequest.enterer" + ), + SearchParamDefinition( + "facility", + Enumerations.SearchParamType.REFERENCE, + "CoverageEligibilityRequest.facility" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "CoverageEligibilityRequest.identifier" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "CoverageEligibilityRequest.patient" + ), + SearchParamDefinition( + "provider", + Enumerations.SearchParamType.REFERENCE, + "CoverageEligibilityRequest.provider" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "CoverageEligibilityRequest.status" + ), + ) + "NamingSystem" -> + listOf( + SearchParamDefinition( + "context", + Enumerations.SearchParamType.TOKEN, + "(NamingSystem.useContext.value as CodeableConcept)" + ), + SearchParamDefinition( + "context-quantity", + Enumerations.SearchParamType.QUANTITY, + "(NamingSystem.useContext.value as Quantity) | (NamingSystem.useContext.value as Range)" + ), + SearchParamDefinition( + "context-type", + Enumerations.SearchParamType.TOKEN, + "NamingSystem.useContext.code" + ), + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "NamingSystem.date"), + SearchParamDefinition( + "description", + Enumerations.SearchParamType.STRING, + "NamingSystem.description" + ), + SearchParamDefinition( + "jurisdiction", + Enumerations.SearchParamType.TOKEN, + "NamingSystem.jurisdiction" + ), + SearchParamDefinition("name", Enumerations.SearchParamType.STRING, "NamingSystem.name"), + SearchParamDefinition( + "publisher", + Enumerations.SearchParamType.STRING, + "NamingSystem.publisher" + ), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "NamingSystem.status"), + SearchParamDefinition( + "context-type-quantity", + Enumerations.SearchParamType.COMPOSITE, + "NamingSystem.useContext" + ), + SearchParamDefinition( + "context-type-value", + Enumerations.SearchParamType.COMPOSITE, + "NamingSystem.useContext" + ), + SearchParamDefinition( + "contact", + Enumerations.SearchParamType.STRING, + "NamingSystem.contact.name" + ), + SearchParamDefinition( + "id-type", + Enumerations.SearchParamType.TOKEN, + "NamingSystem.uniqueId.type" + ), + SearchParamDefinition("kind", Enumerations.SearchParamType.TOKEN, "NamingSystem.kind"), + SearchParamDefinition( + "period", + Enumerations.SearchParamType.DATE, + "NamingSystem.uniqueId.period" + ), + SearchParamDefinition( + "responsible", + Enumerations.SearchParamType.STRING, + "NamingSystem.responsible" + ), + SearchParamDefinition( + "telecom", + Enumerations.SearchParamType.TOKEN, + "NamingSystem.contact.telecom" + ), + SearchParamDefinition("type", Enumerations.SearchParamType.TOKEN, "NamingSystem.type"), + SearchParamDefinition( + "value", + Enumerations.SearchParamType.STRING, + "NamingSystem.uniqueId.value" + ), + ) + "MedicinalProductUndesirableEffect" -> + listOf( + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "MedicinalProductUndesirableEffect.subject" + ), + ) + "ExampleScenario" -> + listOf( + SearchParamDefinition( + "context", + Enumerations.SearchParamType.TOKEN, + "(ExampleScenario.useContext.value as CodeableConcept)" + ), + SearchParamDefinition( + "context-quantity", + Enumerations.SearchParamType.QUANTITY, + "(ExampleScenario.useContext.value as Quantity) | (ExampleScenario.useContext.value as Range)" + ), + SearchParamDefinition( + "context-type", + Enumerations.SearchParamType.TOKEN, + "ExampleScenario.useContext.code" + ), + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "ExampleScenario.date"), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "ExampleScenario.identifier" + ), + SearchParamDefinition( + "jurisdiction", + Enumerations.SearchParamType.TOKEN, + "ExampleScenario.jurisdiction" + ), + SearchParamDefinition("name", Enumerations.SearchParamType.STRING, "ExampleScenario.name"), + SearchParamDefinition( + "publisher", + Enumerations.SearchParamType.STRING, + "ExampleScenario.publisher" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "ExampleScenario.status" + ), + SearchParamDefinition("url", Enumerations.SearchParamType.URI, "ExampleScenario.url"), + SearchParamDefinition( + "version", + Enumerations.SearchParamType.TOKEN, + "ExampleScenario.version" + ), + SearchParamDefinition( + "context-type-quantity", + Enumerations.SearchParamType.COMPOSITE, + "ExampleScenario.useContext" + ), + SearchParamDefinition( + "context-type-value", + Enumerations.SearchParamType.COMPOSITE, + "ExampleScenario.useContext" + ), + ) + "SupplyDelivery" -> + listOf( + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "SupplyDelivery.identifier" + ), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "SupplyDelivery.patient" + ), + SearchParamDefinition( + "receiver", + Enumerations.SearchParamType.REFERENCE, + "SupplyDelivery.receiver" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "SupplyDelivery.status" + ), + SearchParamDefinition( + "supplier", + Enumerations.SearchParamType.REFERENCE, + "SupplyDelivery.supplier" + ), + ) + "Schedule" -> + listOf( + SearchParamDefinition("active", Enumerations.SearchParamType.TOKEN, "Schedule.active"), + SearchParamDefinition("actor", Enumerations.SearchParamType.REFERENCE, "Schedule.actor"), + SearchParamDefinition( + "date", + Enumerations.SearchParamType.DATE, + "Schedule.planningHorizon" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "Schedule.identifier" + ), + SearchParamDefinition( + "service-category", + Enumerations.SearchParamType.TOKEN, + "Schedule.serviceCategory" + ), + SearchParamDefinition( + "service-type", + Enumerations.SearchParamType.TOKEN, + "Schedule.serviceType" + ), + SearchParamDefinition( + "specialty", + Enumerations.SearchParamType.TOKEN, + "Schedule.specialty" + ), + ) + "ClinicalImpression" -> + listOf( + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "ClinicalImpression.date"), + SearchParamDefinition( + "patient", + Enumerations.SearchParamType.REFERENCE, + "ClinicalImpression.subject.where(resolve() is Patient)" + ), + SearchParamDefinition( + "assessor", + Enumerations.SearchParamType.REFERENCE, + "ClinicalImpression.assessor" + ), + SearchParamDefinition( + "encounter", + Enumerations.SearchParamType.REFERENCE, + "ClinicalImpression.encounter" + ), + SearchParamDefinition( + "finding-code", + Enumerations.SearchParamType.TOKEN, + "ClinicalImpression.finding.itemCodeableConcept" + ), + SearchParamDefinition( + "finding-ref", + Enumerations.SearchParamType.REFERENCE, + "ClinicalImpression.finding.itemReference" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "ClinicalImpression.identifier" + ), + SearchParamDefinition( + "investigation", + Enumerations.SearchParamType.REFERENCE, + "ClinicalImpression.investigation.item" + ), + SearchParamDefinition( + "previous", + Enumerations.SearchParamType.REFERENCE, + "ClinicalImpression.previous" + ), + SearchParamDefinition( + "problem", + Enumerations.SearchParamType.REFERENCE, + "ClinicalImpression.problem" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "ClinicalImpression.status" + ), + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "ClinicalImpression.subject" + ), + SearchParamDefinition( + "supporting-info", + Enumerations.SearchParamType.REFERENCE, + "ClinicalImpression.supportingInfo" + ), + ) + "DeviceDefinition" -> + listOf( + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "DeviceDefinition.identifier" + ), + SearchParamDefinition( + "parent", + Enumerations.SearchParamType.REFERENCE, + "DeviceDefinition.parentDevice" + ), + SearchParamDefinition("type", Enumerations.SearchParamType.TOKEN, "DeviceDefinition.type"), + ) + "PlanDefinition" -> + listOf( + SearchParamDefinition( + "composed-of", + Enumerations.SearchParamType.REFERENCE, + "PlanDefinition.relatedArtifact.where(type='composed-of').resource" + ), + SearchParamDefinition( + "context", + Enumerations.SearchParamType.TOKEN, + "(PlanDefinition.useContext.value as CodeableConcept)" + ), + SearchParamDefinition( + "context-quantity", + Enumerations.SearchParamType.QUANTITY, + "(PlanDefinition.useContext.value as Quantity) | (PlanDefinition.useContext.value as Range)" + ), + SearchParamDefinition( + "context-type", + Enumerations.SearchParamType.TOKEN, + "PlanDefinition.useContext.code" + ), + SearchParamDefinition("date", Enumerations.SearchParamType.DATE, "PlanDefinition.date"), + SearchParamDefinition( + "definition", + Enumerations.SearchParamType.REFERENCE, + "PlanDefinition.action.definition" + ), + SearchParamDefinition( + "depends-on", + Enumerations.SearchParamType.REFERENCE, + "PlanDefinition.relatedArtifact.where(type='depends-on').resource | PlanDefinition.library" + ), + SearchParamDefinition( + "derived-from", + Enumerations.SearchParamType.REFERENCE, + "PlanDefinition.relatedArtifact.where(type='derived-from').resource" + ), + SearchParamDefinition( + "description", + Enumerations.SearchParamType.STRING, + "PlanDefinition.description" + ), + SearchParamDefinition( + "effective", + Enumerations.SearchParamType.DATE, + "PlanDefinition.effectivePeriod" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "PlanDefinition.identifier" + ), + SearchParamDefinition( + "jurisdiction", + Enumerations.SearchParamType.TOKEN, + "PlanDefinition.jurisdiction" + ), + SearchParamDefinition("name", Enumerations.SearchParamType.STRING, "PlanDefinition.name"), + SearchParamDefinition( + "predecessor", + Enumerations.SearchParamType.REFERENCE, + "PlanDefinition.relatedArtifact.where(type='predecessor').resource" + ), + SearchParamDefinition( + "publisher", + Enumerations.SearchParamType.STRING, + "PlanDefinition.publisher" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "PlanDefinition.status" + ), + SearchParamDefinition( + "successor", + Enumerations.SearchParamType.REFERENCE, + "PlanDefinition.relatedArtifact.where(type='successor').resource" + ), + SearchParamDefinition("title", Enumerations.SearchParamType.STRING, "PlanDefinition.title"), + SearchParamDefinition("topic", Enumerations.SearchParamType.TOKEN, "PlanDefinition.topic"), + SearchParamDefinition("type", Enumerations.SearchParamType.TOKEN, "PlanDefinition.type"), + SearchParamDefinition("url", Enumerations.SearchParamType.URI, "PlanDefinition.url"), + SearchParamDefinition( + "version", + Enumerations.SearchParamType.TOKEN, + "PlanDefinition.version" + ), + SearchParamDefinition( + "context-type-quantity", + Enumerations.SearchParamType.COMPOSITE, + "PlanDefinition.useContext" + ), + SearchParamDefinition( + "context-type-value", + Enumerations.SearchParamType.COMPOSITE, + "PlanDefinition.useContext" + ), + ) + "MedicinalProductAuthorization" -> + listOf( + SearchParamDefinition( + "country", + Enumerations.SearchParamType.TOKEN, + "MedicinalProductAuthorization.country" + ), + SearchParamDefinition( + "holder", + Enumerations.SearchParamType.REFERENCE, + "MedicinalProductAuthorization.holder" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "MedicinalProductAuthorization.identifier" + ), + SearchParamDefinition( + "status", + Enumerations.SearchParamType.TOKEN, + "MedicinalProductAuthorization.status" + ), + SearchParamDefinition( + "subject", + Enumerations.SearchParamType.REFERENCE, + "MedicinalProductAuthorization.subject" + ), + ) + "Claim" -> + listOf( + SearchParamDefinition( + "care-team", + Enumerations.SearchParamType.REFERENCE, + "Claim.careTeam.provider" + ), + SearchParamDefinition("created", Enumerations.SearchParamType.DATE, "Claim.created"), + SearchParamDefinition( + "detail-udi", + Enumerations.SearchParamType.REFERENCE, + "Claim.item.detail.udi" + ), + SearchParamDefinition( + "encounter", + Enumerations.SearchParamType.REFERENCE, + "Claim.item.encounter" + ), + SearchParamDefinition("enterer", Enumerations.SearchParamType.REFERENCE, "Claim.enterer"), + SearchParamDefinition("facility", Enumerations.SearchParamType.REFERENCE, "Claim.facility"), + SearchParamDefinition("identifier", Enumerations.SearchParamType.TOKEN, "Claim.identifier"), + SearchParamDefinition("insurer", Enumerations.SearchParamType.REFERENCE, "Claim.insurer"), + SearchParamDefinition("item-udi", Enumerations.SearchParamType.REFERENCE, "Claim.item.udi"), + SearchParamDefinition("patient", Enumerations.SearchParamType.REFERENCE, "Claim.patient"), + SearchParamDefinition("payee", Enumerations.SearchParamType.REFERENCE, "Claim.payee.party"), + SearchParamDefinition("priority", Enumerations.SearchParamType.TOKEN, "Claim.priority"), + SearchParamDefinition( + "procedure-udi", + Enumerations.SearchParamType.REFERENCE, + "Claim.procedure.udi" + ), + SearchParamDefinition("provider", Enumerations.SearchParamType.REFERENCE, "Claim.provider"), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "Claim.status"), + SearchParamDefinition( + "subdetail-udi", + Enumerations.SearchParamType.REFERENCE, + "Claim.item.detail.subDetail.udi" + ), + SearchParamDefinition("use", Enumerations.SearchParamType.TOKEN, "Claim.use"), + ) + "Location" -> + listOf( + SearchParamDefinition("address", Enumerations.SearchParamType.STRING, "Location.address"), + SearchParamDefinition( + "address-city", + Enumerations.SearchParamType.STRING, + "Location.address.city" + ), + SearchParamDefinition( + "address-country", + Enumerations.SearchParamType.STRING, + "Location.address.country" + ), + SearchParamDefinition( + "address-postalcode", + Enumerations.SearchParamType.STRING, + "Location.address.postalCode" + ), + SearchParamDefinition( + "address-state", + Enumerations.SearchParamType.STRING, + "Location.address.state" + ), + SearchParamDefinition( + "address-use", + Enumerations.SearchParamType.TOKEN, + "Location.address.use" + ), + SearchParamDefinition( + "endpoint", + Enumerations.SearchParamType.REFERENCE, + "Location.endpoint" + ), + SearchParamDefinition( + "identifier", + Enumerations.SearchParamType.TOKEN, + "Location.identifier" + ), + SearchParamDefinition( + "name", + Enumerations.SearchParamType.STRING, + "Location.name | Location.alias" + ), + SearchParamDefinition("near", Enumerations.SearchParamType.SPECIAL, "Location.position"), + SearchParamDefinition( + "operational-status", + Enumerations.SearchParamType.TOKEN, + "Location.operationalStatus" + ), + SearchParamDefinition( + "organization", + Enumerations.SearchParamType.REFERENCE, + "Location.managingOrganization" + ), + SearchParamDefinition("partof", Enumerations.SearchParamType.REFERENCE, "Location.partOf"), + SearchParamDefinition("status", Enumerations.SearchParamType.TOKEN, "Location.status"), + SearchParamDefinition("type", Enumerations.SearchParamType.TOKEN, "Location.type"), + ) + else -> emptyList() + } diff --git a/engine/src/test/java/com/google/android/fhir/index/ResourceIndexerTest.kt b/engine/src/test/java/com/google/android/fhir/index/ResourceIndexerTest.kt index 67f3f2579a..ee64c2a46e 100644 --- a/engine/src/test/java/com/google/android/fhir/index/ResourceIndexerTest.kt +++ b/engine/src/test/java/com/google/android/fhir/index/ResourceIndexerTest.kt @@ -1522,7 +1522,6 @@ class ResourceIndexerTest { canonicalValue = BigDecimal.ZERO ) ) - .inOrder() } private companion object { diff --git a/settings.gradle.kts b/settings.gradle.kts index 811e394cca..224ea588a7 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -5,3 +5,5 @@ include(":datacapturegallery") include(":engine") include(":reference") + +include(":codegen")