Skip to content
Snippets Groups Projects
Verified Commit 94e607d8 authored by Robin Sander's avatar Robin Sander
Browse files

feat: add senderAccessRestricted to destination schema (planning#2534)

parent 7b427fad
No related branches found
No related tags found
No related merge requests found
......@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased
* Erweiterung des destination Schemas um `senderAccessRestricted` ([planning#2534](https://git.fitko.de/fit-connect/planning/-/issues/2534)).
## [1.5.0]
### Added
......
type: string
format: uuid
minLength: 32
maxLength: 36
description: Die UUID eines Clients
......@@ -32,3 +32,5 @@ properties:
$ref: './supported-metadata-versions.yaml'
replyChannels:
$ref: './reply-channels.yaml'
senderAccessRestricted:
$ref: './destination-sender-access-restricted.yaml'
......@@ -25,3 +25,5 @@ properties:
$ref: './supported-metadata-versions.yaml'
replyChannels:
$ref: './reply-channels.yaml'
senderAccessRestricted:
$ref: './destination-sender-access-restricted.yaml'
......@@ -37,3 +37,5 @@ properties:
$ref: './contact-information.yaml'
callback:
$ref: './callback-url.yaml'
senderAccessRestricted:
$ref: './destination-sender-access-restricted.yaml'
......@@ -38,3 +38,5 @@ properties:
$ref: './contact-information.yaml'
callback:
$ref: './callback-url.yaml'
senderAccessRestricted:
$ref: './destination-sender-access-restricted.yaml'
......@@ -31,5 +31,7 @@ properties:
uniqueItems: true
items:
$ref: './destination-service.yaml'
senderAccessRestricted:
$ref: './destination-sender-access-restricted.yaml'
status:
$ref: './destination-status.yaml'
type: object
required:
- enabled
- allowedSenders
properties:
enabled:
type: boolean
description: |
Gibt an, ob das Senden an diesen Zustellpunkt beschränkt ist oder nicht.
Falls `true` dürfen ausschließlich clients, deren ID in `allowedSenders` enthalten ist,
an diesen Zustellpunkt senden.
allowedSenders:
type: array
items:
$ref: './client-id.yaml'
description: |
Auflistung der client IDs, die an diesen Zustellpunkt senden dürfen.
Die clients müssen existieren und vom Typ `SENDER` sein.
minItems: 0
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment