Files
sendico/interface/models/account/account_public.yaml
2026-02-24 21:26:31 +03:00

27 lines
685 B
YAML

components:
schemas:
AccountPublic:
allOf:
- $ref: ../storable.yaml#/components/schemas/Storable
- $ref: ../common/describable.yaml#/components/schemas/Describable
- type: object
additionalProperties: false
required:
- login
- locale
- lastName
- isArchived
properties:
login:
type: string
format: email
locale:
type: string
lastName:
type: string
avatarUrl:
type: string
nullable: true
isArchived:
type: boolean