eHealth Infrastructure
8.0.0 - release Denmark flag

eHealth Infrastructure, published by Den telemedicinske infrastruktur (eHealth Infrastructure). This guide is not an authorized publication; it is the continuous build for version 8.0.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/fut-infrastructure/implementation-guide/ and changes regularly. See the Directory of published versions

: organization - TTL Representation

Active as of 2026-01-13

Raw ttl | Download

@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

 a fhir:CapabilityStatement ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "organization"] ; # 
  fhir:text [
fhir:status [ fhir:v "extensions" ] ;
fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: CapabilityStatement organization</b></p><a name=\"organization\"> </a><a name=\"hcorganization\"> </a><h2 id=\"title\"/><ul><li>Implementation Guide Version: 8.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-01-13 11:12:36+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>$persist-login</td><td><div><p>This operation persists login information into CareTeams and PractitionerRoles\nThe following elements of each careteam are mandatory:</p>\n<ul>\n<li>id: Reference based on the careteam from the saml security token</li>\n<li>status: any</li>\n<li>name: any</li>\n<li>reasonCode: any</li>\n<li>participant: 1 for each careteam-role in the saml security token\n-- role: from the saml security token\n-- member: reference to the practitioner\n-- onBehalfOf: reference to organization (cannot be set currently because of a bug in hapi)</li>\n</ul>\n<p>Persist-login will find each careteam, and update it with any new participants and roles from the input bundle.\nThe input careteam resources are are used as a container for the participant list. The rest of the fields are not used.\nThe following elements of each PractitionerRole are mandatory:</p>\n<ul>\n<li>practitioner</li>\n<li>organization</li>\n<li>code: roles from the saml security token (CareteamParticipantRole valueset)</li>\n</ul>\n<p>Persist-login will search for practitionerRoles for each combination of (practitioner, organization) and create it if it doesn't already exists.</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>$import-organizations</td><td><div><p>Import a bundle containing at least one organization tree.</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>_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>_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>$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><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/><td><code>*</code></td><td><code>CareTeam:encounter</code>, <code>CareTeam:managingOrganization</code>, <code>CareTeam:participant</code>, <code>CareTeam:patient</code>, <code>CareTeam:subject</code>, <code>Organization:endpoint</code>, <code>Organization:partof</code>, <code>PractitionerRole:endpoint</code>, <code>PractitionerRole:location</code>, <code>PractitionerRole:organization</code>, <code>PractitionerRole:practitioner</code>, <code>PractitionerRole:service</code>, <code>Provenance:target</code></td><td/></tr><tr><td><a href=\"#CareTeam1-2\">CareTeam</a></td><td><a href=\"StructureDefinition-ehealth-careteam.html\">http://ehealth.sundhed.dk/fhir/StructureDefinition/ehealth-careteam</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\"/><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td>_content, _has, _id, _language, _lastUpdated, _profile, _security, _tag, _text, category, context, context-type, context-type-value, date, encounter, identifier, managingOrganization, participant, patient, reasonCode, status, subject</td><td><code>CareTeam:managingOrganization</code>, <code>CareTeam:participant</code>, <code>CareTeam:subject</code></td><td><code>CareTeam:encounter</code>, <code>CareTeam:managingOrganization</code>, <code>CareTeam:participant</code>, <code>CareTeam:patient</code>, <code>CareTeam:subject</code>, <code>Organization:endpoint</code>, <code>Organization:partof</code>, <code>PractitionerRole:endpoint</code>, <code>PractitionerRole:location</code>, <code>PractitionerRole:organization</code>, <code>PractitionerRole:practitioner</code>, <code>PractitionerRole:service</code>, <code>Provenance:target</code></td><td><code>$validate</code></td></tr><tr><td><a href=\"#OperationDefinition1-3\">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/><td><code>*</code></td><td><code>CareTeam:encounter</code>, <code>CareTeam:managingOrganization</code>, <code>CareTeam:participant</code>, <code>CareTeam:patient</code>, <code>CareTeam:subject</code>, <code>Organization:endpoint</code>, <code>Organization:partof</code>, <code>PractitionerRole:endpoint</code>, <code>PractitionerRole:location</code>, <code>PractitionerRole:organization</code>, <code>PractitionerRole:practitioner</code>, <code>PractitionerRole:service</code>, <code>Provenance:target</code></td><td/></tr><tr><td><a href=\"#Organization1-4\">Organization</a></td><td><a href=\"StructureDefinition-ehealth-organization.html\">http://ehealth.sundhed.dk/fhir/StructureDefinition/ehealth-organization</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\"/><td>_content, _has, _id, _language, _lastUpdated, _profile, _security, _tag, _text, active, address, address-city, address-country, address-postalcode, address-state, address-use, contactName, cvrNumber, endpoint, identifier, municipalityCode, name, partof, phonetic, providerIdentifier, regionCode, source, specialty, type</td><td><code>Organization:partof</code></td><td><code>CareTeam:managingOrganization</code>, <code>Organization:partof</code>, <code>Provenance:target</code></td><td><code>$validate</code>, <code>$get-general-practitioner-info</code>, <code>$traverse-to-sor</code></td></tr><tr><td><a href=\"#Practitioner1-5\">Practitioner</a></td><td><a href=\"StructureDefinition-ehealth-practitioner.html\">http://ehealth.sundhed.dk/fhir/StructureDefinition/ehealth-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\"/><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td>_content, _has, _id, _language, _lastUpdated, _profile, _security, _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>CareTeam:encounter</code>, <code>CareTeam:managingOrganization</code>, <code>CareTeam:participant</code>, <code>CareTeam:patient</code>, <code>CareTeam:subject</code>, <code>Organization:endpoint</code>, <code>Organization:partof</code>, <code>PractitionerRole:endpoint</code>, <code>PractitionerRole:location</code>, <code>PractitionerRole:organization</code>, <code>PractitionerRole:practitioner</code>, <code>PractitionerRole:service</code>, <code>Provenance:target</code></td><td><code>$validate</code></td></tr><tr><td><a href=\"#PractitionerRole1-6\">PractitionerRole</a></td><td><a href=\"StructureDefinition-ehealth-practitionerrole.html\">http://ehealth.sundhed.dk/fhir/StructureDefinition/ehealth-practitionerrole</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\"/><td class=\"text-center\">y</td><td class=\"text-center\">y</td><td>_content, _has, _id, _language, _lastUpdated, _profile, _security, _tag, _text, active, date, email, endpoint, identifier, location, organization, phone, practitioner, role, service, specialty, telecom</td><td><code>*</code>, <code>PractitionerRole:endpoint</code>, <code>PractitionerRole:location</code>, <code>PractitionerRole:organization</code>, <code>PractitionerRole:practitioner</code>, <code>PractitionerRole:service</code></td><td><code>CareTeam:encounter</code>, <code>CareTeam:managingOrganization</code>, <code>CareTeam:participant</code>, <code>CareTeam:patient</code>, <code>CareTeam:subject</code>, <code>Organization:endpoint</code>, <code>Organization:partof</code>, <code>PractitionerRole:endpoint</code>, <code>PractitionerRole:location</code>, <code>PractitionerRole:organization</code>, <code>PractitionerRole:practitioner</code>, <code>PractitionerRole:service</code>, <code>Provenance:target</code></td><td><code>$validate</code></td></tr><tr><td><a href=\"#Provenance1-7\">Provenance</a></td><td><a href=\"StructureDefinition-ehealth-provenance.html\">http://ehealth.sundhed.dk/fhir/StructureDefinition/ehealth-provenance</a></td><td class=\"text-center\">y</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>_id, recorded, target</td><td/><td><code>CareTeam:encounter</code>, <code>CareTeam:managingOrganization</code>, <code>CareTeam:participant</code>, <code>CareTeam:patient</code>, <code>CareTeam:subject</code>, <code>Organization:endpoint</code>, <code>Organization:partof</code>, <code>PractitionerRole:endpoint</code>, <code>PractitionerRole:location</code>, <code>PractitionerRole:organization</code>, <code>PractitionerRole:practitioner</code>, <code>PractitionerRole:service</code>, <code>Provenance:target</code></td><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: supported </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></div></div><div class=\"panel panel-default\"><div class=\"panel-heading\"><h4 id=\"CareTeam1-2\" class=\"panel-title\"><span style=\"float: right;\">Resource Conformance: supported </span>CareTeam</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=\"StructureDefinition-ehealth-careteam.html\">ehealth-careteam</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>search-type</code>, <code>vread</code>, <code>read</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>_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>string</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>_profile</td><td><code>uri</code></td><td><div><p>Search for resources which have the given profile</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_security</td><td><code>token</code></td><td><div><p>Search for resources which have the given security labels</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_tag</td><td><code>token</code></td><td><div><p>Search for resources which have the given tag</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>category</td><td><code>token</code></td><td><div><p>Type of team</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 care team</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 care team</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 care team</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>date</td><td><code>date</code></td><td><div><p>Time period team covers</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>encounter</td><td><code>reference</code></td><td><div><p>Encounter or episode associated with CareTeam</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>identifier</td><td><code>token</code></td><td><div><p>External Ids for this team</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>managingOrganization</td><td><code>reference</code></td><td><div><p>Managing organization of a care team</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>participant</td><td><code>reference</code></td><td><div><p>Who is involved</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>patient</td><td><code>reference</code></td><td><div><p>Who care team is for</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>reasonCode</td><td><code>token</code></td><td><div><p>Reason care team exists</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>status</td><td><code>token</code></td><td><div><p>proposed | active | suspended | inactive | entered-in-error</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>subject</td><td><code>reference</code></td><td><div><p>Who care team is for</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></tbody></table></div></div></div></div></div><div class=\"panel panel-default\"><div class=\"panel-heading\"><h4 id=\"OperationDefinition1-3\" class=\"panel-title\"><span style=\"float: right;\">Resource Conformance: supported </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=\"Organization1-4\" class=\"panel-title\"><span style=\"float: right;\">Resource Conformance: supported </span>Organization</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=\"StructureDefinition-ehealth-organization.html\">ehealth-organization</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>search-type</code>, <code>vread</code>, <code>read</code>, <code>patch</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>_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>string</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>_profile</td><td><code>uri</code></td><td><div><p>Search for resources which have the given profile</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_security</td><td><code>token</code></td><td><div><p>Search for resources which have the given security labels</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_tag</td><td><code>token</code></td><td><div><p>Search for resources which have the given tag</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>A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>address</td><td><code>string</code></td><td><div><p>A (part of the) address of the organization</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 postal code 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>contactName</td><td><code>string</code></td><td><div><p>Contact name</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>cvrNumber</td><td><code>string</code></td><td><div><p>Cvr number of the organization</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>endpoint</td><td><code>reference</code></td><td><div><p>Technical endpoints providing access to services operated for the organization</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>identifier</td><td><code>token</code></td><td><div><p>Any identifier for the organization (not the accreditation issuer's identifier)</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>municipalityCode</td><td><code>string</code></td><td><div><p>Municipality code of the organization</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>name</td><td><code>string</code></td><td><div><p>A portion of the organization's name or alias</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>partof</td><td><code>reference</code></td><td><div><p>An organization of which this organization forms a part</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 the organization's name using some kind of phonetic matching algorithm</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>providerIdentifier</td><td><code>string</code></td><td><div><p>Provider identifier of the organization</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>regionCode</td><td><code>string</code></td><td><div><p>Region code of the organization</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>source</td><td><code>token</code></td><td><div><p>Source of the organization</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>specialty</td><td><code>token</code></td><td><div><p>Specialty of the organization</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>type</td><td><code>token</code></td><td><div><p>A code for the type of organization</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>$get-general-practitioner-info</td><td><div><p>The operation resolves the input organization(s) to the shared organization for the one or more organizations that have the given provider number.\nThe Organization returned depends on how many active Organization exist in the service with that provider number. When a single Organization has the provider number that Organization is returned.\nWhen multiple Organization resources have the same provider number, the shared parent Organization is returned.\nAn OperationOutcome with an explicit error is returned in case multiple organizations share the provider number but do not have a shared parent, or in case input organizations have different provider numbers.\nA typical use of the operation is to get name, address and telecom details for a general practitioner. Many provider numbers are assigned to a single organization but some provider numbers are shared by multiple entities (organizations) within in a common practice.</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>$traverse-to-sor</td><td><div><p>Traverse upforwards to the first SOR organization\nHttp response code 404 will be returned if no related SOR organization could be found</p>\n</div></td></tr></tbody></table></div></div></div></div></div><div class=\"panel panel-default\"><div class=\"panel-heading\"><h4 id=\"Practitioner1-5\" class=\"panel-title\"><span style=\"float: right;\">Resource Conformance: supported </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=\"StructureDefinition-ehealth-practitioner.html\">ehealth-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>update</code>, <code>search-type</code>, <code>vread</code>, <code>read</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>_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>string</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>_profile</td><td><code>uri</code></td><td><div><p>Search for resources which have the given profile</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_security</td><td><code>token</code></td><td><div><p>Search for resources which have the given security labels</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_tag</td><td><code>token</code></td><td><div><p>Search for resources which have the given tag</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, 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></tbody></table></div></div></div></div></div><div class=\"panel panel-default\"><div class=\"panel-heading\"><h4 id=\"PractitionerRole1-6\" class=\"panel-title\"><span style=\"float: right;\">Resource Conformance: supported </span>PractitionerRole</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=\"StructureDefinition-ehealth-practitionerrole.html\">ehealth-practitionerrole</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>search-type</code>, <code>vread</code>, <code>read</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>_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>string</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>_profile</td><td><code>uri</code></td><td><div><p>Search for resources which have the given profile</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_security</td><td><code>token</code></td><td><div><p>Search for resources which have the given security labels</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>_tag</td><td><code>token</code></td><td><div><p>Search for resources which have the given tag</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 this practitioner's record is in active use</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>date</td><td><code>date</code></td><td><div><p>The period during which the practitioner is authorized to perform in these role(s)</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>endpoint</td><td><code>reference</code></td><td><div><p>Technical endpoints providing access to services operated for the practitioner with this role</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>location</td><td><code>reference</code></td><td><div><p>One of the locations at which this practitioner provides care</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>organization</td><td><code>reference</code></td><td><div><p>The identity of the organization the practitioner represents / acts on behalf of</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>practitioner</td><td><code>reference</code></td><td><div><p>Practitioner that is able to provide the defined services for the organation</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>role</td><td><code>token</code></td><td><div><p>The practitioner can perform this role at for the organization</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>service</td><td><code>reference</code></td><td><div><p>The list of healthcare services that this worker provides for this role's Organization/Location(s)</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>specialty</td><td><code>token</code></td><td><div><p>The practitioner has this specialty at an organization</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></tbody></table></div></div></div></div></div><div class=\"panel panel-default\"><div class=\"panel-heading\"><h4 id=\"Provenance1-7\" class=\"panel-title\"><span style=\"float: right;\">Resource Conformance: supported </span>Provenance</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=\"StructureDefinition-ehealth-provenance.html\">ehealth-provenance</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>vread</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>_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>recorded</td><td><code>date</code></td><td><div><p>When the activity was recorded / updated</p>\n</div></td></tr><tr><td><b>SHALL</b></td><td>target</td><td><code>reference</code></td><td><div><p>Target Reference(s) (usually version specific)</p>\n</div></td></tr></tbody></table></div><div class=\"col-lg-5\"> </div></div></div></div></div></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:url [
fhir:v "http://ehealth.sundhed.dk/fhir/CapabilityStatement/organization"^^xsd:anyURI ;
fhir:l <http://ehealth.sundhed.dk/fhir/CapabilityStatement/organization>
  ] ; # 
  fhir:version [ fhir:v "8.0.0"] ; # 
  fhir:name [ fhir:v "organization"] ; # 
  fhir:status [ fhir:v "active"] ; # 
  fhir:date [ fhir:v "2026-01-13T11:12:36.296+00:00"^^xsd:dateTime] ; # 
  fhir:publisher [ fhir:v "Den telemedicinske infrastruktur (eHealth Infrastructure)"] ; # 
  fhir:contact ( [
fhir:name [ fhir:v "Den telemedicinske infrastruktur (eHealth Infrastructure)" ] ;
    ( fhir:telecom [
fhir:system [ fhir:v "url" ] ;
fhir:value [ fhir:v "http://ehealth.sundhed.dk" ]     ] )
  ] ) ; # 
  fhir:jurisdiction ( [
    ( fhir:coding [
fhir:system [
fhir:v "urn:iso:std:iso:3166"^^xsd:anyURI ;
fhir:l <urn:iso:std:iso:3166>       ] ;
fhir:code [ fhir:v "DK" ] ;
fhir:display [ fhir:v "Denmark" ]     ] )
  ] ) ; # 
  fhir:kind [ fhir:v "instance"] ; # 
  fhir:instantiates ( [
fhir:v "http://hl7.org/fhir/uv/bulkdata/CapabilityStatement/bulk-data"^^xsd:anyURI ;
fhir:l <http://hl7.org/fhir/uv/bulkdata/CapabilityStatement/bulk-data>
  ] ) ; # 
  fhir:software [
fhir:name [ fhir:v "organization" ] ;
fhir:version [ fhir:v "1.24.0" ]
  ] ; # 
  fhir:implementation [
fhir:description [ fhir:v "eHealth organization service" ] ;
fhir:url [
fhir:v "https://organization.devtest.systematic-ehealth.com/fhir"^^xsd:anyURI ;
fhir:l <https://organization.devtest.systematic-ehealth.com/fhir>     ]
  ] ; # 
  fhir:fhirVersion [ fhir:v "4.0.1"] ; # 
  fhir:format ( [ fhir:v "application/fhir+xml"] [ fhir:v "xml"] [ fhir:v "application/fhir+json"] [ fhir:v "json"] [ fhir:v "application/x-turtle"] [ fhir:v "ttl"] [ fhir:v "html/json"] [ fhir:v "html/xml"] [ fhir:v "html/turtle"] ) ; # 
  fhir:rest ( [
fhir:mode [ fhir:v "server" ] ;
    ( fhir:resource [
fhir:type [ fhir:v "Binary" ] ;
fhir:profile [
fhir:v "http://hl7.org/fhir/StructureDefinition/Binary"^^xsd:anyURI ;
fhir:l <http://hl7.org/fhir/StructureDefinition/Binary>       ] ;
      ( fhir:interaction [
fhir:code [ fhir:v "vread" ]       ] [
fhir:code [ fhir:v "read" ]       ] ) ;
      ( fhir:searchInclude [ fhir:v "*" ] ) ;
      ( fhir:searchRevInclude [ fhir:v "CareTeam:encounter" ] [ fhir:v "CareTeam:managingOrganization" ] [ fhir:v "CareTeam:participant" ] [ fhir:v "CareTeam:patient" ] [ fhir:v "CareTeam:subject" ] [ fhir:v "Organization:endpoint" ] [ fhir:v "Organization:partof" ] [ fhir:v "PractitionerRole:endpoint" ] [ fhir:v "PractitionerRole:location" ] [ fhir:v "PractitionerRole:organization" ] [ fhir:v "PractitionerRole:practitioner" ] [ fhir:v "PractitionerRole:service" ] [ fhir:v "Provenance:target" ] )     ] [
fhir:type [ fhir:v "CareTeam" ] ;
fhir:profile [
fhir:v "http://ehealth.sundhed.dk/fhir/StructureDefinition/ehealth-careteam"^^xsd:anyURI ;
fhir:l <http://ehealth.sundhed.dk/fhir/StructureDefinition/ehealth-careteam>       ] ;
      ( fhir:interaction [
fhir:code [ fhir:v "update" ]       ] [
fhir:code [ fhir:v "search-type" ]       ] [
fhir:code [ fhir:v "vread" ]       ] [
fhir:code [ fhir:v "read" ]       ] [
fhir:code [ fhir:v "delete" ]       ] [
fhir:code [ fhir:v "create" ]       ] ) ;
fhir:conditionalCreate [ fhir:v true ] ;
fhir:conditionalUpdate [ fhir:v true ] ;
fhir:conditionalDelete [ fhir:v "multiple" ] ;
      ( fhir:searchInclude [ fhir:v "CareTeam:managingOrganization" ] [ fhir:v "CareTeam:participant" ] [ fhir:v "CareTeam:subject" ] ) ;
      ( fhir:searchRevInclude [ fhir:v "CareTeam:encounter" ] [ fhir:v "CareTeam:managingOrganization" ] [ fhir:v "CareTeam:participant" ] [ fhir:v "CareTeam:patient" ] [ fhir:v "CareTeam:subject" ] [ fhir:v "Organization:endpoint" ] [ fhir:v "Organization:partof" ] [ fhir:v "PractitionerRole:endpoint" ] [ fhir:v "PractitionerRole:location" ] [ fhir:v "PractitionerRole:organization" ] [ fhir:v "PractitionerRole:practitioner" ] [ fhir:v "PractitionerRole:service" ] [ fhir:v "Provenance:target" ] ) ;
      ( fhir:searchParam [
fhir:name [ fhir:v "_content" ] ;
fhir:type [ fhir:v "string" ] ;
fhir:documentation [ fhir:v "Search the contents of the resource's data using a fulltext search" ]       ] [
fhir:name [ fhir:v "_has" ] ;
fhir:type [ fhir:v "string" ] ;
fhir:documentation [ fhir:v "Return resources linked to by the given target" ]       ] [
fhir:name [ fhir:v "_id" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "The ID of the resource" ]       ] [
fhir:name [ fhir:v "_language" ] ;
fhir:type [ fhir:v "string" ] ;
fhir:documentation [ fhir:v "The language of the resource" ]       ] [
fhir:name [ fhir:v "_lastUpdated" ] ;
fhir:type [ fhir:v "date" ] ;
fhir:documentation [ fhir:v "Only return resources which were last updated as specified by the given range" ]       ] [
fhir:name [ fhir:v "_profile" ] ;
fhir:type [ fhir:v "uri" ] ;
fhir:documentation [ fhir:v "Search for resources which have the given profile" ]       ] [
fhir:name [ fhir:v "_security" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "Search for resources which have the given security labels" ]       ] [
fhir:name [ fhir:v "_tag" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "Search for resources which have the given tag" ]       ] [
fhir:name [ fhir:v "_text" ] ;
fhir:type [ fhir:v "string" ] ;
fhir:documentation [ fhir:v "Search the contents of the resource's narrative using a fulltext search" ]       ] [
fhir:name [ fhir:v "category" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "Type of team" ]       ] [
fhir:name [ fhir:v "context" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "A use context assigned to the care team" ]       ] [
fhir:name [ fhir:v "context-type" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "A type of use context assigned to the care team" ]       ] [
fhir:name [ fhir:v "context-type-value" ] ;
fhir:type [ fhir:v "composite" ] ;
fhir:documentation [ fhir:v "A use context type and value assigned to the care team" ]       ] [
fhir:name [ fhir:v "date" ] ;
fhir:type [ fhir:v "date" ] ;
fhir:documentation [ fhir:v "Time period team covers" ]       ] [
fhir:name [ fhir:v "encounter" ] ;
fhir:type [ fhir:v "reference" ] ;
fhir:documentation [ fhir:v "Encounter or episode associated with CareTeam" ]       ] [
fhir:name [ fhir:v "identifier" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "External Ids for this team" ]       ] [
fhir:name [ fhir:v "managingOrganization" ] ;
fhir:type [ fhir:v "reference" ] ;
fhir:documentation [ fhir:v "Managing organization of a care team" ]       ] [
fhir:name [ fhir:v "participant" ] ;
fhir:type [ fhir:v "reference" ] ;
fhir:documentation [ fhir:v "Who is involved" ]       ] [
fhir:name [ fhir:v "patient" ] ;
fhir:type [ fhir:v "reference" ] ;
fhir:documentation [ fhir:v "Who care team is for" ]       ] [
fhir:name [ fhir:v "reasonCode" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "Reason care team exists" ]       ] [
fhir:name [ fhir:v "status" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "proposed | active | suspended | inactive | entered-in-error" ]       ] [
fhir:name [ fhir:v "subject" ] ;
fhir:type [ fhir:v "reference" ] ;
fhir:documentation [ fhir:v "Who care team is for" ]       ] ) ;
      ( fhir:operation [
fhir:name [ fhir:v "validate" ] ;
fhir:definition [
fhir:v "https://organization.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-it-validate"^^xsd:anyURI ;
fhir:l <https://organization.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-it-validate>         ]       ] )     ] [
fhir:type [ fhir:v "OperationDefinition" ] ;
fhir:profile [
fhir:v "http://hl7.org/fhir/StructureDefinition/OperationDefinition"^^xsd:anyURI ;
fhir:l <http://hl7.org/fhir/StructureDefinition/OperationDefinition>       ] ;
      ( fhir:interaction [
fhir:code [ fhir:v "read" ]       ] ) ;
      ( fhir:searchInclude [ fhir:v "*" ] ) ;
      ( fhir:searchRevInclude [ fhir:v "CareTeam:encounter" ] [ fhir:v "CareTeam:managingOrganization" ] [ fhir:v "CareTeam:participant" ] [ fhir:v "CareTeam:patient" ] [ fhir:v "CareTeam:subject" ] [ fhir:v "Organization:endpoint" ] [ fhir:v "Organization:partof" ] [ fhir:v "PractitionerRole:endpoint" ] [ fhir:v "PractitionerRole:location" ] [ fhir:v "PractitionerRole:organization" ] [ fhir:v "PractitionerRole:practitioner" ] [ fhir:v "PractitionerRole:service" ] [ fhir:v "Provenance:target" ] )     ] [
fhir:type [ fhir:v "Organization" ] ;
fhir:profile [
fhir:v "http://ehealth.sundhed.dk/fhir/StructureDefinition/ehealth-organization"^^xsd:anyURI ;
fhir:l <http://ehealth.sundhed.dk/fhir/StructureDefinition/ehealth-organization>       ] ;
      ( fhir:interaction [
fhir:code [ fhir:v "update" ]       ] [
fhir:code [ fhir:v "search-type" ]       ] [
fhir:code [ fhir:v "vread" ]       ] [
fhir:code [ fhir:v "read" ]       ] [
fhir:code [ fhir:v "patch" ]       ] [
fhir:code [ fhir:v "create" ]       ] ) ;
fhir:conditionalCreate [ fhir:v true ] ;
fhir:conditionalUpdate [ fhir:v true ] ;
      ( fhir:searchInclude [ fhir:v "Organization:partof" ] ) ;
      ( fhir:searchRevInclude [ fhir:v "CareTeam:managingOrganization" ] [ fhir:v "Organization:partof" ] [ fhir:v "Provenance:target" ] ) ;
      ( fhir:searchParam [
fhir:name [ fhir:v "_content" ] ;
fhir:type [ fhir:v "string" ] ;
fhir:documentation [ fhir:v "Search the contents of the resource's data using a fulltext search" ]       ] [
fhir:name [ fhir:v "_has" ] ;
fhir:type [ fhir:v "string" ] ;
fhir:documentation [ fhir:v "Return resources linked to by the given target" ]       ] [
fhir:name [ fhir:v "_id" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "The ID of the resource" ]       ] [
fhir:name [ fhir:v "_language" ] ;
fhir:type [ fhir:v "string" ] ;
fhir:documentation [ fhir:v "The language of the resource" ]       ] [
fhir:name [ fhir:v "_lastUpdated" ] ;
fhir:type [ fhir:v "date" ] ;
fhir:documentation [ fhir:v "Only return resources which were last updated as specified by the given range" ]       ] [
fhir:name [ fhir:v "_profile" ] ;
fhir:type [ fhir:v "uri" ] ;
fhir:documentation [ fhir:v "Search for resources which have the given profile" ]       ] [
fhir:name [ fhir:v "_security" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "Search for resources which have the given security labels" ]       ] [
fhir:name [ fhir:v "_tag" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "Search for resources which have the given tag" ]       ] [
fhir:name [ fhir:v "_text" ] ;
fhir:type [ fhir:v "string" ] ;
fhir:documentation [ fhir:v "Search the contents of the resource's narrative using a fulltext search" ]       ] [
fhir:name [ fhir:v "active" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text" ]       ] [
fhir:name [ fhir:v "address" ] ;
fhir:type [ fhir:v "string" ] ;
fhir:documentation [ fhir:v "A (part of the) address of the organization" ]       ] [
fhir:name [ fhir:v "address-city" ] ;
fhir:type [ fhir:v "string" ] ;
fhir:documentation [ fhir:v "A city specified in an address" ]       ] [
fhir:name [ fhir:v "address-country" ] ;
fhir:type [ fhir:v "string" ] ;
fhir:documentation [ fhir:v "A country specified in an address" ]       ] [
fhir:name [ fhir:v "address-postalcode" ] ;
fhir:type [ fhir:v "string" ] ;
fhir:documentation [ fhir:v "A postal code specified in an address" ]       ] [
fhir:name [ fhir:v "address-state" ] ;
fhir:type [ fhir:v "string" ] ;
fhir:documentation [ fhir:v "A state specified in an address" ]       ] [
fhir:name [ fhir:v "address-use" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "A use code specified in an address" ]       ] [
fhir:name [ fhir:v "contactName" ] ;
fhir:type [ fhir:v "string" ] ;
fhir:documentation [ fhir:v "Contact name" ]       ] [
fhir:name [ fhir:v "cvrNumber" ] ;
fhir:type [ fhir:v "string" ] ;
fhir:documentation [ fhir:v "Cvr number of the organization" ]       ] [
fhir:name [ fhir:v "endpoint" ] ;
fhir:type [ fhir:v "reference" ] ;
fhir:documentation [ fhir:v "Technical endpoints providing access to services operated for the organization" ]       ] [
fhir:name [ fhir:v "identifier" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "Any identifier for the organization (not the accreditation issuer's identifier)" ]       ] [
fhir:name [ fhir:v "municipalityCode" ] ;
fhir:type [ fhir:v "string" ] ;
fhir:documentation [ fhir:v "Municipality code of the organization" ]       ] [
fhir:name [ fhir:v "name" ] ;
fhir:type [ fhir:v "string" ] ;
fhir:documentation [ fhir:v "A portion of the organization's name or alias" ]       ] [
fhir:name [ fhir:v "partof" ] ;
fhir:type [ fhir:v "reference" ] ;
fhir:documentation [ fhir:v "An organization of which this organization forms a part" ]       ] [
fhir:name [ fhir:v "phonetic" ] ;
fhir:type [ fhir:v "string" ] ;
fhir:documentation [ fhir:v "A portion of the organization's name using some kind of phonetic matching algorithm" ]       ] [
fhir:name [ fhir:v "providerIdentifier" ] ;
fhir:type [ fhir:v "string" ] ;
fhir:documentation [ fhir:v "Provider identifier of the organization" ]       ] [
fhir:name [ fhir:v "regionCode" ] ;
fhir:type [ fhir:v "string" ] ;
fhir:documentation [ fhir:v "Region code of the organization" ]       ] [
fhir:name [ fhir:v "source" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "Source of the organization" ]       ] [
fhir:name [ fhir:v "specialty" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "Specialty of the organization" ]       ] [
fhir:name [ fhir:v "type" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "A code for the type of organization" ]       ] ) ;
      ( fhir:operation [
fhir:name [ fhir:v "validate" ] ;
fhir:definition [
fhir:v "https://organization.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-it-validate"^^xsd:anyURI ;
fhir:l <https://organization.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-it-validate>         ]       ] [
fhir:name [ fhir:v "get-general-practitioner-info" ] ;
fhir:definition [
fhir:v "https://organization.devtest.systematic-ehealth.com/fhir/OperationDefinition/Organization-t-get-general-practitioner-info"^^xsd:anyURI ;
fhir:l <https://organization.devtest.systematic-ehealth.com/fhir/OperationDefinition/Organization-t-get-general-practitioner-info>         ] ;
fhir:documentation [ fhir:v "The operation resolves the input organization(s) to the shared organization for the one or more organizations that have the given provider number. \nThe Organization returned depends on how many active Organization exist in the service with that provider number. When a single Organization has the provider number that Organization is returned. \nWhen multiple Organization resources have the same provider number, the shared parent Organization is returned. \nAn OperationOutcome with an explicit error is returned in case multiple organizations share the provider number but do not have a shared parent, or in case input organizations have different provider numbers. \nA typical use of the operation is to get name, address and telecom details for a general practitioner. Many provider numbers are assigned to a single organization but some provider numbers are shared by multiple entities (organizations) within in a common practice." ]       ] [
fhir:name [ fhir:v "traverse-to-sor" ] ;
fhir:definition [
fhir:v "https://organization.devtest.systematic-ehealth.com/fhir/OperationDefinition/Organization-i-traverse-to-sor"^^xsd:anyURI ;
fhir:l <https://organization.devtest.systematic-ehealth.com/fhir/OperationDefinition/Organization-i-traverse-to-sor>         ] ;
fhir:documentation [ fhir:v "Traverse upforwards to the first SOR organization\nHttp response code 404 will be returned if no related SOR organization could be found" ]       ] )     ] [
fhir:type [ fhir:v "Practitioner" ] ;
fhir:profile [
fhir:v "http://ehealth.sundhed.dk/fhir/StructureDefinition/ehealth-practitioner"^^xsd:anyURI ;
fhir:l <http://ehealth.sundhed.dk/fhir/StructureDefinition/ehealth-practitioner>       ] ;
      ( fhir:interaction [
fhir:code [ fhir:v "update" ]       ] [
fhir:code [ fhir:v "search-type" ]       ] [
fhir:code [ fhir:v "vread" ]       ] [
fhir:code [ fhir:v "read" ]       ] [
fhir:code [ fhir:v "delete" ]       ] [
fhir:code [ fhir:v "create" ]       ] ) ;
fhir:conditionalCreate [ fhir:v true ] ;
fhir:conditionalUpdate [ fhir:v true ] ;
fhir:conditionalDelete [ fhir:v "multiple" ] ;
      ( fhir:searchInclude [ fhir:v "*" ] ) ;
      ( fhir:searchRevInclude [ fhir:v "CareTeam:encounter" ] [ fhir:v "CareTeam:managingOrganization" ] [ fhir:v "CareTeam:participant" ] [ fhir:v "CareTeam:patient" ] [ fhir:v "CareTeam:subject" ] [ fhir:v "Organization:endpoint" ] [ fhir:v "Organization:partof" ] [ fhir:v "PractitionerRole:endpoint" ] [ fhir:v "PractitionerRole:location" ] [ fhir:v "PractitionerRole:organization" ] [ fhir:v "PractitionerRole:practitioner" ] [ fhir:v "PractitionerRole:service" ] [ fhir:v "Provenance:target" ] ) ;
      ( fhir:searchParam [
fhir:name [ fhir:v "_content" ] ;
fhir:type [ fhir:v "string" ] ;
fhir:documentation [ fhir:v "Search the contents of the resource's data using a fulltext search" ]       ] [
fhir:name [ fhir:v "_has" ] ;
fhir:type [ fhir:v "string" ] ;
fhir:documentation [ fhir:v "Return resources linked to by the given target" ]       ] [
fhir:name [ fhir:v "_id" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "The ID of the resource" ]       ] [
fhir:name [ fhir:v "_language" ] ;
fhir:type [ fhir:v "string" ] ;
fhir:documentation [ fhir:v "The language of the resource" ]       ] [
fhir:name [ fhir:v "_lastUpdated" ] ;
fhir:type [ fhir:v "date" ] ;
fhir:documentation [ fhir:v "Only return resources which were last updated as specified by the given range" ]       ] [
fhir:name [ fhir:v "_profile" ] ;
fhir:type [ fhir:v "uri" ] ;
fhir:documentation [ fhir:v "Search for resources which have the given profile" ]       ] [
fhir:name [ fhir:v "_security" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "Search for resources which have the given security labels" ]       ] [
fhir:name [ fhir:v "_tag" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "Search for resources which have the given tag" ]       ] [
fhir:name [ fhir:v "_text" ] ;
fhir:type [ fhir:v "string" ] ;
fhir:documentation [ fhir:v "Search the contents of the resource's narrative using a fulltext search" ]       ] [
fhir:name [ fhir:v "active" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "Whether the practitioner record is active" ]       ] [
fhir:name [ fhir:v "address" ] ;
fhir:type [ fhir:v "string" ] ;
fhir:documentation [ fhir:v "A server defined search that may match any of the string fields in the Address, including line, city, state, country, postalCode, and/or text" ]       ] [
fhir:name [ fhir:v "address-city" ] ;
fhir:type [ fhir:v "string" ] ;
fhir:documentation [ fhir:v "A city specified in an address" ]       ] [
fhir:name [ fhir:v "address-country" ] ;
fhir:type [ fhir:v "string" ] ;
fhir:documentation [ fhir:v "A country specified in an address" ]       ] [
fhir:name [ fhir:v "address-postalcode" ] ;
fhir:type [ fhir:v "string" ] ;
fhir:documentation [ fhir:v "A postalCode specified in an address" ]       ] [
fhir:name [ fhir:v "address-state" ] ;
fhir:type [ fhir:v "string" ] ;
fhir:documentation [ fhir:v "A state specified in an address" ]       ] [
fhir:name [ fhir:v "address-use" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "A use code specified in an address" ]       ] [
fhir:name [ fhir:v "communication" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "One of the languages that the practitioner can communicate with" ]       ] [
fhir:name [ fhir:v "email" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "A value in an email contact" ]       ] [
fhir:name [ fhir:v "family" ] ;
fhir:type [ fhir:v "string" ] ;
fhir:documentation [ fhir:v "A portion of the family name" ]       ] [
fhir:name [ fhir:v "gender" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "Gender of the practitioner" ]       ] [
fhir:name [ fhir:v "given" ] ;
fhir:type [ fhir:v "string" ] ;
fhir:documentation [ fhir:v "A portion of the given name" ]       ] [
fhir:name [ fhir:v "identifier" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "A practitioner's Identifier" ]       ] [
fhir:name [ fhir:v "name" ] ;
fhir:type [ fhir:v "string" ] ;
fhir:documentation [ fhir:v "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:name [ fhir:v "phone" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "A value in a phone contact" ]       ] [
fhir:name [ fhir:v "phonetic" ] ;
fhir:type [ fhir:v "string" ] ;
fhir:documentation [ fhir:v "A portion of either family or given name using some kind of phonetic matching algorithm" ]       ] [
fhir:name [ fhir:v "telecom" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "The value in any kind of contact" ]       ] ) ;
      ( fhir:operation [
fhir:name [ fhir:v "validate" ] ;
fhir:definition [
fhir:v "https://organization.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-it-validate"^^xsd:anyURI ;
fhir:l <https://organization.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-it-validate>         ]       ] )     ] [
fhir:type [ fhir:v "PractitionerRole" ] ;
fhir:profile [
fhir:v "http://ehealth.sundhed.dk/fhir/StructureDefinition/ehealth-practitionerrole"^^xsd:anyURI ;
fhir:l <http://ehealth.sundhed.dk/fhir/StructureDefinition/ehealth-practitionerrole>       ] ;
      ( fhir:interaction [
fhir:code [ fhir:v "update" ]       ] [
fhir:code [ fhir:v "search-type" ]       ] [
fhir:code [ fhir:v "vread" ]       ] [
fhir:code [ fhir:v "read" ]       ] [
fhir:code [ fhir:v "delete" ]       ] [
fhir:code [ fhir:v "create" ]       ] ) ;
fhir:conditionalCreate [ fhir:v true ] ;
fhir:conditionalUpdate [ fhir:v true ] ;
fhir:conditionalDelete [ fhir:v "multiple" ] ;
      ( fhir:searchInclude [ fhir:v "*" ] [ fhir:v "PractitionerRole:endpoint" ] [ fhir:v "PractitionerRole:location" ] [ fhir:v "PractitionerRole:organization" ] [ fhir:v "PractitionerRole:practitioner" ] [ fhir:v "PractitionerRole:service" ] ) ;
      ( fhir:searchRevInclude [ fhir:v "CareTeam:encounter" ] [ fhir:v "CareTeam:managingOrganization" ] [ fhir:v "CareTeam:participant" ] [ fhir:v "CareTeam:patient" ] [ fhir:v "CareTeam:subject" ] [ fhir:v "Organization:endpoint" ] [ fhir:v "Organization:partof" ] [ fhir:v "PractitionerRole:endpoint" ] [ fhir:v "PractitionerRole:location" ] [ fhir:v "PractitionerRole:organization" ] [ fhir:v "PractitionerRole:practitioner" ] [ fhir:v "PractitionerRole:service" ] [ fhir:v "Provenance:target" ] ) ;
      ( fhir:searchParam [
fhir:name [ fhir:v "_content" ] ;
fhir:type [ fhir:v "string" ] ;
fhir:documentation [ fhir:v "Search the contents of the resource's data using a fulltext search" ]       ] [
fhir:name [ fhir:v "_has" ] ;
fhir:type [ fhir:v "string" ] ;
fhir:documentation [ fhir:v "Return resources linked to by the given target" ]       ] [
fhir:name [ fhir:v "_id" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "The ID of the resource" ]       ] [
fhir:name [ fhir:v "_language" ] ;
fhir:type [ fhir:v "string" ] ;
fhir:documentation [ fhir:v "The language of the resource" ]       ] [
fhir:name [ fhir:v "_lastUpdated" ] ;
fhir:type [ fhir:v "date" ] ;
fhir:documentation [ fhir:v "Only return resources which were last updated as specified by the given range" ]       ] [
fhir:name [ fhir:v "_profile" ] ;
fhir:type [ fhir:v "uri" ] ;
fhir:documentation [ fhir:v "Search for resources which have the given profile" ]       ] [
fhir:name [ fhir:v "_security" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "Search for resources which have the given security labels" ]       ] [
fhir:name [ fhir:v "_tag" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "Search for resources which have the given tag" ]       ] [
fhir:name [ fhir:v "_text" ] ;
fhir:type [ fhir:v "string" ] ;
fhir:documentation [ fhir:v "Search the contents of the resource's narrative using a fulltext search" ]       ] [
fhir:name [ fhir:v "active" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "Whether this practitioner's record is in active use" ]       ] [
fhir:name [ fhir:v "date" ] ;
fhir:type [ fhir:v "date" ] ;
fhir:documentation [ fhir:v "The period during which the practitioner is authorized to perform in these role(s)" ]       ] [
fhir:name [ fhir:v "email" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "A value in an email contact" ]       ] [
fhir:name [ fhir:v "endpoint" ] ;
fhir:type [ fhir:v "reference" ] ;
fhir:documentation [ fhir:v "Technical endpoints providing access to services operated for the practitioner with this role" ]       ] [
fhir:name [ fhir:v "identifier" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "A practitioner's Identifier" ]       ] [
fhir:name [ fhir:v "location" ] ;
fhir:type [ fhir:v "reference" ] ;
fhir:documentation [ fhir:v "One of the locations at which this practitioner provides care" ]       ] [
fhir:name [ fhir:v "organization" ] ;
fhir:type [ fhir:v "reference" ] ;
fhir:documentation [ fhir:v "The identity of the organization the practitioner represents / acts on behalf of" ]       ] [
fhir:name [ fhir:v "phone" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "A value in a phone contact" ]       ] [
fhir:name [ fhir:v "practitioner" ] ;
fhir:type [ fhir:v "reference" ] ;
fhir:documentation [ fhir:v "Practitioner that is able to provide the defined services for the organation" ]       ] [
fhir:name [ fhir:v "role" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "The practitioner can perform this role at for the organization" ]       ] [
fhir:name [ fhir:v "service" ] ;
fhir:type [ fhir:v "reference" ] ;
fhir:documentation [ fhir:v "The list of healthcare services that this worker provides for this role's Organization/Location(s)" ]       ] [
fhir:name [ fhir:v "specialty" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "The practitioner has this specialty at an organization" ]       ] [
fhir:name [ fhir:v "telecom" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "The value in any kind of contact" ]       ] ) ;
      ( fhir:operation [
fhir:name [ fhir:v "validate" ] ;
fhir:definition [
fhir:v "https://organization.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-it-validate"^^xsd:anyURI ;
fhir:l <https://organization.devtest.systematic-ehealth.com/fhir/OperationDefinition/Multi-it-validate>         ]       ] )     ] [
fhir:type [ fhir:v "Provenance" ] ;
fhir:profile [
fhir:v "http://ehealth.sundhed.dk/fhir/StructureDefinition/ehealth-provenance"^^xsd:anyURI ;
fhir:l <http://ehealth.sundhed.dk/fhir/StructureDefinition/ehealth-provenance>       ] ;
      ( fhir:interaction [
fhir:code [ fhir:v "search-type" ]       ] [
fhir:code [ fhir:v "vread" ]       ] [
fhir:code [ fhir:v "read" ]       ] ) ;
      ( fhir:searchRevInclude [ fhir:v "CareTeam:encounter" ] [ fhir:v "CareTeam:managingOrganization" ] [ fhir:v "CareTeam:participant" ] [ fhir:v "CareTeam:patient" ] [ fhir:v "CareTeam:subject" ] [ fhir:v "Organization:endpoint" ] [ fhir:v "Organization:partof" ] [ fhir:v "PractitionerRole:endpoint" ] [ fhir:v "PractitionerRole:location" ] [ fhir:v "PractitionerRole:organization" ] [ fhir:v "PractitionerRole:practitioner" ] [ fhir:v "PractitionerRole:service" ] [ fhir:v "Provenance:target" ] ) ;
      ( fhir:searchParam [
fhir:name [ fhir:v "_id" ] ;
fhir:type [ fhir:v "token" ] ;
fhir:documentation [ fhir:v "The ID of the resource" ]       ] [
fhir:name [ fhir:v "recorded" ] ;
fhir:type [ fhir:v "date" ] ;
fhir:documentation [ fhir:v "When the activity was recorded / updated" ]       ] [
fhir:name [ fhir:v "target" ] ;
fhir:type [ fhir:v "reference" ] ;
fhir:documentation [ fhir:v "Target Reference(s) (usually version specific)" ]       ] )     ] ) ;
    ( fhir:operation [
fhir:name [ fhir:v "reindex" ] ;
fhir:definition [
fhir:v "https://organization.devtest.systematic-ehealth.com/fhir/OperationDefinition/-s-reindex"^^xsd:anyURI ;
fhir:l <https://organization.devtest.systematic-ehealth.com/fhir/OperationDefinition/-s-reindex>       ]     ] [
fhir:name [ fhir:v "persist-login" ] ;
fhir:definition [
fhir:v "https://organization.devtest.systematic-ehealth.com/fhir/OperationDefinition/-s-persist-login"^^xsd:anyURI ;
fhir:l <https://organization.devtest.systematic-ehealth.com/fhir/OperationDefinition/-s-persist-login>       ] ;
fhir:documentation [ fhir:v "This operation persists login information into CareTeams and PractitionerRoles\nThe following elements of each careteam are mandatory:\n- id: Reference based on the careteam from the saml security token\n- status: any\n- name: any\n- reasonCode: any\n- participant: 1 for each careteam-role in the saml security token\n-- role: from the saml security token\n-- member: reference to the practitioner\n-- onBehalfOf: reference to organization (cannot be set currently because of a bug in hapi)\n\nPersist-login will find each careteam, and update it with any new participants and roles from the input bundle.\nThe input careteam resources are are used as a container for the participant list. The rest of the fields are not used.\nThe following elements of each PractitionerRole are mandatory:\n- practitioner\n- organization\n- code: roles from the saml security token (CareteamParticipantRole valueset)\n\nPersist-login will search for practitionerRoles for each combination of (practitioner, organization) and create it if it doesn't already exists." ]     ] [
fhir:name [ fhir:v "import-organizations" ] ;
fhir:definition [
fhir:v "https://organization.devtest.systematic-ehealth.com/fhir/OperationDefinition/-s-import-organizations"^^xsd:anyURI ;
fhir:l <https://organization.devtest.systematic-ehealth.com/fhir/OperationDefinition/-s-import-organizations>       ] ;
fhir:documentation [ fhir:v "Import a bundle containing at least one organization tree." ]     ] [
fhir:name [ fhir:v "export-poll-status" ] ;
fhir:definition [
fhir:v "https://organization.devtest.systematic-ehealth.com/fhir/OperationDefinition/-s-export-poll-status"^^xsd:anyURI ;
fhir:l <https://organization.devtest.systematic-ehealth.com/fhir/OperationDefinition/-s-export-poll-status>       ] ;
fhir:documentation [ fhir:v "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:name [ fhir:v "export" ] ;
fhir:definition [
fhir:v "https://organization.devtest.systematic-ehealth.com/fhir/OperationDefinition/-s-export"^^xsd:anyURI ;
fhir:l <https://organization.devtest.systematic-ehealth.com/fhir/OperationDefinition/-s-export>       ] ;
fhir:documentation [ fhir:v "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- _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- _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:name [ fhir:v "meta" ] ;
fhir:definition [
fhir:v "https://organization.devtest.systematic-ehealth.com/fhir/OperationDefinition/-s-meta"^^xsd:anyURI ;
fhir:l <https://organization.devtest.systematic-ehealth.com/fhir/OperationDefinition/-s-meta>       ]     ] [
fhir:name [ fhir:v "get-resource-counts" ] ;
fhir:definition [
fhir:v "https://organization.devtest.systematic-ehealth.com/fhir/OperationDefinition/-s-get-resource-counts"^^xsd:anyURI ;
fhir:l <https://organization.devtest.systematic-ehealth.com/fhir/OperationDefinition/-s-get-resource-counts>       ] ;
fhir:documentation [ fhir:v "Provides the number of resources currently stored on the server, broken down by resource type" ]     ] [
fhir:name [ fhir:v "expunge" ] ;
fhir:definition [
fhir:v "https://organization.devtest.systematic-ehealth.com/fhir/OperationDefinition/-s-expunge"^^xsd:anyURI ;
fhir:l <https://organization.devtest.systematic-ehealth.com/fhir/OperationDefinition/-s-expunge>       ]     ] )
  ] ) . #