diff --git a/spec/schemas/destination-possible-next-status-optional.yaml b/spec/schemas/destination-possible-next-status-optional.yaml new file mode 100644 index 0000000000000000000000000000000000000000..d0ceaedbb1c87cd880fba27f62cffc943637d485 --- /dev/null +++ b/spec/schemas/destination-possible-next-status-optional.yaml @@ -0,0 +1,5 @@ +type: ['null', array] +items: + $ref: './destination-status.yaml' +minItems: 0 +description: Eine Liste von möglichen nächsten Status des Zustellpunktes, ausgehend vom aktuellen Zustand des Zustellpunktes. Eine Beschreibung der Status finden Sie in den Detailinformationen unter [Zustellpunktverwaltung](https://docs.fitko.de/fit-connect/docs/details/destination-management). diff --git a/spec/schemas/destination-possible-next-status.yaml b/spec/schemas/destination-possible-next-status.yaml new file mode 100644 index 0000000000000000000000000000000000000000..66ef3b6704ebd072a3811500d73e493f051b74f1 --- /dev/null +++ b/spec/schemas/destination-possible-next-status.yaml @@ -0,0 +1,5 @@ +type: array +items: + $ref: './destination-status.yaml' +minItems: 0 +description: Eine Liste von möglichen nächsten Status des Zustellpunktes, ausgehend vom aktuellen Zustand des Zustellpunktes. Eine Beschreibung der Status finden Sie in den Detailinformationen unter [Zustellpunktverwaltung](https://docs.fitko.de/fit-connect/docs/details/destination-management). diff --git a/spec/schemas/destination-private-or-public.yaml b/spec/schemas/destination-private-or-public.yaml index 4255d56a3578b5b6de2a241af72489d2de313c46..5dc50fba649e4d73efe83d1c42349547ba277a7c 100644 --- a/spec/schemas/destination-private-or-public.yaml +++ b/spec/schemas/destination-private-or-public.yaml @@ -27,6 +27,8 @@ properties: $ref: './destination-service.yaml' status: $ref: './destination-status.yaml' + possibleNextStatus: + $ref: './destination-possible-next-status-optional.yaml' name: $ref: './destination-name.yaml' clientCount: diff --git a/spec/schemas/destination-private.yaml b/spec/schemas/destination-private.yaml index 433255b6075ac35ae6ca17ae8f30a562222cd267..b109f6327801689dbe0f17b38c2fef02d45f51fc 100644 --- a/spec/schemas/destination-private.yaml +++ b/spec/schemas/destination-private.yaml @@ -28,6 +28,8 @@ properties: $ref: './destination-service.yaml' status: $ref: './destination-status.yaml' + possibleNextStatus: + $ref: './destination-possible-next-status.yaml' name: $ref: './destination-name.yaml' clientCount: diff --git a/spec/schemas/destination-put.yaml b/spec/schemas/destination-put.yaml index 82e226852d0132c607427dad47055c0d75194c9c..29dde908fec6e7a9ee2bbd8ff976703020c1fb90 100644 --- a/spec/schemas/destination-put.yaml +++ b/spec/schemas/destination-put.yaml @@ -16,6 +16,8 @@ properties: $ref: './create-callback.yaml' destinationId: $ref: './destination-id.yaml' + possibleNextStatus: + $ref: './destination-possible-next-status-optional.yaml' encryptionKid: type: string maxLength: 64