2022-09-06 11:07:08 +02:00
|
|
|
|
|
|
|
components:
|
|
|
|
|
|
|
|
schemas:
|
|
|
|
|
2022-09-20 14:17:12 +02:00
|
|
|
HsOfficeContact:
|
2022-09-06 11:07:08 +02:00
|
|
|
type: object
|
|
|
|
properties:
|
2022-09-20 14:17:12 +02:00
|
|
|
uuid:
|
|
|
|
type: string
|
|
|
|
format: uuid
|
2022-09-06 11:07:08 +02:00
|
|
|
label:
|
|
|
|
type: string
|
|
|
|
postalAddress:
|
|
|
|
type: string
|
|
|
|
emailAddresses:
|
|
|
|
type: string
|
|
|
|
phoneNumbers:
|
|
|
|
type: string
|
|
|
|
|
2022-09-20 14:17:12 +02:00
|
|
|
HsOfficeContactInsert:
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
label:
|
|
|
|
type: string
|
|
|
|
postalAddress:
|
|
|
|
type: string
|
|
|
|
emailAddresses:
|
|
|
|
type: string
|
|
|
|
phoneNumbers:
|
|
|
|
type: string
|
|
|
|
required:
|
|
|
|
- label
|
2022-09-06 11:07:08 +02:00
|
|
|
|
2022-09-20 14:17:12 +02:00
|
|
|
HsOfficeContactPatch:
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
label:
|
|
|
|
type: string
|
|
|
|
nullable: true
|
|
|
|
postalAddress:
|
|
|
|
type: string
|
|
|
|
nullable: true
|
|
|
|
emailAddresses:
|
|
|
|
type: string
|
|
|
|
nullable: true
|
|
|
|
phoneNumbers:
|
|
|
|
type: string
|
|
|
|
nullable: true
|