Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TIM-TS 446: allow FHIR enum state "off" #234

Merged
merged 3 commits into from
Apr 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

# Release Notes api-ti-messenger

## Hotfix 1.1.1-8

### changed

- changed FHIR status inactive to "off" to be FHIR compliant

## Hotfix 1.1.1-7

### changed
Expand Down
4 changes: 2 additions & 2 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.5
version: 0.9.6
contact:
name: gematik GmbH
email: software-development@gematik.de
Expand Down Expand Up @@ -2661,7 +2661,7 @@ components:
type: string
description: "Status of the ressource"
example: "active"
enum: [ active, suspended, inactive ]
enum: [ active, suspended, "off" ]
address:
description: "For endpoint in tim context the mxid in uri scheme"
type: string
Expand Down