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

29 lines
721 B
YAML
Raw Normal View History

components:
schemas:
HsAdminContactBase:
type: object
properties:
label:
type: string
postalAddress:
type: string
emailAddresses:
type: string
phoneNumbers:
type: string
HsAdminContact:
allOf:
- type: object
properties:
uuid:
type: string
format: uuid
- $ref: '#/components/schemas/HsAdminContactBase'
HsAdminContactUpdate:
$ref: '#/components/schemas/HsAdminContactBase'