Having a field like this, I would expect it to be present in the json schema, but it is not, when the Jackson module is enabled:
class MyDto {
private String aField;
public int getAField() {
return aField;
}
}
I saw that FieldScope already has some special handling to support these getters, but the field will be filtered here:
|
.noneMatch(propertyDefinition -> declaredName.equals(propertyDefinition.getInternalName()) |
I prepared a failing test and a workaround in this PR. Feel free to modify to your liking.