@@ -2,7 +2,7 @@ openapi: 3.0.3
2
2
info :
3
3
title : TiMessengerTestDriver
4
4
description : REST interface to automate the test of a TI-Messenger client implementation.
5
- version : 0.9.1
5
+ version : 0.9.2
6
6
contact :
7
7
name : gematik GmbH
8
8
email : software-development@gematik.de
@@ -2439,18 +2439,22 @@ components:
2439
2439
type : array
2440
2440
items :
2441
2441
$ref : " #/components/schemas/FhirReference"
2442
+ telecom :
2443
+ type : array
2444
+ items :
2445
+ $ref : " #/components/schemas/FhirTelecom"
2442
2446
endpoint :
2443
2447
type : array
2444
2448
items :
2445
2449
$ref : " #/components/schemas/FhirReference"
2446
2450
serviceProvisionCode :
2447
2451
type : array
2448
2452
items :
2449
- $ref : " #/components/schemas/FhirCoding "
2453
+ $ref : " #/components/schemas/FhirCodeableConcept "
2450
2454
communication :
2451
2455
type : array
2452
2456
items :
2453
- $ref : " #/components/schemas/FhirCoding "
2457
+ $ref : " #/components/schemas/FhirCodeableConcept "
2454
2458
appointmentRequired :
2455
2459
type : boolean
2456
2460
description : " Is an appointment mandatory"
@@ -2541,7 +2545,7 @@ components:
2541
2545
payloadType :
2542
2546
type : array
2543
2547
items :
2544
- $ref : " #/components/schemas/FhirCodingEntry "
2548
+ $ref : " #/components/schemas/FhirCodeableConcept "
2545
2549
2546
2550
FhirPractitioner :
2547
2551
allOf :
@@ -2555,6 +2559,10 @@ components:
2555
2559
type : array
2556
2560
items :
2557
2561
$ref : " #/components/schemas/FhirName"
2562
+ telecom :
2563
+ type : array
2564
+ items :
2565
+ $ref : ' #/components/schemas/FhirTelecom'
2558
2566
2559
2567
FhirAvailableTimes :
2560
2568
type : object
@@ -2664,14 +2672,17 @@ components:
2664
2672
items :
2665
2673
$ref : " #/components/schemas/FhirCoding"
2666
2674
2667
- FhirCodingEntry :
2675
+ FhirCodeableConcept :
2668
2676
description : " Coding object"
2669
2677
type : object
2670
2678
properties :
2671
2679
coding :
2672
2680
type : array
2673
2681
items :
2674
2682
$ref : " #/components/schemas/FhirCoding"
2683
+ text :
2684
+ type : string
2685
+ description : " Plain text representation of the concept"
2675
2686
2676
2687
FhirCoding :
2677
2688
description : " Coding object"
@@ -2687,6 +2698,23 @@ components:
2687
2698
type : string
2688
2699
example : " TI-Messenger chat"
2689
2700
2701
+ FhirTelecom :
2702
+ description : " Coding object"
2703
+ type : object
2704
+ properties :
2705
+ system :
2706
+ type : string
2707
+ example : " phone"
2708
+ description : " one of phone | fax | email | pager | url | sms | other"
2709
+ value :
2710
+ type : string
2711
+ example : " 030-606 06 60"
2712
+ description : " the actual value"
2713
+ use :
2714
+ type : string
2715
+ example : " work"
2716
+ description : " home | work | temp | old | mobile - purpose of this contact point"
2717
+
2690
2718
FhirConnectionType :
2691
2719
type : object
2692
2720
properties :
0 commit comments