50 lines
1.3 KiB
YAML
50 lines
1.3 KiB
YAML
|
|
components:
|
|
|
|
schemas:
|
|
|
|
HsOfficeContact:
|
|
type: object
|
|
properties:
|
|
uuid:
|
|
type: string
|
|
format: uuid
|
|
label:
|
|
type: string
|
|
postalAddress:
|
|
type: string
|
|
emailAddresses:
|
|
type: string
|
|
phoneNumbers:
|
|
type: string
|
|
|
|
HsOfficeContactInsert:
|
|
type: object
|
|
properties:
|
|
label:
|
|
type: string
|
|
postalAddress:
|
|
type: string
|
|
emailAddresses:
|
|
type: string
|
|
phoneNumbers:
|
|
type: string
|
|
required:
|
|
- label
|
|
|
|
HsOfficeContactPatch:
|
|
type: object
|
|
properties:
|
|
label:
|
|
type: string
|
|
nullable: true
|
|
postalAddress:
|
|
type: string
|
|
nullable: true
|
|
emailAddresses:
|
|
type: string
|
|
nullable: true
|
|
phoneNumbers:
|
|
type: string
|
|
nullable: true
|