Add the `@Present` annotation mentioned in [handling of openapiNullable+required](https://github.com/OpenAPITools/openapi-generator/pull/247116) Sample code: ``` public class PresentValidator implements ConstraintValidator<Present, JsonNullable<?>> { @Override public boolean isValid(JsonNullable<?> value, ConstraintValidatorContext context) { return value != null && value.isPresent(); } } ```
Add the
@Presentannotation mentioned in handling of openapiNullable+requiredSample code: