NestJS exposes entity/DTO classes decorated with @ApiProperty
to Swagger UI schemas. CLI Plugin automates it for all class files by default with suffixes ['.dto.ts', '.entity.ts']. Prisma schema, unfortunately, is not defined in terms of class thus cannot be decorated.
Without violating DRY principle by duplicating Prisma schema in another format, be it class or raw OpenAPI specs, how to expose it to swagger UI?