-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed FhirStructure, HS_serviceProvisionCode, HS_communication and… (
#213) * Changed FhirStructure, HS_serviceProvisionCode, HS_communication and Endpoint_payloadType changed to FhirCodeableConcept * added telecom
- Loading branch information
Showing
2 changed files
with
35 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ openapi: 3.0.3 | |
info: | ||
title: TiMessengerTestDriver | ||
description: REST interface to automate the test of a TI-Messenger client implementation. | ||
version: 0.9.1 | ||
version: 0.9.2 | ||
contact: | ||
name: gematik GmbH | ||
email: [email protected] | ||
|
@@ -2439,18 +2439,22 @@ components: | |
type: array | ||
items: | ||
$ref: "#/components/schemas/FhirReference" | ||
telecom: | ||
type: array | ||
items: | ||
$ref: "#/components/schemas/FhirTelecom" | ||
endpoint: | ||
type: array | ||
items: | ||
$ref: "#/components/schemas/FhirReference" | ||
serviceProvisionCode: | ||
type: array | ||
items: | ||
$ref: "#/components/schemas/FhirCoding" | ||
$ref: "#/components/schemas/FhirCodeableConcept" | ||
communication: | ||
type: array | ||
items: | ||
$ref: "#/components/schemas/FhirCoding" | ||
$ref: "#/components/schemas/FhirCodeableConcept" | ||
appointmentRequired: | ||
type: boolean | ||
description: "Is an appointment mandatory" | ||
|
@@ -2541,7 +2545,7 @@ components: | |
payloadType: | ||
type: array | ||
items: | ||
$ref: "#/components/schemas/FhirCodingEntry" | ||
$ref: "#/components/schemas/FhirCodeableConcept" | ||
|
||
FhirPractitioner: | ||
allOf: | ||
|
@@ -2555,6 +2559,10 @@ components: | |
type: array | ||
items: | ||
$ref: "#/components/schemas/FhirName" | ||
telecom: | ||
type: array | ||
items: | ||
$ref: '#/components/schemas/FhirTelecom' | ||
|
||
FhirAvailableTimes: | ||
type: object | ||
|
@@ -2664,14 +2672,17 @@ components: | |
items: | ||
$ref: "#/components/schemas/FhirCoding" | ||
|
||
FhirCodingEntry: | ||
FhirCodeableConcept: | ||
description: "Coding object" | ||
type: object | ||
properties: | ||
coding: | ||
type: array | ||
items: | ||
$ref: "#/components/schemas/FhirCoding" | ||
text: | ||
type: string | ||
description: "Plain text representation of the concept" | ||
|
||
FhirCoding: | ||
description: "Coding object" | ||
|
@@ -2687,6 +2698,23 @@ components: | |
type: string | ||
example: "TI-Messenger chat" | ||
|
||
FhirTelecom: | ||
description: "Coding object" | ||
type: object | ||
properties: | ||
system: | ||
type: string | ||
example: "phone" | ||
description: "one of phone | fax | email | pager | url | sms | other" | ||
value: | ||
type: string | ||
example: "030-606 06 60" | ||
description: "the actual value" | ||
use: | ||
type: string | ||
example: "work" | ||
description: "home | work | temp | old | mobile - purpose of this contact point" | ||
|
||
FhirConnectionType: | ||
type: object | ||
properties: | ||
|