Skip to content

Commit

Permalink
Changed FhirStructure, HS_serviceProvisionCode, HS_communication and… (
Browse files Browse the repository at this point in the history
#213)

* Changed FhirStructure, HS_serviceProvisionCode, HS_communication and Endpoint_payloadType changed to FhirCodeableConcept

* added telecom
  • Loading branch information
TVRiddle authored Aug 28, 2023
1 parent 84b25ed commit b888605
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ image::meta/gematik_logo.svg[gematik,width="70%"]

image:https://img.shields.io/badge/Release%20Notes-v1.1.1-red?style=plastic&logo=github&logoColor=red[link="ReleaseNotes.md"] +
image:https://img.shields.io/badge/I_TiMessengerContactManagement-v1.0.1-blue?style=plastic&logo=github&logoColor=blue[link=/src/openapi/TiMessengerContactManagement.yaml"] +
image:https://img.shields.io/badge/TiMessengerTestDriver-v0.9.1-purple?style=plastic&logo=github&logoColor=purple[link="/src/openapi/TiMessengerTestTreiber.yaml"]
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"] +
image:https://img.shields.io/badge/TiMessengerTestDriver-v0.9.2-purple?style=plastic&logo=github&logoColor=purple[link="/src/openapi/TiMessengerTestTreiber.yaml"]
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"] +
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"]
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"]
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"] +
Expand Down
38 changes: 33 additions & 5 deletions src/openapi/TiMessengerTestTreiber.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down Expand Up @@ -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"
Expand Down Expand Up @@ -2541,7 +2545,7 @@ components:
payloadType:
type: array
items:
$ref: "#/components/schemas/FhirCodingEntry"
$ref: "#/components/schemas/FhirCodeableConcept"

FhirPractitioner:
allOf:
Expand All @@ -2555,6 +2559,10 @@ components:
type: array
items:
$ref: "#/components/schemas/FhirName"
telecom:
type: array
items:
$ref: '#/components/schemas/FhirTelecom'

FhirAvailableTimes:
type: object
Expand Down Expand Up @@ -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"
Expand All @@ -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:
Expand Down

0 comments on commit b888605

Please sign in to comment.