Terminologieserver - Authoring - CreateCodeSystem

Aus Termserver-CTS2
(Unterschied zwischen Versionen)
Wechseln zu: Navigation, Suche
(automatisch erstellt vom Webservice-Schnittstellen-Tool)
(automatisch erstellt vom Webservice-Schnittstellen-Tool)
 
(3 dazwischenliegende Versionen von einem Benutzer werden nicht angezeigt)
Zeile 2: Zeile 2:
  
 
=Beschreibung=
 
=Beschreibung=
Anlegen neuer Vokabulare und deren erste Version. Falls im Parameter eine Vokabular-ID angegeben wurde und diese in der Datenbank schon vergeben ist, wird nur eine neue Vokabular-Version angelegt.<br>
+
Create a new code system including a new version. If the parameter codeSystemId is set and a code system with this id already exists, only a new version will be added instead. <br>
 
=Request/Response=
 
=Request/Response=
 
==Request==
 
==Request==
Zeile 14: Zeile 14:
 
     <th>Beschreibung</th>
 
     <th>Beschreibung</th>
 
   </tr>
 
   </tr>
<tr id="row_object">
+
<tr>
 
   <td id="cardinality_cell">1</td>
 
   <td id="cardinality_cell">1</td>
   <td id="param_level1">LoginType</td>
+
   <td id="param_level1">loginToken</td>
  <td>LoginType</td>
+
<td></td>  <td id="cardinality_cell">0..1</td>
+
  <td>Login information</td>
+
</tr>
+
<tr>
+
  <td id="cardinality_cell">2</td>
+
  <td id="param_level2">sessionID</td>
+
 
   <td>String</td>
 
   <td>String</td>
 
   <td></td>
 
   <td></td>
 
   <td id="cardinality_cell">1..1</td>
 
   <td id="cardinality_cell">1..1</td>
   <td>Session-ID from user (given by system)</td>
+
   <td>Login-Token that ensures the user is logged in.</td>
 
</tr>
 
</tr>
 
<tr id="row_object">
 
<tr id="row_object">
Zeile 165: Zeile 158:
 
<tr id="row_object">
 
<tr id="row_object">
 
   <td id="cardinality_cell">1</td>
 
   <td id="cardinality_cell">1</td>
   <td id="param_level1">ReturnType</td>
+
   <td id="param_level1">returnInfos</td>
 
   <td>ReturnType</td>
 
   <td>ReturnType</td>
 
<td></td>  <td id="cardinality_cell">1..1</td>
 
<td></td>  <td id="cardinality_cell">1..1</td>
Zeile 228: Zeile 221:
 
</tr>
 
</tr>
 
</table>
 
</table>
 +
=Beispiele=
 +
==SOAP==
 +
===Create code system===
 +
<source lang="xml">
 +
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:aut="http://authoring.ws.terminologie.fhdo.de/">
 +
  <soapenv:Header/>
 +
  <soapenv:Body>
 +
      <aut:CreateCodeSystem>       
 +
        <parameter>     
 +
            <codeSystem>
 +
  <name>Test Codesystem 1</name>
 +
  <codeSystemVersions>
 +
    <name>Test Codesystem Version 1</name>
 +
  </codeSystemVersions>
 +
            </codeSystem>
 +
            <loginToken>237b6ee6-a448-4b91-8210-a896bf50258a</loginToken>
 +
        </parameter>
 +
      </aut:CreateCodeSystem>
 +
  </soapenv:Body>
 +
</soapenv:Envelope>
 +
</source>
 
<br><br>
 
<br><br>
  
 
[[Terminologieserver - Webservice Dokumentation|zurück zur Webservice-Übersicht]]
 
[[Terminologieserver - Webservice Dokumentation|zurück zur Webservice-Übersicht]]

Aktuelle Version vom 30. September 2014, 12:30 Uhr

zurück zur Webservice-Übersicht

Inhaltsverzeichnis

Beschreibung

Create a new code system including a new version. If the parameter codeSystemId is set and a code system with this id already exists, only a new version will be added instead.

Request/Response

Request

Level Parameter Typ Länge Kardinalität Beschreibung
1 loginToken String 1..1 Login-Token that ensures the user is logged in.
1 codeSystem code_system 1..1 Name of codesystem. Each codesystem requires at least one version.
2 description String 65535 0..1 Narrative description of Code System
2 id Long 0..1 Id of an existing code system
2 name String 100 0..1 Name of the new code system. Optional, if code system with given id already exists.
2 codeSystemVersion code_system_version 1..1 Version of a Code System
3 description String 65535 0..1 Description of the Code System
3 expirationDate java.util.Date 0..1 Point of time the Code System looses its validity.
3 licenceHolder String 65535 0..1 Owner of the licence.
3 name String 100 1..1 Complete Name of the Code System.
3 oid String 100 0..1 Official OID
3 preferredLanguageCd String 30 0..1 Preferred language for this code system. Value comes from the ISO 639-1 ('de' for German, 'en' for English, ...)
3 releaseDate java.util.Date 0..1 Point of time, when this version starts to be valid.
3 source String 65535 0..1 Source of the Code System Version
3 status Integer 0..1 Status of the current entry. Can be taken from a domain.
3 underLicence Boolean 1..1 true, if Code System is under license (Code System will be invisible for all users without proper license)
3 validityRange String 30 1..1 Validity range, Values from domain list "codesystem_validityrange". Standard: 1 (required), 2 (recomended), 3 (limited), 4 (optional)


Response

Level Parameter Typ Länge Kardinalität Beschreibung
1 returnInfos ReturnType 1..1 Return information
2 message String 1..1 an additional message
2 overallErrorCategory 1..1 INFO, WARN, ERROR
2 status 1..1 OK, FAILURE
1 codeSystem code_system 1..1 Name of codesystem. Each codesystem requires at least one version.
2 currentVersionId Long 1..1 Version of the Code System
2 id Long 1..1 Internal ID = Primary Key of Code System
2 codeSystemVersion code_system_version 1..1 Version of a Code System
3 versionId Long 1..1

Beispiele

SOAP

Create code system

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:aut="http://authoring.ws.terminologie.fhdo.de/">
   <soapenv:Header/>
   <soapenv:Body>
      <aut:CreateCodeSystem>        
         <parameter>       
            <codeSystem>
		  <name>Test Codesystem 1</name>
		  <codeSystemVersions>
		    <name>Test Codesystem Version 1</name>	
		  </codeSystemVersions>	
            </codeSystem>
            <loginToken>237b6ee6-a448-4b91-8210-a896bf50258a</loginToken>
         </parameter>
      </aut:CreateCodeSystem>
   </soapenv:Body>
 </soapenv:Envelope>



zurück zur Webservice-Übersicht

Meine Werkzeuge
Namensräume
Varianten
Aktionen
Navigation
Werkzeuge