hs.hsadmin.ng/src/main/resources/api-definition/hs-office/hs-office-contact-schemas.yaml

50 lines
1.3 KiB
YAML
Raw Normal View History

components:
schemas:
2022-09-20 14:17:12 +02:00
HsOfficeContact:
type: object
properties:
2022-09-20 14:17:12 +02:00
uuid:
type: string
format: uuid
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-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