This page is part of the FUT Infrastructure (v10.0.0: Release) based on FHIR (HL7® FHIR® Standard) R4. This is the current published version. For a full list of available versions, see the Directory of published versions
| Active as of 2026-08-02 |
@prefix fhir: <http://hl7.org/fhir/> . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . # - resource ------------------------------------------------------------------- <http://hl7.org/fhir/CapabilityStatement/terminology> a fhir:CapabilityStatement ; fhir:nodeRole fhir:treeRoot ; fhir:Resource.id [ fhir:value "terminology"] ; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "extensions" ] ; fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: CapabilityStatement terminology</b></p><a name=\"terminology\"> </a><a name=\"hcterminology\"> </a><h2 id=\"title\"/><ul><li>Implementation Guide Version: 10.0.0 </li><li>FHIR Version: 4.0.1 </li><li>Supported Formats: <code>application/fhir+xml</code>, <code>xml</code>, <code>application/fhir+json</code>, <code>json</code>, <code>application/x-turtle</code>, <code>ttl</code>, <code>html/json</code>, <code>html/xml</code>, <code>html/turtle</code></li><li>Published on: 2026-08-02 18:24:23+0000 </li><li>Published by: Den telemedicinske infrastruktur (eHealth Infrastructure) </li></ul><blockquote class=\"impl-note\"><p><strong>Note to Implementers: FHIR Capabilities</strong></p><p>Any FHIR capability may be 'allowed' by the system unless explicitly marked as 'SHALL NOT'. A few items are marked as MAY in the Implementation Guide to highlight their potential relevance to the use case.</p></blockquote><p>This CapabilityStatement instantiates the CapabilityStatement <code>http://hl7.org/fhir/uv/bulkdata/CapabilityStatement/bulk-data</code></p><h2 id=\"rest\">FHIR RESTful Capabilities</h2><div class=\"panel panel-default\"><div class=\"panel-heading\"><h3 id=\"mode1\" class=\"panel-title\">Mode: <code>server</code></h3></div><div class=\"panel-body\"><div class=\"row\"><div class=\"col-12\"><span class=\"lead\">Summary of System-wide Operations</span><table class=\"table table-condensed table-hover\"><thead><tr><th>Conformance</th><th>Operation</th><th>Documentation</th></tr></thead><tbody><tr><td><b>SHALL</b></td><td>$reindex</td><td><div/></td></tr><tr><td><b>SHALL</b></td><td>$hapi.fhir.reindex-status</td><td><div/></td></tr><tr><td><b>SHALL</b></td><td>$import</td><td><div><p>Import terminology resources</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>$has-pending-work</td><td><div><p>Check for pending work</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>$export-poll-status</td><td><div><p>Operation for polling the status of a previously initiated FHIR Bulk Data System Level Export. A complete URL including the '_jobId' is returned in the 'Content-Location' response header when initiating the export. A 'GET' request to the polling location will return '202 Accepted' with a response header 'X-Progress' containing a status message for the progress of the export job. When the job has finished, the polling location will return '200 OK', and the contents of the body will be a JSON object providing metadata and links to the generated bulk data files. A 'DELETE' request can be used to cancel the export. If the export has already finished, the delete will return '404 Not Found', else the export job will be cancelled and a '202 Accepted' is returned with an operation outcome response.</p>\n<h3>Parameters</h3>\n<ul>\n<li>_jobId: the job ID for the Bulk Export job which was returned in the 'Content-Location' header when initiating the export</li>\n</ul>\n</div></td></tr><tr><td><b>SHALL</b></td><td>$export</td><td><div><p>FHIR Operation to initiate an export of data from a FHIR server. The type of resources returned can be restricted using the '_type' parameter, and the '_since' parameter can be used to restrict resources to be only included if changed since the supplied time. The FHIR server support invocation of this operation using the <a href=\"http://hl7.org/fhir/R4/async.html\">FHIR Asynchronous Request Pattern</a>.</p>\n<h2>Initiation of export</h2>\n<p>The initiation of an export must specify the request header 'Prefer: respond-async', and will return '202 Accepted' with a polling location in the response header 'Content-Location'. The polling location is for the endpoint '$export-poll-status' and has the export job ID as parameter '_jobId'.</p>\n<h3>Parameters</h3>\n<ul>\n<li>_outputFormat: Optional parameter to specify the output format of the exported files. Default is 'application/fhir+ndjson'</li>\n<li>_type: Optional parameter to specify a comma separated list of resource types to be included in the export. If not provided, all resource types will be included.</li>\n<li>_since: Optional parameter to specify a time. Only resources that have been created or modified after this time will be included in the export (i.e., if Resource.meta.lastUpdated is later than the supplied _since time).</li>\n<li>_until: Optional parameter to specify a time. Only resources that have been created or modified before this time will be included in the export (i.e., if Resource.meta.lastUpdated is earlier than the supplied _until time).</li>\n<li>_typeFilter: Optional parameter to apply search filter of resources for export. It is a string of comma-delimited FHIR REST search queries in the format [resourceType]?[parameters]. The filter will be applied when searching resources.</li>\n<li>_typePostFetchFilterUrl: Optional parameter to apply filtering of resources for export. It is a string of comma-delimited FHIR REST search queries in the format [resourceType]?[parameters]. The filter will be applied on resources after being fetched from the database.</li>\n<li>_includeHistory: Optional parameter to specify whether historical versions of resources should be included in the export. Default is false.</li>\n<li>_exportId: Optional parameter to specify a client provided identifier for the export. Resulting exported files (Binary) will be labeled with the identifer in meta extension 'https://hapifhir.org/NamingSystem/bulk-export-identifier'</li>\n</ul>\n<h2>Polling status of export</h2>\n<p>Subsequent GET requests to the polling location will return '202 Accepted' with a response header 'X-Progress' containing a status message for the progress of the export job. When the job has finished, the polling location will return '200 OK', and the contents of the body will be a JSON object providing metadata and links to the generated bulk export data files.</p>\n<h2>Retrieving exported files</h2>\n<p>The JSON object returned when the export job is complete will contain a list of files (Binary resources) available for download. Each file can be retrieved using a standard HTTP GET request to the provided URL. The security context of the Binary resources resulting from the export is the user that initiated the export. The files can therefore only be retrieved by the same user.</p>\n<h3>Retention of exported files</h3>\n<p>The exported files are retained for a limited time after which they are deleted. The retention time is a server configuration with default 2 hours.</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>$reindex-terminology</td><td><div/></td></tr><tr><td><b>SHALL</b></td><td>$meta</td><td><div/></td></tr><tr><td><b>SHALL</b></td><td>$get-resource-counts</td><td><div><p>Provides the number of resources currently stored on the server, broken down by resource type</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>$expunge</td><td><div/></td></tr></tbody></table></div></div></div></div><h3 id=\"resourcesCap1\">Capabilities by Resource/Profile</h3><h4 id=\"resourcesSummary1\">Summary</h4><p>The summary table lists the resources that are part of this configuration, and for each resource it lists:</p><ul><li>The relevant profiles (if any)</li><li>The interactions supported by each resource (<b><span class=\"bg-info\">R</span></b>ead, <b><span class=\"bg-info\">S</span></b>earch, <b><span class=\"bg-info\">U</span></b>pdate, and <b><span class=\"bg-info\">C</span></b>reate, are always shown, while <b><span class=\"bg-info\">VR</span></b>ead, <b><span class=\"bg-info\">P</span></b>atch, <b><span class=\"bg-info\">D</span></b>elete, <b><span class=\"bg-info\">H</span></b>istory on <b><span class=\"bg-info\">I</span></b>nstance, or <b><span class=\"bg-info\">H</span></b>istory on <b><span class=\"bg-info\">T</span></b>ype are only present if at least one of the resources has support for them.</li><li><span>The required, recommended, and some optional search parameters (if any). </span></li><li>The linked resources enabled for <code>_include</code></li><li>The other resources enabled for <code>_revinclude</code></li><li>The operations on the resource (if any)</li></ul><div class=\"table-responsive\"><table class=\"table table-condensed table-hover\"><thead><tr><th><b>Resource Type</b></th><th><b>Profile</b></th><th class=\"text-center\"><b title=\"GET a resource (read interaction)\">R</b></th><th class=\"text-center\"><b title=\"GET past versions of resources (vread interaction)\">V-R</b></th><th class=\"text-center\"><b title=\"GET all set of resources of the type (search interaction)\">S</b></th><th class=\"text-center\"><b title=\"PUT a new resource version (update interaction)\">U</b></th><th class=\"text-center\"><b title=\"PATCH a new resource version (patch interaction)\">P</b></th><th class=\"text-center\"><b title=\"POST a new resource (create interaction)\">C</b></th><th class=\"text-center\"><b title=\"DELETE a resource (delete interaction)\">D</b></th><th class=\"text-center\"><b title=\"GET changes to a resource (history interaction on instance)\">H-I</b></th><th class=\"text-center\"><b title=\"GET changes for all resources of the type (history interaction on type)\">H-T</b></th><th><b title=\"Required and recommended search parameters\">Searches</b></th><th><code><b>_include</b></code></th><th><code><b>_revinclude</b></code></th><th><b>Operations</b></th></tr></thead><tbody><tr><td><a href=\"#Binary1-1\">Binary</a></td><td><a href=\"http://hl7.org/fhir/R4/binary.html\">http://hl7.org/fhir/StructureDefinition/Binary</a></td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\"/><td class=\"text-center\"/><td class=\"text-center\"/><td class=\"text-center\"/><td class=\"text-center\"/><td class=\"text-center\"/><td class=\"text-center\"/><td/><td><code>*</code></td><td><code>CodeSystem:supplements</code>, <code>ConceptMap:other</code>, <code>ConceptMap:source</code>, <code>ConceptMap:source-uri</code>, <code>ConceptMap:target</code>, <code>ConceptMap:target-uri</code>, <code>Group:managing-entity</code>, <code>Group:member</code></td><td><code>$expunge</code></td></tr><tr><td><a href=\"#CodeSystem1-2\">CodeSystem</a></td><td><a href=\"http://hl7.org/fhir/R4/codesystem.html\">http://hl7.org/fhir/StructureDefinition/CodeSystem</a></td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td>_content, _filter, _has, _id, _language, _lastUpdated, _list, _profile, _security, _source, _tag, _text, code, content-mode, context, context-quantity, context-type, context-type-quantity, context-type-value, date, description, identifier, jurisdiction, language, name, publisher, status, supplements, system, title, url, version</td><td><code>*</code>, <code>CodeSystem:supplements</code></td><td><code>CodeSystem:supplements</code>, <code>ConceptMap:other</code>, <code>ConceptMap:source</code>, <code>ConceptMap:source-uri</code>, <code>ConceptMap:target</code>, <code>ConceptMap:target-uri</code>, <code>Group:managing-entity</code>, <code>Group:member</code></td><td><code>$upload-external-code-system</code>, <code>$apply-codesystem-delta-remove</code>, <code>$apply-codesystem-delta-add</code>, <code>$validate</code>, <code>$meta-delete</code>, <code>$meta-add</code>, <code>$meta</code>, <code>$expunge</code>, <code>$validate-code</code>, <code>$subsumes</code>, <code>$lookup</code></td></tr><tr><td><a href=\"#ConceptMap1-3\">ConceptMap</a></td><td><a href=\"http://hl7.org/fhir/R4/conceptmap.html\">http://hl7.org/fhir/StructureDefinition/ConceptMap</a></td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td>_content, _filter, _has, _id, _language, _lastUpdated, _list, _profile, _security, _source, _tag, _text, context, context-quantity, context-type, context-type-quantity, context-type-value, date, dependson, description, identifier, jurisdiction, name, other, product, publisher, source, source-code, source-system, source-uri, status, target, target-code, target-system, target-uri, title, url, version</td><td><code>*</code>, <code>ConceptMap:other</code>, <code>ConceptMap:source</code>, <code>ConceptMap:source-uri</code>, <code>ConceptMap:target</code>, <code>ConceptMap:target-uri</code></td><td><code>CodeSystem:supplements</code>, <code>ConceptMap:other</code>, <code>ConceptMap:source</code>, <code>ConceptMap:source-uri</code>, <code>ConceptMap:target</code>, <code>ConceptMap:target-uri</code>, <code>Group:managing-entity</code>, <code>Group:member</code></td><td><code>$validate</code>, <code>$meta-delete</code>, <code>$meta-add</code>, <code>$meta</code>, <code>$expunge</code>, <code>$translate</code></td></tr><tr><td><a href=\"#Group1-4\">Group</a></td><td><a href=\"http://hl7.org/fhir/R4/group.html\">http://hl7.org/fhir/StructureDefinition/Group</a></td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td>_content, _filter, _has, _id, _language, _lastUpdated, _list, _profile, _security, _source, _tag, _text, actual, characteristic, characteristic-value, code, exclude, identifier, managing-entity, member, type, value</td><td><code>*</code>, <code>Group:managing-entity</code>, <code>Group:member</code></td><td><code>CodeSystem:supplements</code>, <code>ConceptMap:other</code>, <code>ConceptMap:source</code>, <code>ConceptMap:source-uri</code>, <code>ConceptMap:target</code>, <code>ConceptMap:target-uri</code>, <code>Group:managing-entity</code>, <code>Group:member</code></td><td><code>$validate</code>, <code>$meta-delete</code>, <code>$meta-add</code>, <code>$meta</code>, <code>$expunge</code></td></tr><tr><td><a href=\"#NamingSystem1-5\">NamingSystem</a></td><td><a href=\"http://hl7.org/fhir/R4/namingsystem.html\">http://hl7.org/fhir/StructureDefinition/NamingSystem</a></td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td>_content, _filter, _has, _id, _language, _lastUpdated, _list, _profile, _security, _source, _tag, _text, contact, context, context-quantity, context-type, context-type-quantity, context-type-value, date, description, id-type, jurisdiction, kind, name, period, publisher, responsible, status, telecom, type, value</td><td><code>*</code></td><td><code>CodeSystem:supplements</code>, <code>ConceptMap:other</code>, <code>ConceptMap:source</code>, <code>ConceptMap:source-uri</code>, <code>ConceptMap:target</code>, <code>ConceptMap:target-uri</code>, <code>Group:managing-entity</code>, <code>Group:member</code></td><td><code>$validate</code>, <code>$meta-delete</code>, <code>$meta-add</code>, <code>$meta</code>, <code>$expunge</code></td></tr><tr><td><a href=\"#OperationDefinition1-6\">OperationDefinition</a></td><td><a href=\"http://hl7.org/fhir/R4/operationdefinition.html\">http://hl7.org/fhir/StructureDefinition/OperationDefinition</a></td><td class=\"text-center\">y</td><td class=\"text-center\"/><td class=\"text-center\"/><td class=\"text-center\"/><td class=\"text-center\"/><td class=\"text-center\"/><td class=\"text-center\"/><td class=\"text-center\"/><td class=\"text-center\"/><td/><td><code>*</code></td><td><code>CodeSystem:supplements</code>, <code>ConceptMap:other</code>, <code>ConceptMap:source</code>, <code>ConceptMap:source-uri</code>, <code>ConceptMap:target</code>, <code>ConceptMap:target-uri</code>, <code>Group:managing-entity</code>, <code>Group:member</code></td><td/></tr><tr><td><a href=\"#Practitioner1-7\">Practitioner</a></td><td><a href=\"http://hl7.org/fhir/R4/practitioner.html\">http://hl7.org/fhir/StructureDefinition/Practitioner</a></td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td>_content, _filter, _has, _id, _language, _lastUpdated, _list, _profile, _security, _source, _tag, _text, active, address, address-city, address-country, address-postalcode, address-state, address-use, communication, email, family, gender, given, identifier, name, phone, phonetic, telecom</td><td><code>*</code></td><td><code>CodeSystem:supplements</code>, <code>ConceptMap:other</code>, <code>ConceptMap:source</code>, <code>ConceptMap:source-uri</code>, <code>ConceptMap:target</code>, <code>ConceptMap:target-uri</code>, <code>Group:managing-entity</code>, <code>Group:member</code></td><td><code>$validate</code>, <code>$meta-delete</code>, <code>$meta-add</code>, <code>$meta</code>, <code>$expunge</code></td></tr><tr><td><a href=\"#StructureDefinition1-8\">StructureDefinition</a></td><td><a href=\"http://hl7.org/fhir/R4/structuredefinition.html\">http://hl7.org/fhir/StructureDefinition/StructureDefinition</a></td><td class=\"text-center\">y</td><td class=\"text-center\"/><td class=\"text-center\">y</td><td class=\"text-center\"/><td class=\"text-center\"/><td class=\"text-center\"/><td class=\"text-center\"/><td class=\"text-center\"/><td class=\"text-center\"/><td>type</td><td><code>*</code></td><td><code>CodeSystem:supplements</code>, <code>ConceptMap:other</code>, <code>ConceptMap:source</code>, <code>ConceptMap:source-uri</code>, <code>ConceptMap:target</code>, <code>ConceptMap:target-uri</code>, <code>Group:managing-entity</code>, <code>Group:member</code></td><td/></tr><tr><td><a href=\"#ValueSet1-9\">ValueSet</a></td><td><a href=\"http://hl7.org/fhir/R4/valueset.html\">http://hl7.org/fhir/StructureDefinition/ValueSet</a></td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td>_content, _filter, _has, _id, _language, _lastUpdated, _list, _profile, _security, _source, _tag, _text, code, context, context-quantity, context-type, context-type-quantity, context-type-value, date, description, expansion, identifier, jurisdiction, name, publisher, reference, status, title, url, version</td><td><code>*</code></td><td><code>CodeSystem:supplements</code>, <code>ConceptMap:other</code>, <code>ConceptMap:source</code>, <code>ConceptMap:source-uri</code>, <code>ConceptMap:target</code>, <code>ConceptMap:target-uri</code>, <code>Group:managing-entity</code>, <code>Group:member</code></td><td><code>$validate-code</code>, <code>$invalidate-expansion</code>, <code>$expand</code>, <code>$validate</code>, <code>$meta-delete</code>, <code>$meta-add</code>, <code>$meta</code>, <code>$expunge</code></td></tr></tbody></table></div><hr/><div class=\"panel panel-default\"><div class=\"panel-heading\"><h4 id=\"Binary1-1\" class=\"panel-title\"><span style=\"float: right;\">Resource Conformance: unspecified </span>Binary</h4></div><div class=\"panel-body\"><div class=\"container\"><div class=\"row\"><div class=\"col-lg-6\"><span class=\"lead\">Base System Profile</span><br/><a href=\"http://hl7.org/fhir/R4/binary.html\">Binary</a></div><div class=\"col-lg-3\"><span class=\"lead\">Profile Conformance</span><br/><b>SHALL</b></div><div class=\"col-lg-3\"><span class=\"lead\">Reference Policy</span><br/></div></div><p/><div class=\"row\"><div class=\"col-lg-6\"><span class=\"lead\">Interaction summary</span><br/><ul><li>Supports <code>vread</code>, <code>read</code>.</li></ul></div></div><p/><div class=\"row\"><div class=\"col-12\"><span class=\"lead\">Extended Operations</span><table class=\"table table-condensed table-hover\"><thead><tr><th>Conformance</th><th>Operation</th><th>Documentation</th></tr></thead><tbody><tr><td><b>SHALL</b></td><td>$expunge</td><td><div/></td></tr></tbody></table></div></div></div></div></div><div class=\"panel panel-default\"><div class=\"panel-heading\"><h4 id=\"CodeSystem1-2\" class=\"panel-title\"><span style=\"float: right;\">Resource Conformance: unspecified </span>CodeSystem</h4></div><div class=\"panel-body\"><div class=\"container\"><div class=\"row\"><div class=\"col-lg-6\"><span class=\"lead\">Base System Profile</span><br/><a href=\"http://hl7.org/fhir/R4/codesystem.html\">CodeSystem</a></div><div class=\"col-lg-3\"><span class=\"lead\">Profile Conformance</span><br/><b>SHALL</b></div><div class=\"col-lg-3\"><span class=\"lead\">Reference Policy</span><br/></div></div><p/><div class=\"row\"><div class=\"col-lg-6\"><span class=\"lead\">Interaction summary</span><br/><ul><li>Supports <code>update</code>, <code>vread</code>, <code>read</code>, <code>patch</code>, <code>history-type</code>, <code>history-instance</code>, <code>delete</code>, <code>create</code>, <code>search-type</code>.</li></ul></div></div><p/><div class=\"row\"><div class=\"col-lg-7\"><span class=\"lead\">Search Parameters</span><table class=\"table table-condensed table-hover\"><thead><tr><th>Conformance</th><th>Parameter</th><th>Type</th><th>Documentation</th></tr></thead><tbody><tr><td><b>SHALL</b></td><td>_content</td><td><code>string</code></td><td><div><p>Search the contents of the resource's data using a fulltext search</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_filter</td><td><code>string</code></td><td><div><p>Search the contents of the resource's data using a filter</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_has</td><td><code>string</code></td><td><div><p>Return resources linked to by the given target</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_id</td><td><code>token</code></td><td><div><p>The ID of the resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_language</td><td><code>token</code></td><td><div><p>The language of the resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_lastUpdated</td><td><code>date</code></td><td><div><p>Only return resources which were last updated as specified by the given range</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_list</td><td><code>string</code></td><td><div><p>Search the contents of the resource's data using a list</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_profile</td><td><code>uri</code></td><td><div><p>The profile of the resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_security</td><td><code>token</code></td><td><div><p>The security of the resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_source</td><td><code>uri</code></td><td><div><p>Search for resources which have the given source value (Resource.meta.source)</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_tag</td><td><code>token</code></td><td><div><p>The tag of the resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_text</td><td><code>string</code></td><td><div><p>Search the contents of the resource's narrative using a fulltext search</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>code</td><td><code>token</code></td><td><div><p>A code defined in the code system</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>content-mode</td><td><code>token</code></td><td><div><p>not-present | example | fragment | complete | supplement</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>context</td><td><code>token</code></td><td><div><p>A use context assigned to the code system</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>context-quantity</td><td><code>quantity</code></td><td><div><p>A quantity- or range-valued use context assigned to the code system</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>context-type</td><td><code>token</code></td><td><div><p>A type of use context assigned to the code system</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>context-type-quantity</td><td><code>composite</code></td><td><div><p>A use context type and quantity- or range-based value assigned to the code system</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>context-type-value</td><td><code>composite</code></td><td><div><p>A use context type and value assigned to the code system</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>date</td><td><code>date</code></td><td><div><p>The code system publication date</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>description</td><td><code>string</code></td><td><div><p>The description of the code system</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>identifier</td><td><code>token</code></td><td><div><p>External identifier for the code system</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>jurisdiction</td><td><code>token</code></td><td><div><p>Intended jurisdiction for the code system</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>language</td><td><code>token</code></td><td><div><p>A language in which a designation is provided</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>name</td><td><code>string</code></td><td><div><p>Computationally friendly name of the code system</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>publisher</td><td><code>string</code></td><td><div><p>Name of the publisher of the code system</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>status</td><td><code>token</code></td><td><div><p>The current status of the code system</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>supplements</td><td><code>reference</code></td><td><div><p>Find code system supplements for the referenced code system</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>system</td><td><code>uri</code></td><td><div><p>The system for any codes defined by this code system (same as 'url')</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>title</td><td><code>string</code></td><td><div><p>The human-friendly name of the code system</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>url</td><td><code>uri</code></td><td><div><p>The uri that identifies the code system</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>version</td><td><code>token</code></td><td><div><p>The business version of the code system</p>\n</div></td></tr></tbody></table></div><div class=\"col-lg-5\"> </div></div><div class=\"row\"><div class=\"col-12\"><span class=\"lead\">Extended Operations</span><table class=\"table table-condensed table-hover\"><thead><tr><th>Conformance</th><th>Operation</th><th>Documentation</th></tr></thead><tbody><tr><td><b>SHALL</b></td><td>$upload-external-code-system</td><td><div/></td></tr><tr><td><b>SHALL</b></td><td>$apply-codesystem-delta-remove</td><td><div/></td></tr><tr><td><b>SHALL</b></td><td>$apply-codesystem-delta-add</td><td><div/></td></tr><tr><td><b>SHALL</b></td><td>$validate</td><td><div/></td></tr><tr><td><b>SHALL</b></td><td>$meta-delete</td><td><div><p>Delete tags, profiles, and/or security labels from a resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>$meta-add</td><td><div><p>Add tags, profiles, and/or security labels to a resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>$meta</td><td><div><p>Request a list of tags, profiles, and security labels for a specfic resource instance</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>$expunge</td><td><div/></td></tr><tr><td><b>SHALL</b></td><td>$validate-code</td><td><div/></td></tr><tr><td><b>SHALL</b></td><td>$subsumes</td><td><div/></td></tr><tr><td><b>SHALL</b></td><td>$lookup</td><td><div/></td></tr></tbody></table></div></div></div></div></div><div class=\"panel panel-default\"><div class=\"panel-heading\"><h4 id=\"ConceptMap1-3\" class=\"panel-title\"><span style=\"float: right;\">Resource Conformance: unspecified </span>ConceptMap</h4></div><div class=\"panel-body\"><div class=\"container\"><div class=\"row\"><div class=\"col-lg-6\"><span class=\"lead\">Base System Profile</span><br/><a href=\"http://hl7.org/fhir/R4/conceptmap.html\">ConceptMap</a></div><div class=\"col-lg-3\"><span class=\"lead\">Profile Conformance</span><br/><b>SHALL</b></div><div class=\"col-lg-3\"><span class=\"lead\">Reference Policy</span><br/></div></div><p/><div class=\"row\"><div class=\"col-lg-6\"><span class=\"lead\">Interaction summary</span><br/><ul><li>Supports <code>update</code>, <code>vread</code>, <code>read</code>, <code>patch</code>, <code>history-type</code>, <code>history-instance</code>, <code>delete</code>, <code>create</code>, <code>search-type</code>.</li></ul></div></div><p/><div class=\"row\"><div class=\"col-lg-7\"><span class=\"lead\">Search Parameters</span><table class=\"table table-condensed table-hover\"><thead><tr><th>Conformance</th><th>Parameter</th><th>Type</th><th>Documentation</th></tr></thead><tbody><tr><td><b>SHALL</b></td><td>_content</td><td><code>string</code></td><td><div><p>Search the contents of the resource's data using a fulltext search</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_filter</td><td><code>string</code></td><td><div><p>Search the contents of the resource's data using a filter</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_has</td><td><code>string</code></td><td><div><p>Return resources linked to by the given target</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_id</td><td><code>token</code></td><td><div><p>The ID of the resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_language</td><td><code>token</code></td><td><div><p>The language of the resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_lastUpdated</td><td><code>date</code></td><td><div><p>Only return resources which were last updated as specified by the given range</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_list</td><td><code>string</code></td><td><div><p>Search the contents of the resource's data using a list</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_profile</td><td><code>uri</code></td><td><div><p>The profile of the resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_security</td><td><code>token</code></td><td><div><p>The security of the resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_source</td><td><code>uri</code></td><td><div><p>Search for resources which have the given source value (Resource.meta.source)</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_tag</td><td><code>token</code></td><td><div><p>The tag of the resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_text</td><td><code>string</code></td><td><div><p>Search the contents of the resource's narrative using a fulltext search</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>context</td><td><code>token</code></td><td><div><p>A use context assigned to the concept map</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>context-quantity</td><td><code>quantity</code></td><td><div><p>A quantity- or range-valued use context assigned to the concept map</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>context-type</td><td><code>token</code></td><td><div><p>A type of use context assigned to the concept map</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>context-type-quantity</td><td><code>composite</code></td><td><div><p>A use context type and quantity- or range-based value assigned to the concept map</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>context-type-value</td><td><code>composite</code></td><td><div><p>A use context type and value assigned to the concept map</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>date</td><td><code>date</code></td><td><div><p>The concept map publication date</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>dependson</td><td><code>uri</code></td><td><div><p>Reference to property mapping depends on</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>description</td><td><code>string</code></td><td><div><p>The description of the concept map</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>identifier</td><td><code>token</code></td><td><div><p>External identifier for the concept map</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>jurisdiction</td><td><code>token</code></td><td><div><p>Intended jurisdiction for the concept map</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>name</td><td><code>string</code></td><td><div><p>Computationally friendly name of the concept map</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>other</td><td><code>reference</code></td><td><div><p>canonical reference to an additional ConceptMap to use for mapping if the source concept is unmapped</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>product</td><td><code>uri</code></td><td><div><p>Reference to property mapping depends on</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>publisher</td><td><code>string</code></td><td><div><p>Name of the publisher of the concept map</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>source</td><td><code>reference</code></td><td><div><p>The source value set that contains the concepts that are being mapped</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>source-code</td><td><code>token</code></td><td><div><p>Identifies element being mapped</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>source-system</td><td><code>uri</code></td><td><div><p>Source system where concepts to be mapped are defined</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>source-uri</td><td><code>reference</code></td><td><div><p>The source value set that contains the concepts that are being mapped</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>status</td><td><code>token</code></td><td><div><p>The current status of the concept map</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>target</td><td><code>reference</code></td><td><div><p>The target value set which provides context for the mappings</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>target-code</td><td><code>token</code></td><td><div><p>Code that identifies the target element</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>target-system</td><td><code>uri</code></td><td><div><p>Target system that the concepts are to be mapped to</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>target-uri</td><td><code>reference</code></td><td><div><p>The target value set which provides context for the mappings</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>title</td><td><code>string</code></td><td><div><p>The human-friendly name of the concept map</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>url</td><td><code>uri</code></td><td><div><p>The uri that identifies the concept map</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>version</td><td><code>token</code></td><td><div><p>The business version of the concept map</p>\n</div></td></tr></tbody></table></div><div class=\"col-lg-5\"> </div></div><div class=\"row\"><div class=\"col-12\"><span class=\"lead\">Extended Operations</span><table class=\"table table-condensed table-hover\"><thead><tr><th>Conformance</th><th>Operation</th><th>Documentation</th></tr></thead><tbody><tr><td><b>SHALL</b></td><td>$validate</td><td><div/></td></tr><tr><td><b>SHALL</b></td><td>$meta-delete</td><td><div><p>Delete tags, profiles, and/or security labels from a resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>$meta-add</td><td><div><p>Add tags, profiles, and/or security labels to a resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>$meta</td><td><div><p>Request a list of tags, profiles, and security labels for a specfic resource instance</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>$expunge</td><td><div/></td></tr><tr><td><b>SHALL</b></td><td>$translate</td><td><div/></td></tr></tbody></table></div></div></div></div></div><div class=\"panel panel-default\"><div class=\"panel-heading\"><h4 id=\"Group1-4\" class=\"panel-title\"><span style=\"float: right;\">Resource Conformance: unspecified </span>Group</h4></div><div class=\"panel-body\"><div class=\"container\"><div class=\"row\"><div class=\"col-lg-6\"><span class=\"lead\">Base System Profile</span><br/><a href=\"http://hl7.org/fhir/R4/group.html\">Group</a></div><div class=\"col-lg-3\"><span class=\"lead\">Profile Conformance</span><br/><b>SHALL</b></div><div class=\"col-lg-3\"><span class=\"lead\">Reference Policy</span><br/></div></div><p/><div class=\"row\"><div class=\"col-lg-6\"><span class=\"lead\">Interaction summary</span><br/><ul><li>Supports <code>search-type</code>, <code>update</code>, <code>vread</code>, <code>read</code>, <code>patch</code>, <code>history-type</code>, <code>history-instance</code>, <code>delete</code>, <code>create</code>.</li></ul></div></div><p/><div class=\"row\"><div class=\"col-lg-7\"><span class=\"lead\">Search Parameters</span><table class=\"table table-condensed table-hover\"><thead><tr><th>Conformance</th><th>Parameter</th><th>Type</th><th>Documentation</th></tr></thead><tbody><tr><td><b>SHALL</b></td><td>_content</td><td><code>string</code></td><td><div><p>Search the contents of the resource's data using a fulltext search</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_filter</td><td><code>string</code></td><td><div><p>Search the contents of the resource's data using a filter</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_has</td><td><code>string</code></td><td><div><p>Return resources linked to by the given target</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_id</td><td><code>token</code></td><td><div><p>The ID of the resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_language</td><td><code>token</code></td><td><div><p>The language of the resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_lastUpdated</td><td><code>date</code></td><td><div><p>Only return resources which were last updated as specified by the given range</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_list</td><td><code>string</code></td><td><div><p>Search the contents of the resource's data using a list</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_profile</td><td><code>uri</code></td><td><div><p>The profile of the resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_security</td><td><code>token</code></td><td><div><p>The security of the resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_source</td><td><code>uri</code></td><td><div><p>Search for resources which have the given source value (Resource.meta.source)</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_tag</td><td><code>token</code></td><td><div><p>The tag of the resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_text</td><td><code>string</code></td><td><div><p>Search the contents of the resource's narrative using a fulltext search</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>actual</td><td><code>token</code></td><td><div><p>Descriptive or actual</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>characteristic</td><td><code>token</code></td><td><div><p>Kind of characteristic</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>characteristic-value</td><td><code>composite</code></td><td><div><p>A composite of both characteristic and value</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>code</td><td><code>token</code></td><td><div><p>The kind of resources contained</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>exclude</td><td><code>token</code></td><td><div><p>Group includes or excludes</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>identifier</td><td><code>token</code></td><td><div><p>Unique id</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>managing-entity</td><td><code>reference</code></td><td><div><p>Entity that is the custodian of the Group's definition</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>member</td><td><code>reference</code></td><td><div><p>Reference to the group member</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>type</td><td><code>token</code></td><td><div><p>The type of resources the group contains</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>value</td><td><code>token</code></td><td><div><p>Value held by characteristic</p>\n</div></td></tr></tbody></table></div><div class=\"col-lg-5\"> </div></div><div class=\"row\"><div class=\"col-12\"><span class=\"lead\">Extended Operations</span><table class=\"table table-condensed table-hover\"><thead><tr><th>Conformance</th><th>Operation</th><th>Documentation</th></tr></thead><tbody><tr><td><b>SHALL</b></td><td>$validate</td><td><div/></td></tr><tr><td><b>SHALL</b></td><td>$meta-delete</td><td><div><p>Delete tags, profiles, and/or security labels from a resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>$meta-add</td><td><div><p>Add tags, profiles, and/or security labels to a resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>$meta</td><td><div><p>Request a list of tags, profiles, and security labels for a specfic resource instance</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>$expunge</td><td><div/></td></tr></tbody></table></div></div></div></div></div><div class=\"panel panel-default\"><div class=\"panel-heading\"><h4 id=\"NamingSystem1-5\" class=\"panel-title\"><span style=\"float: right;\">Resource Conformance: unspecified </span>NamingSystem</h4></div><div class=\"panel-body\"><div class=\"container\"><div class=\"row\"><div class=\"col-lg-6\"><span class=\"lead\">Base System Profile</span><br/><a href=\"http://hl7.org/fhir/R4/namingsystem.html\">NamingSystem</a></div><div class=\"col-lg-3\"><span class=\"lead\">Profile Conformance</span><br/><b>SHALL</b></div><div class=\"col-lg-3\"><span class=\"lead\">Reference Policy</span><br/></div></div><p/><div class=\"row\"><div class=\"col-lg-6\"><span class=\"lead\">Interaction summary</span><br/><ul><li>Supports <code>update</code>, <code>vread</code>, <code>read</code>, <code>patch</code>, <code>history-type</code>, <code>history-instance</code>, <code>delete</code>, <code>create</code>, <code>search-type</code>.</li></ul></div></div><p/><div class=\"row\"><div class=\"col-lg-7\"><span class=\"lead\">Search Parameters</span><table class=\"table table-condensed table-hover\"><thead><tr><th>Conformance</th><th>Parameter</th><th>Type</th><th>Documentation</th></tr></thead><tbody><tr><td><b>SHALL</b></td><td>_content</td><td><code>string</code></td><td><div><p>Search the contents of the resource's data using a fulltext search</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_filter</td><td><code>string</code></td><td><div><p>Search the contents of the resource's data using a filter</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_has</td><td><code>string</code></td><td><div><p>Return resources linked to by the given target</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_id</td><td><code>token</code></td><td><div><p>The ID of the resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_language</td><td><code>token</code></td><td><div><p>The language of the resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_lastUpdated</td><td><code>date</code></td><td><div><p>Only return resources which were last updated as specified by the given range</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_list</td><td><code>string</code></td><td><div><p>Search the contents of the resource's data using a list</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_profile</td><td><code>uri</code></td><td><div><p>The profile of the resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_security</td><td><code>token</code></td><td><div><p>The security of the resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_source</td><td><code>uri</code></td><td><div><p>Search for resources which have the given source value (Resource.meta.source)</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_tag</td><td><code>token</code></td><td><div><p>The tag of the resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_text</td><td><code>string</code></td><td><div><p>Search the contents of the resource's narrative using a fulltext search</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>contact</td><td><code>string</code></td><td><div><p>Name of an individual to contact</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>context</td><td><code>token</code></td><td><div><p>A use context assigned to the naming system</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>context-quantity</td><td><code>quantity</code></td><td><div><p>A quantity- or range-valued use context assigned to the naming system</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>context-type</td><td><code>token</code></td><td><div><p>A type of use context assigned to the naming system</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>context-type-quantity</td><td><code>composite</code></td><td><div><p>A use context type and quantity- or range-based value assigned to the naming system</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>context-type-value</td><td><code>composite</code></td><td><div><p>A use context type and value assigned to the naming system</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>date</td><td><code>date</code></td><td><div><p>The naming system publication date</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>description</td><td><code>string</code></td><td><div><p>The description of the naming system</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>id-type</td><td><code>token</code></td><td><div><p>oid | uuid | uri | other</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>jurisdiction</td><td><code>token</code></td><td><div><p>Intended jurisdiction for the naming system</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>kind</td><td><code>token</code></td><td><div><p>codesystem | identifier | root</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>name</td><td><code>string</code></td><td><div><p>Computationally friendly name of the naming system</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>period</td><td><code>date</code></td><td><div><p>When is identifier valid?</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>publisher</td><td><code>string</code></td><td><div><p>Name of the publisher of the naming system</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>responsible</td><td><code>string</code></td><td><div><p>Who maintains system namespace?</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>status</td><td><code>token</code></td><td><div><p>The current status of the naming system</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>telecom</td><td><code>token</code></td><td><div><p>Contact details for individual or organization</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>type</td><td><code>token</code></td><td><div><p>e.g. driver, provider, patient, bank etc.</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>value</td><td><code>string</code></td><td><div><p>The unique identifier</p>\n</div></td></tr></tbody></table></div><div class=\"col-lg-5\"> </div></div><div class=\"row\"><div class=\"col-12\"><span class=\"lead\">Extended Operations</span><table class=\"table table-condensed table-hover\"><thead><tr><th>Conformance</th><th>Operation</th><th>Documentation</th></tr></thead><tbody><tr><td><b>SHALL</b></td><td>$validate</td><td><div/></td></tr><tr><td><b>SHALL</b></td><td>$meta-delete</td><td><div><p>Delete tags, profiles, and/or security labels from a resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>$meta-add</td><td><div><p>Add tags, profiles, and/or security labels to a resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>$meta</td><td><div><p>Request a list of tags, profiles, and security labels for a specfic resource instance</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>$expunge</td><td><div/></td></tr></tbody></table></div></div></div></div></div><div class=\"panel panel-default\"><div class=\"panel-heading\"><h4 id=\"OperationDefinition1-6\" class=\"panel-title\"><span style=\"float: right;\">Resource Conformance: unspecified </span>OperationDefinition</h4></div><div class=\"panel-body\"><div class=\"container\"><div class=\"row\"><div class=\"col-lg-6\"><span class=\"lead\">Base System Profile</span><br/><a href=\"http://hl7.org/fhir/R4/operationdefinition.html\">OperationDefinition</a></div><div class=\"col-lg-3\"><span class=\"lead\">Profile Conformance</span><br/><b>SHALL</b></div><div class=\"col-lg-3\"><span class=\"lead\">Reference Policy</span><br/></div></div><p/><div class=\"row\"><div class=\"col-lg-6\"><span class=\"lead\">Interaction summary</span><br/><ul><li>Supports <code>read</code>.</li></ul></div></div><p/></div></div></div><div class=\"panel panel-default\"><div class=\"panel-heading\"><h4 id=\"Practitioner1-7\" class=\"panel-title\"><span style=\"float: right;\">Resource Conformance: unspecified </span>Practitioner</h4></div><div class=\"panel-body\"><div class=\"container\"><div class=\"row\"><div class=\"col-lg-6\"><span class=\"lead\">Base System Profile</span><br/><a href=\"http://hl7.org/fhir/R4/practitioner.html\">Practitioner</a></div><div class=\"col-lg-3\"><span class=\"lead\">Profile Conformance</span><br/><b>SHALL</b></div><div class=\"col-lg-3\"><span class=\"lead\">Reference Policy</span><br/></div></div><p/><div class=\"row\"><div class=\"col-lg-6\"><span class=\"lead\">Interaction summary</span><br/><ul><li>Supports <code>search-type</code>, <code>update</code>, <code>vread</code>, <code>read</code>, <code>patch</code>, <code>history-type</code>, <code>history-instance</code>, <code>delete</code>, <code>create</code>.</li></ul></div></div><p/><div class=\"row\"><div class=\"col-lg-7\"><span class=\"lead\">Search Parameters</span><table class=\"table table-condensed table-hover\"><thead><tr><th>Conformance</th><th>Parameter</th><th>Type</th><th>Documentation</th></tr></thead><tbody><tr><td><b>SHALL</b></td><td>_content</td><td><code>string</code></td><td><div><p>Search the contents of the resource's data using a fulltext search</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_filter</td><td><code>string</code></td><td><div><p>Search the contents of the resource's data using a filter</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_has</td><td><code>string</code></td><td><div><p>Return resources linked to by the given target</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_id</td><td><code>token</code></td><td><div><p>The ID of the resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_language</td><td><code>token</code></td><td><div><p>The language of the resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_lastUpdated</td><td><code>date</code></td><td><div><p>Only return resources which were last updated as specified by the given range</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_list</td><td><code>string</code></td><td><div><p>Search the contents of the resource's data using a list</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_profile</td><td><code>uri</code></td><td><div><p>The profile of the resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_security</td><td><code>token</code></td><td><div><p>The security of the resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_source</td><td><code>uri</code></td><td><div><p>Search for resources which have the given source value (Resource.meta.source)</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_tag</td><td><code>token</code></td><td><div><p>The tag of the resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_text</td><td><code>string</code></td><td><div><p>Search the contents of the resource's narrative using a fulltext search</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>active</td><td><code>token</code></td><td><div><p>Whether the practitioner record is active</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>address</td><td><code>string</code></td><td><div><p>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</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>address-city</td><td><code>string</code></td><td><div><p>A city specified in an address</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>address-country</td><td><code>string</code></td><td><div><p>A country specified in an address</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>address-postalcode</td><td><code>string</code></td><td><div><p>A postalCode specified in an address</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>address-state</td><td><code>string</code></td><td><div><p>A state specified in an address</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>address-use</td><td><code>token</code></td><td><div><p>A use code specified in an address</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>communication</td><td><code>token</code></td><td><div><p>One of the languages that the practitioner can communicate with</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>email</td><td><code>token</code></td><td><div><p>A value in an email contact</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>family</td><td><code>string</code></td><td><div><p>A portion of the family name</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>gender</td><td><code>token</code></td><td><div><p>Gender of the practitioner</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>given</td><td><code>string</code></td><td><div><p>A portion of the given name</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>identifier</td><td><code>token</code></td><td><div><p>A practitioner's Identifier</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>name</td><td><code>string</code></td><td><div><p>A server defined search that may match any of the string fields in the HumanName, including family, give, prefix, suffix, suffix, and/or text</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>phone</td><td><code>token</code></td><td><div><p>A value in a phone contact</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>phonetic</td><td><code>string</code></td><td><div><p>A portion of either family or given name using some kind of phonetic matching algorithm</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>telecom</td><td><code>token</code></td><td><div><p>The value in any kind of contact</p>\n</div></td></tr></tbody></table></div><div class=\"col-lg-5\"> </div></div><div class=\"row\"><div class=\"col-12\"><span class=\"lead\">Extended Operations</span><table class=\"table table-condensed table-hover\"><thead><tr><th>Conformance</th><th>Operation</th><th>Documentation</th></tr></thead><tbody><tr><td><b>SHALL</b></td><td>$validate</td><td><div/></td></tr><tr><td><b>SHALL</b></td><td>$meta-delete</td><td><div><p>Delete tags, profiles, and/or security labels from a resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>$meta-add</td><td><div><p>Add tags, profiles, and/or security labels to a resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>$meta</td><td><div><p>Request a list of tags, profiles, and security labels for a specfic resource instance</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>$expunge</td><td><div/></td></tr></tbody></table></div></div></div></div></div><div class=\"panel panel-default\"><div class=\"panel-heading\"><h4 id=\"StructureDefinition1-8\" class=\"panel-title\"><span style=\"float: right;\">Resource Conformance: unspecified </span>StructureDefinition</h4></div><div class=\"panel-body\"><div class=\"container\"><div class=\"row\"><div class=\"col-lg-6\"><span class=\"lead\">Base System Profile</span><br/><a href=\"http://hl7.org/fhir/R4/structuredefinition.html\">StructureDefinition</a></div><div class=\"col-lg-3\"><span class=\"lead\">Profile Conformance</span><br/><b>SHALL</b></div><div class=\"col-lg-3\"><span class=\"lead\">Reference Policy</span><br/></div></div><p/><div class=\"row\"><div class=\"col-lg-6\"><span class=\"lead\">Interaction summary</span><br/><ul><li>Supports <code>search-type</code>, <code>read</code>.</li></ul></div></div><p/><div class=\"row\"><div class=\"col-lg-7\"><span class=\"lead\">Search Parameters</span><table class=\"table table-condensed table-hover\"><thead><tr><th>Conformance</th><th>Parameter</th><th>Type</th><th>Documentation</th></tr></thead><tbody><tr><td><b>SHALL</b></td><td>type</td><td><code>token</code></td><td><div><p>Type defined or constrained by this structure</p>\n</div></td></tr></tbody></table></div><div class=\"col-lg-5\"> </div></div></div></div></div><div class=\"panel panel-default\"><div class=\"panel-heading\"><h4 id=\"ValueSet1-9\" class=\"panel-title\"><span style=\"float: right;\">Resource Conformance: unspecified </span>ValueSet</h4></div><div class=\"panel-body\"><div class=\"container\"><div class=\"row\"><div class=\"col-lg-6\"><span class=\"lead\">Base System Profile</span><br/><a href=\"http://hl7.org/fhir/R4/valueset.html\">ValueSet</a></div><div class=\"col-lg-3\"><span class=\"lead\">Profile Conformance</span><br/><b>SHALL</b></div><div class=\"col-lg-3\"><span class=\"lead\">Reference Policy</span><br/></div></div><p/><div class=\"row\"><div class=\"col-lg-6\"><span class=\"lead\">Interaction summary</span><br/><ul><li>Supports <code>update</code>, <code>vread</code>, <code>read</code>, <code>patch</code>, <code>history-type</code>, <code>history-instance</code>, <code>delete</code>, <code>create</code>, <code>search-type</code>.</li></ul></div></div><p/><div class=\"row\"><div class=\"col-lg-7\"><span class=\"lead\">Search Parameters</span><table class=\"table table-condensed table-hover\"><thead><tr><th>Conformance</th><th>Parameter</th><th>Type</th><th>Documentation</th></tr></thead><tbody><tr><td><b>SHALL</b></td><td>_content</td><td><code>string</code></td><td><div><p>Search the contents of the resource's data using a fulltext search</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_filter</td><td><code>string</code></td><td><div><p>Search the contents of the resource's data using a filter</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_has</td><td><code>string</code></td><td><div><p>Return resources linked to by the given target</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_id</td><td><code>token</code></td><td><div><p>The ID of the resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_language</td><td><code>token</code></td><td><div><p>The language of the resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_lastUpdated</td><td><code>date</code></td><td><div><p>Only return resources which were last updated as specified by the given range</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_list</td><td><code>string</code></td><td><div><p>Search the contents of the resource's data using a list</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_profile</td><td><code>uri</code></td><td><div><p>The profile of the resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_security</td><td><code>token</code></td><td><div><p>The security of the resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_source</td><td><code>uri</code></td><td><div><p>Search for resources which have the given source value (Resource.meta.source)</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_tag</td><td><code>token</code></td><td><div><p>The tag of the resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_text</td><td><code>string</code></td><td><div><p>Search the contents of the resource's narrative using a fulltext search</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>code</td><td><code>token</code></td><td><div><p>This special parameter searches for codes in the value set. See additional notes on the ValueSet resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>context</td><td><code>token</code></td><td><div><p>A use context assigned to the value set</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>context-quantity</td><td><code>quantity</code></td><td><div><p>A quantity- or range-valued use context assigned to the value set</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>context-type</td><td><code>token</code></td><td><div><p>A type of use context assigned to the value set</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>context-type-quantity</td><td><code>composite</code></td><td><div><p>A use context type and quantity- or range-based value assigned to the value set</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>context-type-value</td><td><code>composite</code></td><td><div><p>A use context type and value assigned to the value set</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>date</td><td><code>date</code></td><td><div><p>The value set publication date</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>description</td><td><code>string</code></td><td><div><p>The description of the value set</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>expansion</td><td><code>uri</code></td><td><div><p>Identifies the value set expansion (business identifier)</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>identifier</td><td><code>token</code></td><td><div><p>External identifier for the value set</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>jurisdiction</td><td><code>token</code></td><td><div><p>Intended jurisdiction for the value set</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>name</td><td><code>string</code></td><td><div><p>Computationally friendly name of the value set</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>publisher</td><td><code>string</code></td><td><div><p>Name of the publisher of the value set</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>reference</td><td><code>uri</code></td><td><div><p>A code system included or excluded in the value set or an imported value set</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>status</td><td><code>token</code></td><td><div><p>The current status of the value set</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>title</td><td><code>string</code></td><td><div><p>The human-friendly name of the value set</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>url</td><td><code>uri</code></td><td><div><p>The uri that identifies the value set</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>version</td><td><code>token</code></td><td><div><p>The business version of the value set</p>\n</div></td></tr></tbody></table></div><div class=\"col-lg-5\"> </div></div><div class=\"row\"><div class=\"col-12\"><span class=\"lead\">Extended Operations</span><table class=\"table table-condensed table-hover\"><thead><tr><th>Conformance</th><th>Operation</th><th>Documentation</th></tr></thead><tbody><tr><td><b>SHALL</b></td><td>$validate-code</td><td><div/></td></tr><tr><td><b>SHALL</b></td><td>$invalidate-expansion</td><td><div/></td></tr><tr><td><b>SHALL</b></td><td>$expand</td><td><div/></td></tr><tr><td><b>SHALL</b></td><td>$validate</td><td><div/></td></tr><tr><td><b>SHALL</b></td><td>$meta-delete</td><td><div><p>Delete tags, profiles, and/or security labels from a resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>$meta-add</td><td><div><p>Add tags, profiles, and/or security labels to a resource</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>$meta</td><td><div><p>Request a list of tags, profiles, and security labels for a specfic resource instance</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>$expunge</td><td><div/></td></tr></tbody></table></div></div></div></div></div></div>" ] ; fhir:CapabilityStatement.url [ fhir:value "http://ehealth.sundhed.dk/fhir/CapabilityStatement/terminology"] ; fhir:CapabilityStatement.version [ fhir:value "10.0.0"] ; fhir:CapabilityStatement.name [ fhir:value "terminology"] ; fhir:CapabilityStatement.status [ fhir:value "active"] ; fhir:CapabilityStatement.date [ fhir:value "2026-08-02T18:24:23.473+00:00"^^xsd:dateTime] ; fhir:CapabilityStatement.publisher [ fhir:value "Den telemedicinske infrastruktur (eHealth Infrastructure)"] ; fhir:CapabilityStatement.contact [ fhir:index 0 ; fhir:ContactDetail.name [ fhir:value "Den telemedicinske infrastruktur (eHealth Infrastructure)" ] ; fhir:ContactDetail.telecom [ fhir:index 0 ; fhir:ContactPoint.system [ fhir:value "url" ] ; fhir:ContactPoint.value [ fhir:value "http://ehealth.sundhed.dk" ] ] ] ; fhir:CapabilityStatement.jurisdiction [ fhir:index 0 ; fhir:CodeableConcept.coding [ fhir:index 0 ; fhir:Coding.system [ fhir:value "urn:iso:std:iso:3166" ] ; fhir:Coding.code [ fhir:value "DK" ] ; fhir:Coding.display [ fhir:value "Denmark" ] ] ] ; fhir:CapabilityStatement.kind [ fhir:value "instance"] ; fhir:CapabilityStatement.instantiates [ fhir:value "http://hl7.org/fhir/uv/bulkdata/CapabilityStatement/bulk-data" ; fhir:index 0 ; fhir:link <http://hl7.org/fhir/uv/bulkdata/CapabilityStatement/bulk-data> ] ; fhir:CapabilityStatement.software [ fhir:CapabilityStatement.software.name [ fhir:value "terminology" ] ; fhir:CapabilityStatement.software.version [ fhir:value "1.25.1" ] ] ; fhir:CapabilityStatement.implementation [ fhir:CapabilityStatement.implementation.description [ fhir:value "eHealth terminology service" ] ; fhir:CapabilityStatement.implementation.url [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir" ] ] ; fhir:CapabilityStatement.fhirVersion [ fhir:value "4.0.1"] ; fhir:CapabilityStatement.format [ fhir:value "application/fhir+xml" ; fhir:index 0 ], [ fhir:value "xml" ; fhir:index 1 ], [ fhir:value "application/fhir+json" ; fhir:index 2 ], [ fhir:value "json" ; fhir:index 3 ], [ fhir:value "application/x-turtle" ; fhir:index 4 ], [ fhir:value "ttl" ; fhir:index 5 ], [ fhir:value "html/json" ; fhir:index 6 ], [ fhir:value "html/xml" ; fhir:index 7 ], [ fhir:value "html/turtle" ; fhir:index 8 ] ; fhir:CapabilityStatement.rest [ fhir:index 0 ; fhir:CapabilityStatement.rest.mode [ fhir:value "server" ] ; fhir:CapabilityStatement.rest.resource [ fhir:index 0 ; fhir:CapabilityStatement.rest.resource.type [ fhir:value "Binary" ] ; fhir:CapabilityStatement.rest.resource.profile [ fhir:value "http://hl7.org/fhir/StructureDefinition/Binary" ; fhir:link <http://hl7.org/fhir/StructureDefinition/Binary> ] ; fhir:CapabilityStatement.rest.resource.interaction [ fhir:index 0 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "vread" ] ], [ fhir:index 1 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "read" ] ] ; fhir:CapabilityStatement.rest.resource.searchInclude [ fhir:value "*" ; fhir:index 0 ] ; fhir:CapabilityStatement.rest.resource.searchRevInclude [ fhir:value "CodeSystem:supplements" ; fhir:index 0 ], [ fhir:value "ConceptMap:other" ; fhir:index 1 ], [ fhir:value "ConceptMap:source" ; fhir:index 2 ], [ fhir:value "ConceptMap:source-uri" ; fhir:index 3 ], [ fhir:value "ConceptMap:target" ; fhir:index 4 ], [ fhir:value "ConceptMap:target-uri" ; fhir:index 5 ], [ fhir:value "Group:managing-entity" ; fhir:index 6 ], [ fhir:value "Group:member" ; fhir:index 7 ] ; fhir:CapabilityStatement.rest.resource.operation [ fhir:index 0 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "expunge" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-its-expunge" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-its-expunge> ] ] ], [ fhir:index 1 ; fhir:CapabilityStatement.rest.resource.type [ fhir:value "CodeSystem" ] ; fhir:CapabilityStatement.rest.resource.profile [ fhir:value "http://hl7.org/fhir/StructureDefinition/CodeSystem" ; fhir:link <http://hl7.org/fhir/StructureDefinition/CodeSystem> ] ; fhir:CapabilityStatement.rest.resource.interaction [ fhir:index 0 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "update" ] ], [ fhir:index 1 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "vread" ] ], [ fhir:index 2 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "read" ] ], [ fhir:index 3 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "patch" ] ], [ fhir:index 4 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "history-type" ] ], [ fhir:index 5 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "history-instance" ] ], [ fhir:index 6 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "delete" ] ], [ fhir:index 7 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "create" ] ], [ fhir:index 8 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "search-type" ] ] ; fhir:CapabilityStatement.rest.resource.conditionalCreate [ fhir:value "true"^^xsd:boolean ] ; fhir:CapabilityStatement.rest.resource.conditionalUpdate [ fhir:value "true"^^xsd:boolean ] ; fhir:CapabilityStatement.rest.resource.conditionalDelete [ fhir:value "multiple" ] ; fhir:CapabilityStatement.rest.resource.searchInclude [ fhir:value "*" ; fhir:index 0 ], [ fhir:value "CodeSystem:supplements" ; fhir:index 1 ] ; fhir:CapabilityStatement.rest.resource.searchRevInclude [ fhir:value "CodeSystem:supplements" ; fhir:index 0 ], [ fhir:value "ConceptMap:other" ; fhir:index 1 ], [ fhir:value "ConceptMap:source" ; fhir:index 2 ], [ fhir:value "ConceptMap:source-uri" ; fhir:index 3 ], [ fhir:value "ConceptMap:target" ; fhir:index 4 ], [ fhir:value "ConceptMap:target-uri" ; fhir:index 5 ], [ fhir:value "Group:managing-entity" ; fhir:index 6 ], [ fhir:value "Group:member" ; fhir:index 7 ] ; fhir:CapabilityStatement.rest.resource.searchParam [ fhir:index 0 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_content" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Search the contents of the resource's data using a fulltext search" ] ], [ fhir:index 1 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_filter" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Search the contents of the resource's data using a filter" ] ], [ fhir:index 2 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_has" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Return resources linked to by the given target" ] ], [ fhir:index 3 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_id" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The ID of the resource" ] ], [ fhir:index 4 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_language" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The language of the resource" ] ], [ fhir:index 5 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_lastUpdated" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "date" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Only return resources which were last updated as specified by the given range" ] ], [ fhir:index 6 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_list" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Search the contents of the resource's data using a list" ] ], [ fhir:index 7 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_profile" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "uri" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The profile of the resource" ] ], [ fhir:index 8 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_security" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The security of the resource" ] ], [ fhir:index 9 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_source" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "uri" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Search for resources which have the given source value (Resource.meta.source)" ] ], [ fhir:index 10 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_tag" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The tag of the resource" ] ], [ fhir:index 11 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_text" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Search the contents of the resource's narrative using a fulltext search" ] ], [ fhir:index 12 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "code" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "A code defined in the code system" ] ], [ fhir:index 13 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "content-mode" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "not-present | example | fragment | complete | supplement" ] ], [ fhir:index 14 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "context" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "A use context assigned to the code system" ] ], [ fhir:index 15 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "context-quantity" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "quantity" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "A quantity- or range-valued use context assigned to the code system" ] ], [ fhir:index 16 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "context-type" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "A type of use context assigned to the code system" ] ], [ fhir:index 17 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "context-type-quantity" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "composite" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "A use context type and quantity- or range-based value assigned to the code system" ] ], [ fhir:index 18 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "context-type-value" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "composite" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "A use context type and value assigned to the code system" ] ], [ fhir:index 19 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "date" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "date" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The code system publication date" ] ], [ fhir:index 20 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "description" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The description of the code system" ] ], [ fhir:index 21 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "identifier" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "External identifier for the code system" ] ], [ fhir:index 22 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "jurisdiction" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Intended jurisdiction for the code system" ] ], [ fhir:index 23 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "language" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "A language in which a designation is provided" ] ], [ fhir:index 24 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "name" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Computationally friendly name of the code system" ] ], [ fhir:index 25 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "publisher" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Name of the publisher of the code system" ] ], [ fhir:index 26 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "status" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The current status of the code system" ] ], [ fhir:index 27 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "supplements" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "reference" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Find code system supplements for the referenced code system" ] ], [ fhir:index 28 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "system" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "uri" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The system for any codes defined by this code system (same as 'url')" ] ], [ fhir:index 29 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "title" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The human-friendly name of the code system" ] ], [ fhir:index 30 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "url" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "uri" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The uri that identifies the code system" ] ], [ fhir:index 31 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "version" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The business version of the code system" ] ] ; fhir:CapabilityStatement.rest.resource.operation [ fhir:index 0 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "upload-external-code-system" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/CodeSystem-t-upload-external-code-system" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/CodeSystem-t-upload-external-code-system> ] ], [ fhir:index 1 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "apply-codesystem-delta-remove" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/CodeSystem-t-apply-codesystem-delta-remove" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/CodeSystem-t-apply-codesystem-delta-remove> ] ], [ fhir:index 2 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "apply-codesystem-delta-add" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/CodeSystem-t-apply-codesystem-delta-add" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/CodeSystem-t-apply-codesystem-delta-add> ] ], [ fhir:index 3 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "validate" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-it-validate" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-it-validate> ] ], [ fhir:index 4 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "meta-delete" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-i-meta-delete" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-i-meta-delete> ] ; fhir:CapabilityStatement.rest.resource.operation.documentation [ fhir:value "Delete tags, profiles, and/or security labels from a resource" ] ], [ fhir:index 5 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "meta-add" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-i-meta-add" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-i-meta-add> ] ; fhir:CapabilityStatement.rest.resource.operation.documentation [ fhir:value "Add tags, profiles, and/or security labels to a resource" ] ], [ fhir:index 6 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "meta" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-its-meta" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-its-meta> ] ; fhir:CapabilityStatement.rest.resource.operation.documentation [ fhir:value "Request a list of tags, profiles, and security labels for a specfic resource instance" ] ], [ fhir:index 7 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "expunge" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-its-expunge" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-its-expunge> ] ], [ fhir:index 8 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "validate-code" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/CodeSystemValueSet-it-validate-code" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/CodeSystemValueSet-it-validate-code> ] ], [ fhir:index 9 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "subsumes" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/CodeSystem-t-subsumes" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/CodeSystem-t-subsumes> ] ], [ fhir:index 10 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "lookup" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/CodeSystem-t-lookup" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/CodeSystem-t-lookup> ] ] ], [ fhir:index 2 ; fhir:CapabilityStatement.rest.resource.type [ fhir:value "ConceptMap" ] ; fhir:CapabilityStatement.rest.resource.profile [ fhir:value "http://hl7.org/fhir/StructureDefinition/ConceptMap" ; fhir:link <http://hl7.org/fhir/StructureDefinition/ConceptMap> ] ; fhir:CapabilityStatement.rest.resource.interaction [ fhir:index 0 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "update" ] ], [ fhir:index 1 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "vread" ] ], [ fhir:index 2 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "read" ] ], [ fhir:index 3 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "patch" ] ], [ fhir:index 4 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "history-type" ] ], [ fhir:index 5 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "history-instance" ] ], [ fhir:index 6 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "delete" ] ], [ fhir:index 7 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "create" ] ], [ fhir:index 8 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "search-type" ] ] ; fhir:CapabilityStatement.rest.resource.conditionalCreate [ fhir:value "true"^^xsd:boolean ] ; fhir:CapabilityStatement.rest.resource.conditionalUpdate [ fhir:value "true"^^xsd:boolean ] ; fhir:CapabilityStatement.rest.resource.conditionalDelete [ fhir:value "multiple" ] ; fhir:CapabilityStatement.rest.resource.searchInclude [ fhir:value "*" ; fhir:index 0 ], [ fhir:value "ConceptMap:other" ; fhir:index 1 ], [ fhir:value "ConceptMap:source" ; fhir:index 2 ], [ fhir:value "ConceptMap:source-uri" ; fhir:index 3 ], [ fhir:value "ConceptMap:target" ; fhir:index 4 ], [ fhir:value "ConceptMap:target-uri" ; fhir:index 5 ] ; fhir:CapabilityStatement.rest.resource.searchRevInclude [ fhir:value "CodeSystem:supplements" ; fhir:index 0 ], [ fhir:value "ConceptMap:other" ; fhir:index 1 ], [ fhir:value "ConceptMap:source" ; fhir:index 2 ], [ fhir:value "ConceptMap:source-uri" ; fhir:index 3 ], [ fhir:value "ConceptMap:target" ; fhir:index 4 ], [ fhir:value "ConceptMap:target-uri" ; fhir:index 5 ], [ fhir:value "Group:managing-entity" ; fhir:index 6 ], [ fhir:value "Group:member" ; fhir:index 7 ] ; fhir:CapabilityStatement.rest.resource.searchParam [ fhir:index 0 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_content" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Search the contents of the resource's data using a fulltext search" ] ], [ fhir:index 1 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_filter" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Search the contents of the resource's data using a filter" ] ], [ fhir:index 2 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_has" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Return resources linked to by the given target" ] ], [ fhir:index 3 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_id" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The ID of the resource" ] ], [ fhir:index 4 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_language" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The language of the resource" ] ], [ fhir:index 5 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_lastUpdated" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "date" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Only return resources which were last updated as specified by the given range" ] ], [ fhir:index 6 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_list" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Search the contents of the resource's data using a list" ] ], [ fhir:index 7 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_profile" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "uri" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The profile of the resource" ] ], [ fhir:index 8 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_security" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The security of the resource" ] ], [ fhir:index 9 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_source" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "uri" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Search for resources which have the given source value (Resource.meta.source)" ] ], [ fhir:index 10 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_tag" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The tag of the resource" ] ], [ fhir:index 11 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_text" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Search the contents of the resource's narrative using a fulltext search" ] ], [ fhir:index 12 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "context" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "A use context assigned to the concept map" ] ], [ fhir:index 13 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "context-quantity" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "quantity" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "A quantity- or range-valued use context assigned to the concept map" ] ], [ fhir:index 14 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "context-type" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "A type of use context assigned to the concept map" ] ], [ fhir:index 15 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "context-type-quantity" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "composite" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "A use context type and quantity- or range-based value assigned to the concept map" ] ], [ fhir:index 16 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "context-type-value" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "composite" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "A use context type and value assigned to the concept map" ] ], [ fhir:index 17 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "date" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "date" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The concept map publication date" ] ], [ fhir:index 18 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "dependson" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "uri" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Reference to property mapping depends on" ] ], [ fhir:index 19 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "description" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The description of the concept map" ] ], [ fhir:index 20 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "identifier" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "External identifier for the concept map" ] ], [ fhir:index 21 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "jurisdiction" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Intended jurisdiction for the concept map" ] ], [ fhir:index 22 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "name" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Computationally friendly name of the concept map" ] ], [ fhir:index 23 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "other" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "reference" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "canonical reference to an additional ConceptMap to use for mapping if the source concept is unmapped" ] ], [ fhir:index 24 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "product" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "uri" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Reference to property mapping depends on" ] ], [ fhir:index 25 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "publisher" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Name of the publisher of the concept map" ] ], [ fhir:index 26 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "source" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "reference" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The source value set that contains the concepts that are being mapped" ] ], [ fhir:index 27 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "source-code" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Identifies element being mapped" ] ], [ fhir:index 28 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "source-system" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "uri" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Source system where concepts to be mapped are defined" ] ], [ fhir:index 29 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "source-uri" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "reference" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The source value set that contains the concepts that are being mapped" ] ], [ fhir:index 30 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "status" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The current status of the concept map" ] ], [ fhir:index 31 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "target" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "reference" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The target value set which provides context for the mappings" ] ], [ fhir:index 32 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "target-code" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Code that identifies the target element" ] ], [ fhir:index 33 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "target-system" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "uri" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Target system that the concepts are to be mapped to" ] ], [ fhir:index 34 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "target-uri" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "reference" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The target value set which provides context for the mappings" ] ], [ fhir:index 35 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "title" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The human-friendly name of the concept map" ] ], [ fhir:index 36 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "url" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "uri" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The uri that identifies the concept map" ] ], [ fhir:index 37 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "version" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The business version of the concept map" ] ] ; fhir:CapabilityStatement.rest.resource.operation [ fhir:index 0 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "validate" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-it-validate" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-it-validate> ] ], [ fhir:index 1 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "meta-delete" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-i-meta-delete" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-i-meta-delete> ] ; fhir:CapabilityStatement.rest.resource.operation.documentation [ fhir:value "Delete tags, profiles, and/or security labels from a resource" ] ], [ fhir:index 2 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "meta-add" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-i-meta-add" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-i-meta-add> ] ; fhir:CapabilityStatement.rest.resource.operation.documentation [ fhir:value "Add tags, profiles, and/or security labels to a resource" ] ], [ fhir:index 3 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "meta" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-its-meta" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-its-meta> ] ; fhir:CapabilityStatement.rest.resource.operation.documentation [ fhir:value "Request a list of tags, profiles, and security labels for a specfic resource instance" ] ], [ fhir:index 4 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "expunge" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-its-expunge" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-its-expunge> ] ], [ fhir:index 5 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "translate" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/ConceptMap-it-translate" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/ConceptMap-it-translate> ] ] ], [ fhir:index 3 ; fhir:CapabilityStatement.rest.resource.type [ fhir:value "Group" ] ; fhir:CapabilityStatement.rest.resource.profile [ fhir:value "http://hl7.org/fhir/StructureDefinition/Group" ; fhir:link <http://hl7.org/fhir/StructureDefinition/Group> ] ; fhir:CapabilityStatement.rest.resource.interaction [ fhir:index 0 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "search-type" ] ], [ fhir:index 1 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "update" ] ], [ fhir:index 2 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "vread" ] ], [ fhir:index 3 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "read" ] ], [ fhir:index 4 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "patch" ] ], [ fhir:index 5 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "history-type" ] ], [ fhir:index 6 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "history-instance" ] ], [ fhir:index 7 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "delete" ] ], [ fhir:index 8 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "create" ] ] ; fhir:CapabilityStatement.rest.resource.conditionalCreate [ fhir:value "true"^^xsd:boolean ] ; fhir:CapabilityStatement.rest.resource.conditionalUpdate [ fhir:value "true"^^xsd:boolean ] ; fhir:CapabilityStatement.rest.resource.conditionalDelete [ fhir:value "multiple" ] ; fhir:CapabilityStatement.rest.resource.searchInclude [ fhir:value "*" ; fhir:index 0 ], [ fhir:value "Group:managing-entity" ; fhir:index 1 ], [ fhir:value "Group:member" ; fhir:index 2 ] ; fhir:CapabilityStatement.rest.resource.searchRevInclude [ fhir:value "CodeSystem:supplements" ; fhir:index 0 ], [ fhir:value "ConceptMap:other" ; fhir:index 1 ], [ fhir:value "ConceptMap:source" ; fhir:index 2 ], [ fhir:value "ConceptMap:source-uri" ; fhir:index 3 ], [ fhir:value "ConceptMap:target" ; fhir:index 4 ], [ fhir:value "ConceptMap:target-uri" ; fhir:index 5 ], [ fhir:value "Group:managing-entity" ; fhir:index 6 ], [ fhir:value "Group:member" ; fhir:index 7 ] ; fhir:CapabilityStatement.rest.resource.searchParam [ fhir:index 0 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_content" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Search the contents of the resource's data using a fulltext search" ] ], [ fhir:index 1 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_filter" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Search the contents of the resource's data using a filter" ] ], [ fhir:index 2 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_has" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Return resources linked to by the given target" ] ], [ fhir:index 3 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_id" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The ID of the resource" ] ], [ fhir:index 4 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_language" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The language of the resource" ] ], [ fhir:index 5 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_lastUpdated" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "date" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Only return resources which were last updated as specified by the given range" ] ], [ fhir:index 6 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_list" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Search the contents of the resource's data using a list" ] ], [ fhir:index 7 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_profile" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "uri" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The profile of the resource" ] ], [ fhir:index 8 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_security" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The security of the resource" ] ], [ fhir:index 9 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_source" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "uri" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Search for resources which have the given source value (Resource.meta.source)" ] ], [ fhir:index 10 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_tag" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The tag of the resource" ] ], [ fhir:index 11 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_text" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Search the contents of the resource's narrative using a fulltext search" ] ], [ fhir:index 12 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "actual" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Descriptive or actual" ] ], [ fhir:index 13 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "characteristic" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Kind of characteristic" ] ], [ fhir:index 14 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "characteristic-value" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "composite" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "A composite of both characteristic and value" ] ], [ fhir:index 15 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "code" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The kind of resources contained" ] ], [ fhir:index 16 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "exclude" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Group includes or excludes" ] ], [ fhir:index 17 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "identifier" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Unique id" ] ], [ fhir:index 18 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "managing-entity" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "reference" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Entity that is the custodian of the Group's definition" ] ], [ fhir:index 19 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "member" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "reference" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Reference to the group member" ] ], [ fhir:index 20 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "type" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The type of resources the group contains" ] ], [ fhir:index 21 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "value" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Value held by characteristic" ] ] ; fhir:CapabilityStatement.rest.resource.operation [ fhir:index 0 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "validate" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-it-validate" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-it-validate> ] ], [ fhir:index 1 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "meta-delete" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-i-meta-delete" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-i-meta-delete> ] ; fhir:CapabilityStatement.rest.resource.operation.documentation [ fhir:value "Delete tags, profiles, and/or security labels from a resource" ] ], [ fhir:index 2 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "meta-add" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-i-meta-add" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-i-meta-add> ] ; fhir:CapabilityStatement.rest.resource.operation.documentation [ fhir:value "Add tags, profiles, and/or security labels to a resource" ] ], [ fhir:index 3 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "meta" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-its-meta" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-its-meta> ] ; fhir:CapabilityStatement.rest.resource.operation.documentation [ fhir:value "Request a list of tags, profiles, and security labels for a specfic resource instance" ] ], [ fhir:index 4 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "expunge" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-its-expunge" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-its-expunge> ] ] ], [ fhir:index 4 ; fhir:CapabilityStatement.rest.resource.type [ fhir:value "NamingSystem" ] ; fhir:CapabilityStatement.rest.resource.profile [ fhir:value "http://hl7.org/fhir/StructureDefinition/NamingSystem" ; fhir:link <http://hl7.org/fhir/StructureDefinition/NamingSystem> ] ; fhir:CapabilityStatement.rest.resource.interaction [ fhir:index 0 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "update" ] ], [ fhir:index 1 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "vread" ] ], [ fhir:index 2 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "read" ] ], [ fhir:index 3 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "patch" ] ], [ fhir:index 4 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "history-type" ] ], [ fhir:index 5 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "history-instance" ] ], [ fhir:index 6 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "delete" ] ], [ fhir:index 7 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "create" ] ], [ fhir:index 8 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "search-type" ] ] ; fhir:CapabilityStatement.rest.resource.conditionalCreate [ fhir:value "true"^^xsd:boolean ] ; fhir:CapabilityStatement.rest.resource.conditionalUpdate [ fhir:value "true"^^xsd:boolean ] ; fhir:CapabilityStatement.rest.resource.conditionalDelete [ fhir:value "multiple" ] ; fhir:CapabilityStatement.rest.resource.searchInclude [ fhir:value "*" ; fhir:index 0 ] ; fhir:CapabilityStatement.rest.resource.searchRevInclude [ fhir:value "CodeSystem:supplements" ; fhir:index 0 ], [ fhir:value "ConceptMap:other" ; fhir:index 1 ], [ fhir:value "ConceptMap:source" ; fhir:index 2 ], [ fhir:value "ConceptMap:source-uri" ; fhir:index 3 ], [ fhir:value "ConceptMap:target" ; fhir:index 4 ], [ fhir:value "ConceptMap:target-uri" ; fhir:index 5 ], [ fhir:value "Group:managing-entity" ; fhir:index 6 ], [ fhir:value "Group:member" ; fhir:index 7 ] ; fhir:CapabilityStatement.rest.resource.searchParam [ fhir:index 0 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_content" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Search the contents of the resource's data using a fulltext search" ] ], [ fhir:index 1 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_filter" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Search the contents of the resource's data using a filter" ] ], [ fhir:index 2 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_has" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Return resources linked to by the given target" ] ], [ fhir:index 3 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_id" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The ID of the resource" ] ], [ fhir:index 4 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_language" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The language of the resource" ] ], [ fhir:index 5 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_lastUpdated" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "date" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Only return resources which were last updated as specified by the given range" ] ], [ fhir:index 6 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_list" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Search the contents of the resource's data using a list" ] ], [ fhir:index 7 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_profile" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "uri" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The profile of the resource" ] ], [ fhir:index 8 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_security" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The security of the resource" ] ], [ fhir:index 9 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_source" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "uri" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Search for resources which have the given source value (Resource.meta.source)" ] ], [ fhir:index 10 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_tag" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The tag of the resource" ] ], [ fhir:index 11 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_text" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Search the contents of the resource's narrative using a fulltext search" ] ], [ fhir:index 12 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "contact" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Name of an individual to contact" ] ], [ fhir:index 13 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "context" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "A use context assigned to the naming system" ] ], [ fhir:index 14 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "context-quantity" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "quantity" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "A quantity- or range-valued use context assigned to the naming system" ] ], [ fhir:index 15 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "context-type" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "A type of use context assigned to the naming system" ] ], [ fhir:index 16 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "context-type-quantity" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "composite" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "A use context type and quantity- or range-based value assigned to the naming system" ] ], [ fhir:index 17 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "context-type-value" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "composite" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "A use context type and value assigned to the naming system" ] ], [ fhir:index 18 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "date" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "date" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The naming system publication date" ] ], [ fhir:index 19 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "description" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The description of the naming system" ] ], [ fhir:index 20 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "id-type" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "oid | uuid | uri | other" ] ], [ fhir:index 21 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "jurisdiction" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Intended jurisdiction for the naming system" ] ], [ fhir:index 22 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "kind" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "codesystem | identifier | root" ] ], [ fhir:index 23 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "name" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Computationally friendly name of the naming system" ] ], [ fhir:index 24 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "period" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "date" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "When is identifier valid?" ] ], [ fhir:index 25 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "publisher" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Name of the publisher of the naming system" ] ], [ fhir:index 26 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "responsible" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Who maintains system namespace?" ] ], [ fhir:index 27 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "status" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The current status of the naming system" ] ], [ fhir:index 28 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "telecom" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Contact details for individual or organization" ] ], [ fhir:index 29 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "type" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "e.g. driver, provider, patient, bank etc." ] ], [ fhir:index 30 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "value" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The unique identifier" ] ] ; fhir:CapabilityStatement.rest.resource.operation [ fhir:index 0 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "validate" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-it-validate" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-it-validate> ] ], [ fhir:index 1 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "meta-delete" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-i-meta-delete" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-i-meta-delete> ] ; fhir:CapabilityStatement.rest.resource.operation.documentation [ fhir:value "Delete tags, profiles, and/or security labels from a resource" ] ], [ fhir:index 2 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "meta-add" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-i-meta-add" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-i-meta-add> ] ; fhir:CapabilityStatement.rest.resource.operation.documentation [ fhir:value "Add tags, profiles, and/or security labels to a resource" ] ], [ fhir:index 3 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "meta" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-its-meta" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-its-meta> ] ; fhir:CapabilityStatement.rest.resource.operation.documentation [ fhir:value "Request a list of tags, profiles, and security labels for a specfic resource instance" ] ], [ fhir:index 4 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "expunge" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-its-expunge" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-its-expunge> ] ] ], [ fhir:index 5 ; fhir:CapabilityStatement.rest.resource.type [ fhir:value "OperationDefinition" ] ; fhir:CapabilityStatement.rest.resource.profile [ fhir:value "http://hl7.org/fhir/StructureDefinition/OperationDefinition" ; fhir:link <http://hl7.org/fhir/StructureDefinition/OperationDefinition> ] ; fhir:CapabilityStatement.rest.resource.interaction [ fhir:index 0 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "read" ] ] ; fhir:CapabilityStatement.rest.resource.searchInclude [ fhir:value "*" ; fhir:index 0 ] ; fhir:CapabilityStatement.rest.resource.searchRevInclude [ fhir:value "CodeSystem:supplements" ; fhir:index 0 ], [ fhir:value "ConceptMap:other" ; fhir:index 1 ], [ fhir:value "ConceptMap:source" ; fhir:index 2 ], [ fhir:value "ConceptMap:source-uri" ; fhir:index 3 ], [ fhir:value "ConceptMap:target" ; fhir:index 4 ], [ fhir:value "ConceptMap:target-uri" ; fhir:index 5 ], [ fhir:value "Group:managing-entity" ; fhir:index 6 ], [ fhir:value "Group:member" ; fhir:index 7 ] ], [ fhir:index 6 ; fhir:CapabilityStatement.rest.resource.type [ fhir:value "Practitioner" ] ; fhir:CapabilityStatement.rest.resource.profile [ fhir:value "http://hl7.org/fhir/StructureDefinition/Practitioner" ; fhir:link <http://hl7.org/fhir/StructureDefinition/Practitioner> ] ; fhir:CapabilityStatement.rest.resource.interaction [ fhir:index 0 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "search-type" ] ], [ fhir:index 1 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "update" ] ], [ fhir:index 2 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "vread" ] ], [ fhir:index 3 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "read" ] ], [ fhir:index 4 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "patch" ] ], [ fhir:index 5 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "history-type" ] ], [ fhir:index 6 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "history-instance" ] ], [ fhir:index 7 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "delete" ] ], [ fhir:index 8 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "create" ] ] ; fhir:CapabilityStatement.rest.resource.conditionalCreate [ fhir:value "true"^^xsd:boolean ] ; fhir:CapabilityStatement.rest.resource.conditionalUpdate [ fhir:value "true"^^xsd:boolean ] ; fhir:CapabilityStatement.rest.resource.conditionalDelete [ fhir:value "multiple" ] ; fhir:CapabilityStatement.rest.resource.searchInclude [ fhir:value "*" ; fhir:index 0 ] ; fhir:CapabilityStatement.rest.resource.searchRevInclude [ fhir:value "CodeSystem:supplements" ; fhir:index 0 ], [ fhir:value "ConceptMap:other" ; fhir:index 1 ], [ fhir:value "ConceptMap:source" ; fhir:index 2 ], [ fhir:value "ConceptMap:source-uri" ; fhir:index 3 ], [ fhir:value "ConceptMap:target" ; fhir:index 4 ], [ fhir:value "ConceptMap:target-uri" ; fhir:index 5 ], [ fhir:value "Group:managing-entity" ; fhir:index 6 ], [ fhir:value "Group:member" ; fhir:index 7 ] ; fhir:CapabilityStatement.rest.resource.searchParam [ fhir:index 0 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_content" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Search the contents of the resource's data using a fulltext search" ] ], [ fhir:index 1 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_filter" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Search the contents of the resource's data using a filter" ] ], [ fhir:index 2 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_has" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Return resources linked to by the given target" ] ], [ fhir:index 3 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_id" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The ID of the resource" ] ], [ fhir:index 4 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_language" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The language of the resource" ] ], [ fhir:index 5 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_lastUpdated" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "date" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Only return resources which were last updated as specified by the given range" ] ], [ fhir:index 6 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_list" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Search the contents of the resource's data using a list" ] ], [ fhir:index 7 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_profile" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "uri" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The profile of the resource" ] ], [ fhir:index 8 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_security" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The security of the resource" ] ], [ fhir:index 9 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_source" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "uri" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Search for resources which have the given source value (Resource.meta.source)" ] ], [ fhir:index 10 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_tag" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The tag of the resource" ] ], [ fhir:index 11 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_text" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Search the contents of the resource's narrative using a fulltext search" ] ], [ fhir:index 12 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "active" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Whether the practitioner record is active" ] ], [ fhir:index 13 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "address" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "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" ] ], [ fhir:index 14 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "address-city" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "A city specified in an address" ] ], [ fhir:index 15 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "address-country" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "A country specified in an address" ] ], [ fhir:index 16 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "address-postalcode" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "A postalCode specified in an address" ] ], [ fhir:index 17 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "address-state" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "A state specified in an address" ] ], [ fhir:index 18 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "address-use" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "A use code specified in an address" ] ], [ fhir:index 19 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "communication" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "One of the languages that the practitioner can communicate with" ] ], [ fhir:index 20 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "email" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "A value in an email contact" ] ], [ fhir:index 21 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "family" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "A portion of the family name" ] ], [ fhir:index 22 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "gender" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Gender of the practitioner" ] ], [ fhir:index 23 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "given" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "A portion of the given name" ] ], [ fhir:index 24 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "identifier" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "A practitioner's Identifier" ] ], [ fhir:index 25 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "name" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "A server defined search that may match any of the string fields in the HumanName, including family, give, prefix, suffix, suffix, and/or text" ] ], [ fhir:index 26 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "phone" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "A value in a phone contact" ] ], [ fhir:index 27 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "phonetic" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "A portion of either family or given name using some kind of phonetic matching algorithm" ] ], [ fhir:index 28 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "telecom" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The value in any kind of contact" ] ] ; fhir:CapabilityStatement.rest.resource.operation [ fhir:index 0 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "validate" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-it-validate" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-it-validate> ] ], [ fhir:index 1 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "meta-delete" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-i-meta-delete" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-i-meta-delete> ] ; fhir:CapabilityStatement.rest.resource.operation.documentation [ fhir:value "Delete tags, profiles, and/or security labels from a resource" ] ], [ fhir:index 2 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "meta-add" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-i-meta-add" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-i-meta-add> ] ; fhir:CapabilityStatement.rest.resource.operation.documentation [ fhir:value "Add tags, profiles, and/or security labels to a resource" ] ], [ fhir:index 3 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "meta" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-its-meta" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-its-meta> ] ; fhir:CapabilityStatement.rest.resource.operation.documentation [ fhir:value "Request a list of tags, profiles, and security labels for a specfic resource instance" ] ], [ fhir:index 4 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "expunge" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-its-expunge" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-its-expunge> ] ] ], [ fhir:index 7 ; fhir:CapabilityStatement.rest.resource.type [ fhir:value "StructureDefinition" ] ; fhir:CapabilityStatement.rest.resource.profile [ fhir:value "http://hl7.org/fhir/StructureDefinition/StructureDefinition" ; fhir:link <http://hl7.org/fhir/StructureDefinition/StructureDefinition> ] ; fhir:CapabilityStatement.rest.resource.interaction [ fhir:index 0 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "search-type" ] ], [ fhir:index 1 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "read" ] ] ; fhir:CapabilityStatement.rest.resource.searchInclude [ fhir:value "*" ; fhir:index 0 ] ; fhir:CapabilityStatement.rest.resource.searchRevInclude [ fhir:value "CodeSystem:supplements" ; fhir:index 0 ], [ fhir:value "ConceptMap:other" ; fhir:index 1 ], [ fhir:value "ConceptMap:source" ; fhir:index 2 ], [ fhir:value "ConceptMap:source-uri" ; fhir:index 3 ], [ fhir:value "ConceptMap:target" ; fhir:index 4 ], [ fhir:value "ConceptMap:target-uri" ; fhir:index 5 ], [ fhir:value "Group:managing-entity" ; fhir:index 6 ], [ fhir:value "Group:member" ; fhir:index 7 ] ; fhir:CapabilityStatement.rest.resource.searchParam [ fhir:index 0 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "type" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Type defined or constrained by this structure" ] ] ], [ fhir:index 8 ; fhir:CapabilityStatement.rest.resource.type [ fhir:value "ValueSet" ] ; fhir:CapabilityStatement.rest.resource.profile [ fhir:value "http://hl7.org/fhir/StructureDefinition/ValueSet" ; fhir:link <http://hl7.org/fhir/StructureDefinition/ValueSet> ] ; fhir:CapabilityStatement.rest.resource.interaction [ fhir:index 0 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "update" ] ], [ fhir:index 1 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "vread" ] ], [ fhir:index 2 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "read" ] ], [ fhir:index 3 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "patch" ] ], [ fhir:index 4 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "history-type" ] ], [ fhir:index 5 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "history-instance" ] ], [ fhir:index 6 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "delete" ] ], [ fhir:index 7 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "create" ] ], [ fhir:index 8 ; fhir:CapabilityStatement.rest.resource.interaction.code [ fhir:value "search-type" ] ] ; fhir:CapabilityStatement.rest.resource.conditionalCreate [ fhir:value "true"^^xsd:boolean ] ; fhir:CapabilityStatement.rest.resource.conditionalUpdate [ fhir:value "true"^^xsd:boolean ] ; fhir:CapabilityStatement.rest.resource.conditionalDelete [ fhir:value "multiple" ] ; fhir:CapabilityStatement.rest.resource.searchInclude [ fhir:value "*" ; fhir:index 0 ] ; fhir:CapabilityStatement.rest.resource.searchRevInclude [ fhir:value "CodeSystem:supplements" ; fhir:index 0 ], [ fhir:value "ConceptMap:other" ; fhir:index 1 ], [ fhir:value "ConceptMap:source" ; fhir:index 2 ], [ fhir:value "ConceptMap:source-uri" ; fhir:index 3 ], [ fhir:value "ConceptMap:target" ; fhir:index 4 ], [ fhir:value "ConceptMap:target-uri" ; fhir:index 5 ], [ fhir:value "Group:managing-entity" ; fhir:index 6 ], [ fhir:value "Group:member" ; fhir:index 7 ] ; fhir:CapabilityStatement.rest.resource.searchParam [ fhir:index 0 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_content" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Search the contents of the resource's data using a fulltext search" ] ], [ fhir:index 1 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_filter" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Search the contents of the resource's data using a filter" ] ], [ fhir:index 2 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_has" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Return resources linked to by the given target" ] ], [ fhir:index 3 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_id" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The ID of the resource" ] ], [ fhir:index 4 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_language" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The language of the resource" ] ], [ fhir:index 5 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_lastUpdated" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "date" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Only return resources which were last updated as specified by the given range" ] ], [ fhir:index 6 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_list" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Search the contents of the resource's data using a list" ] ], [ fhir:index 7 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_profile" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "uri" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The profile of the resource" ] ], [ fhir:index 8 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_security" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The security of the resource" ] ], [ fhir:index 9 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_source" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "uri" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Search for resources which have the given source value (Resource.meta.source)" ] ], [ fhir:index 10 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_tag" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The tag of the resource" ] ], [ fhir:index 11 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "_text" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Search the contents of the resource's narrative using a fulltext search" ] ], [ fhir:index 12 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "code" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "This special parameter searches for codes in the value set. See additional notes on the ValueSet resource" ] ], [ fhir:index 13 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "context" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "A use context assigned to the value set" ] ], [ fhir:index 14 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "context-quantity" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "quantity" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "A quantity- or range-valued use context assigned to the value set" ] ], [ fhir:index 15 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "context-type" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "A type of use context assigned to the value set" ] ], [ fhir:index 16 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "context-type-quantity" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "composite" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "A use context type and quantity- or range-based value assigned to the value set" ] ], [ fhir:index 17 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "context-type-value" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "composite" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "A use context type and value assigned to the value set" ] ], [ fhir:index 18 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "date" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "date" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The value set publication date" ] ], [ fhir:index 19 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "description" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The description of the value set" ] ], [ fhir:index 20 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "expansion" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "uri" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Identifies the value set expansion (business identifier)" ] ], [ fhir:index 21 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "identifier" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "External identifier for the value set" ] ], [ fhir:index 22 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "jurisdiction" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Intended jurisdiction for the value set" ] ], [ fhir:index 23 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "name" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Computationally friendly name of the value set" ] ], [ fhir:index 24 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "publisher" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "Name of the publisher of the value set" ] ], [ fhir:index 25 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "reference" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "uri" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "A code system included or excluded in the value set or an imported value set" ] ], [ fhir:index 26 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "status" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The current status of the value set" ] ], [ fhir:index 27 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "title" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "string" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The human-friendly name of the value set" ] ], [ fhir:index 28 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "url" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "uri" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The uri that identifies the value set" ] ], [ fhir:index 29 ; fhir:CapabilityStatement.rest.resource.searchParam.name [ fhir:value "version" ] ; fhir:CapabilityStatement.rest.resource.searchParam.type [ fhir:value "token" ] ; fhir:CapabilityStatement.rest.resource.searchParam.documentation [ fhir:value "The business version of the value set" ] ] ; fhir:CapabilityStatement.rest.resource.operation [ fhir:index 0 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "validate-code" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/CodeSystemValueSet-it-validate-code" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/CodeSystemValueSet-it-validate-code> ] ], [ fhir:index 1 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "invalidate-expansion" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/ValueSet-i-invalidate-expansion" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/ValueSet-i-invalidate-expansion> ] ], [ fhir:index 2 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "expand" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/ValueSet-it-expand" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/ValueSet-it-expand> ] ], [ fhir:index 3 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "validate" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-it-validate" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-it-validate> ] ], [ fhir:index 4 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "meta-delete" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-i-meta-delete" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-i-meta-delete> ] ; fhir:CapabilityStatement.rest.resource.operation.documentation [ fhir:value "Delete tags, profiles, and/or security labels from a resource" ] ], [ fhir:index 5 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "meta-add" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-i-meta-add" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-i-meta-add> ] ; fhir:CapabilityStatement.rest.resource.operation.documentation [ fhir:value "Add tags, profiles, and/or security labels to a resource" ] ], [ fhir:index 6 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "meta" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-its-meta" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-its-meta> ] ; fhir:CapabilityStatement.rest.resource.operation.documentation [ fhir:value "Request a list of tags, profiles, and security labels for a specfic resource instance" ] ], [ fhir:index 7 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "expunge" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-its-expunge" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-its-expunge> ] ] ] ; fhir:CapabilityStatement.rest.operation [ fhir:index 0 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "reindex" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/-s-reindex" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/-s-reindex> ] ], [ fhir:index 1 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "hapi.fhir.reindex-status" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/-s-hapi.fhir.reindex-status" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/-s-hapi.fhir.reindex-status> ] ], [ fhir:index 2 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "import" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/-s-import" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/-s-import> ] ; fhir:CapabilityStatement.rest.resource.operation.documentation [ fhir:value "Import terminology resources" ] ], [ fhir:index 3 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "has-pending-work" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/-s-has-pending-work" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/-s-has-pending-work> ] ; fhir:CapabilityStatement.rest.resource.operation.documentation [ fhir:value "Check for pending work" ] ], [ fhir:index 4 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "export-poll-status" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/-s-export-poll-status" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/-s-export-poll-status> ] ; fhir:CapabilityStatement.rest.resource.operation.documentation [ fhir:value "Operation for polling the status of a previously initiated FHIR Bulk Data System Level Export. A complete URL including the '_jobId' is returned in the 'Content-Location' response header when initiating the export. A 'GET' request to the polling location will return '202 Accepted' with a response header 'X-Progress' containing a status message for the progress of the export job. When the job has finished, the polling location will return '200 OK', and the contents of the body will be a JSON object providing metadata and links to the generated bulk data files. A 'DELETE' request can be used to cancel the export. If the export has already finished, the delete will return '404 Not Found', else the export job will be cancelled and a '202 Accepted' is returned with an operation outcome response.\n### Parameters\n- _jobId: the job ID for the Bulk Export job which was returned in the 'Content-Location' header when initiating the export" ] ], [ fhir:index 5 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "export" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/-s-export" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/-s-export> ] ; fhir:CapabilityStatement.rest.resource.operation.documentation [ fhir:value "FHIR Operation to initiate an export of data from a FHIR server. The type of resources returned can be restricted using the '_type' parameter, and the '_since' parameter can be used to restrict resources to be only included if changed since the supplied time. The FHIR server support invocation of this operation using the [FHIR Asynchronous Request Pattern](http://hl7.org/fhir/R4/async.html).\n## Initiation of export\nThe initiation of an export must specify the request header 'Prefer: respond-async', and will return '202 Accepted' with a polling location in the response header 'Content-Location'. The polling location is for the endpoint '$export-poll-status' and has the export job ID as parameter '_jobId'.\n### Parameters\n- _outputFormat: Optional parameter to specify the output format of the exported files. Default is 'application/fhir+ndjson'\n- _type: Optional parameter to specify a comma separated list of resource types to be included in the export. If not provided, all resource types will be included.\n- _since: Optional parameter to specify a time. Only resources that have been created or modified after this time will be included in the export (i.e., if Resource.meta.lastUpdated is later than the supplied _since time).\n- _until: Optional parameter to specify a time. Only resources that have been created or modified before this time will be included in the export (i.e., if Resource.meta.lastUpdated is earlier than the supplied _until time).\n- _typeFilter: Optional parameter to apply search filter of resources for export. It is a string of comma-delimited FHIR REST search queries in the format [resourceType]?[parameters]. The filter will be applied when searching resources.\n- _typePostFetchFilterUrl: Optional parameter to apply filtering of resources for export. It is a string of comma-delimited FHIR REST search queries in the format [resourceType]?[parameters]. The filter will be applied on resources after being fetched from the database.\n- _includeHistory: Optional parameter to specify whether historical versions of resources should be included in the export. Default is false.\n- _exportId: Optional parameter to specify a client provided identifier for the export. Resulting exported files (Binary) will be labeled with the identifer in meta extension 'https://hapifhir.org/NamingSystem/bulk-export-identifier'\n## Polling status of export\nSubsequent GET requests to the polling location will return '202 Accepted' with a response header 'X-Progress' containing a status message for the progress of the export job. When the job has finished, the polling location will return '200 OK', and the contents of the body will be a JSON object providing metadata and links to the generated bulk export data files.\n## Retrieving exported files\nThe JSON object returned when the export job is complete will contain a list of files (Binary resources) available for download. Each file can be retrieved using a standard HTTP GET request to the provided URL. The security context of the Binary resources resulting from the export is the user that initiated the export. The files can therefore only be retrieved by the same user.\n### Retention of exported files\nThe exported files are retained for a limited time after which they are deleted. The retention time is a server configuration with default 2 hours." ] ], [ fhir:index 6 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "reindex-terminology" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/-s-reindex-terminology" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/-s-reindex-terminology> ] ], [ fhir:index 7 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "meta" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-its-meta" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-its-meta> ] ], [ fhir:index 8 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "get-resource-counts" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/-s-get-resource-counts" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/-s-get-resource-counts> ] ; fhir:CapabilityStatement.rest.resource.operation.documentation [ fhir:value "Provides the number of resources currently stored on the server, broken down by resource type" ] ], [ fhir:index 9 ; fhir:CapabilityStatement.rest.resource.operation.name [ fhir:value "expunge" ] ; fhir:CapabilityStatement.rest.resource.operation.definition [ fhir:value "https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-its-expunge" ; fhir:link <https://terminology.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-its-expunge> ] ] ] . # - ontology header ------------------------------------------------------------ <http://hl7.org/fhir/CapabilityStatement/terminology.ttl> a owl:Ontology ; owl:imports fhir:fhir.ttl ; owl:versionIRI <http://build.fhir.org/CapabilityStatement/terminology.ttl> .
IG © 2021+ Den telemedicinske infrastruktur (eHealth Infrastructure). Package dk.ehealth.sundhed.fhir.ig.core#10.0.0 based on FHIR 4.0.1. Generated 2026-08-06
