31 lines
790 B
YAML
31 lines
790 B
YAML
components:
|
|
schemas:
|
|
Recipient:
|
|
allOf:
|
|
- $ref: ../permission_bound.yaml#/components/schemas/PermissionBound
|
|
- $ref: ../common/describable.yaml#/components/schemas/Describable
|
|
- type: object
|
|
additionalProperties: false
|
|
required:
|
|
- email
|
|
- status
|
|
- type
|
|
properties:
|
|
email:
|
|
type: string
|
|
format: email
|
|
avatarUrl:
|
|
type: string
|
|
nullable: true
|
|
status:
|
|
type: string
|
|
enum:
|
|
- ready
|
|
- registered
|
|
- notRegistered
|
|
type:
|
|
type: string
|
|
enum:
|
|
- internal
|
|
- external
|