Files
sendico/interface/models/organization/organization.yaml
2026-03-02 16:27:33 +01:00

30 lines
828 B
YAML

components:
schemas:
OrganizationBase:
allOf:
- $ref: ../permission_bound.yaml#/components/schemas/PermissionBound
- $ref: ../common/describable.yaml#/components/schemas/Describable
- type: object
additionalProperties: false
required:
- timeZone
properties:
timeZone:
type: string
logoUrl:
type: string
nullable: true
Organization:
allOf:
- $ref: ./organization.yaml#/components/schemas/OrganizationBase
- type: object
additionalProperties: false
required:
- members
properties:
members:
type: array
items:
$ref: ../objectid.yaml#/components/schemas/ObjectId