2022-09-06 11:07:08 +02:00
|
|
|
|
|
|
|
components:
|
|
|
|
|
|
|
|
schemas:
|
|
|
|
|
2022-09-13 13:27:52 +02:00
|
|
|
HsOfficeContactBase:
|
2022-09-06 11:07:08 +02:00
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
label:
|
|
|
|
type: string
|
|
|
|
postalAddress:
|
|
|
|
type: string
|
|
|
|
emailAddresses:
|
|
|
|
type: string
|
|
|
|
phoneNumbers:
|
|
|
|
type: string
|
|
|
|
|
2022-09-13 13:27:52 +02:00
|
|
|
HsOfficeContact:
|
2022-09-06 11:07:08 +02:00
|
|
|
allOf:
|
|
|
|
- type: object
|
|
|
|
properties:
|
|
|
|
uuid:
|
|
|
|
type: string
|
|
|
|
format: uuid
|
2022-09-13 13:27:52 +02:00
|
|
|
- $ref: '#/components/schemas/HsOfficeContactBase'
|
2022-09-06 11:07:08 +02:00
|
|
|
|
2022-09-13 13:27:52 +02:00
|
|
|
HsOfficeContactUpdate:
|
|
|
|
$ref: '#/components/schemas/HsOfficeContactBase'
|