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