I have a model for response in Scala:
case class ModelDto(
...
map: Map[UUID, AnotherDto]
...
)
How can I document this using annotations @Schema or @ArraySchema or smth like that?
Have no yml file and all fields describing using only Schema|ArraySchema like this:
case class ModelDto(
@Schema(description = "field description", required = true, `type` = "string", example = "field example")
field: String
)