Special Parameters for FHIR update
Zur Navigation springen
Zur Suche springen
- if extra query parameter ext:deactivateExistent == true then the existing resource is not deleted, only deactivated. It is recommended for huge stores/indexes due to high costs of updates in quad stores.
- if the resource should be visible in the navigator group tree then the FHIR resource should have a group name. The definition of the group name (and the default language) is done by a FHIR extension element:
1 <?xml version="1.0" encoding="UTF-8"?>
2 <CodeSystem xmlns="http://hl7.org/fhir" xmlns:xhtml="http://www.w3.org/1999/xhtml"
3 xmlns:xml="http://www.w3.org/XML/1998/namespace" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xmlns:ext="http://semantik.fokus.fraunhofer.de/ehealth/fhir-extensions#"
5 >
6 <id value="cs-1"/>
7
8 <!-- in general, FHIR-extensions are used for items currently not present
9 in FHIR. Then namespace "http://semantik.fokus.fraunhofer.de/ehealth/fhir-extensions#"
10 (see above) has to be used -->
11
12 <!-- group corresponding to the terminology tree in the navigator -->
13 <extension url="ext:groupName">
14 <valueString value="FhG FOKUS E-HEALTH" />
15 </extension>
16
17 <extension url="ext:language">
18 <!-- Default language of the code system in form of IETF language tags
19 (RFC 5646). This is the language for the display element of a concept -->
20 <valueCode value="en" />
21 </extension>
22 ...
23 </CodeSystem>