Skip to content

Commit b888605

Browse files
authored
Changed FhirStructure, HS_serviceProvisionCode, HS_communication and… (#213)
* Changed FhirStructure, HS_serviceProvisionCode, HS_communication and Endpoint_payloadType changed to FhirCodeableConcept * added telecom
1 parent 84b25ed commit b888605

File tree

2 files changed

+35
-7
lines changed

2 files changed

+35
-7
lines changed

README.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ image::meta/gematik_logo.svg[gematik,width="70%"]
1616

1717
image:https://img.shields.io/badge/Release%20Notes-v1.1.1-red?style=plastic&logo=github&logoColor=red[link="ReleaseNotes.md"] +
1818
image:https://img.shields.io/badge/I_TiMessengerContactManagement-v1.0.1-blue?style=plastic&logo=github&logoColor=blue[link=/src/openapi/TiMessengerContactManagement.yaml"] +
19-
image:https://img.shields.io/badge/TiMessengerTestDriver-v0.9.1-purple?style=plastic&logo=github&logoColor=purple[link="/src/openapi/TiMessengerTestTreiber.yaml"]
20-
image:https://img.shields.io/badge/TiMessengerTestSuite-v0.9.1-purple?style=plastic&logo=github&logoColor=purple[link="https://github.com/gematik/TI-Messenger-Testsuite"] +
19+
image:https://img.shields.io/badge/TiMessengerTestDriver-v0.9.2-purple?style=plastic&logo=github&logoColor=purple[link="/src/openapi/TiMessengerTestTreiber.yaml"]
20+
image:https://img.shields.io/badge/TiMessengerTestSuite-v0.9.2-purple?style=plastic&logo=github&logoColor=purple[link="https://github.com/gematik/TI-Messenger-Testsuite"] +
2121
image:https://img.shields.io/badge/TI‐Messenger‐Dienst-v1.1.1-green?style=plastic&logo=github&logoColor=green[link="https://fachportal.gematik.de/fachportal-import/files/gemSpec_TI-Messenger-Dienst_V1.1.1.pdf"]
2222
image:https://img.shields.io/badge/TI‐Messenger‐FD-v1.1.1-green?style=plastic&logo=github&logoColor=green[link="https://fachportal.gematik.de/fachportal-import/files/gemSpec_TI-Messenger-FD_V1.1.1.pdf"]
2323
image:https://img.shields.io/badge/TI‐Messenger‐Client-v1.1.1-green?style=plastic&logo=github&logoColor=green[link="https://fachportal.gematik.de/fachportal-import/files/gemSpec_TI-Messenger-Client_V1.1.1.pdf"] +

src/openapi/TiMessengerTestTreiber.yaml

Lines changed: 33 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ openapi: 3.0.3
22
info:
33
title: TiMessengerTestDriver
44
description: REST interface to automate the test of a TI-Messenger client implementation.
5-
version: 0.9.1
5+
version: 0.9.2
66
contact:
77
name: gematik GmbH
88
email: software-development@gematik.de
@@ -2439,18 +2439,22 @@ components:
24392439
type: array
24402440
items:
24412441
$ref: "#/components/schemas/FhirReference"
2442+
telecom:
2443+
type: array
2444+
items:
2445+
$ref: "#/components/schemas/FhirTelecom"
24422446
endpoint:
24432447
type: array
24442448
items:
24452449
$ref: "#/components/schemas/FhirReference"
24462450
serviceProvisionCode:
24472451
type: array
24482452
items:
2449-
$ref: "#/components/schemas/FhirCoding"
2453+
$ref: "#/components/schemas/FhirCodeableConcept"
24502454
communication:
24512455
type: array
24522456
items:
2453-
$ref: "#/components/schemas/FhirCoding"
2457+
$ref: "#/components/schemas/FhirCodeableConcept"
24542458
appointmentRequired:
24552459
type: boolean
24562460
description: "Is an appointment mandatory"
@@ -2541,7 +2545,7 @@ components:
25412545
payloadType:
25422546
type: array
25432547
items:
2544-
$ref: "#/components/schemas/FhirCodingEntry"
2548+
$ref: "#/components/schemas/FhirCodeableConcept"
25452549

25462550
FhirPractitioner:
25472551
allOf:
@@ -2555,6 +2559,10 @@ components:
25552559
type: array
25562560
items:
25572561
$ref: "#/components/schemas/FhirName"
2562+
telecom:
2563+
type: array
2564+
items:
2565+
$ref: '#/components/schemas/FhirTelecom'
25582566

25592567
FhirAvailableTimes:
25602568
type: object
@@ -2664,14 +2672,17 @@ components:
26642672
items:
26652673
$ref: "#/components/schemas/FhirCoding"
26662674

2667-
FhirCodingEntry:
2675+
FhirCodeableConcept:
26682676
description: "Coding object"
26692677
type: object
26702678
properties:
26712679
coding:
26722680
type: array
26732681
items:
26742682
$ref: "#/components/schemas/FhirCoding"
2683+
text:
2684+
type: string
2685+
description: "Plain text representation of the concept"
26752686

26762687
FhirCoding:
26772688
description: "Coding object"
@@ -2687,6 +2698,23 @@ components:
26872698
type: string
26882699
example: "TI-Messenger chat"
26892700

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+
26902718
FhirConnectionType:
26912719
type: object
26922720
properties:

0 commit comments

Comments
 (0)