fdutton
fdutton
@fei33423 Are you willing to submit a pull request?
The validators get loaded into a TreeMap and sorted based on the type of validation performed. This is done because the standard requires that some validations be performed before others....
@alexruf This is intentional (#778) and exists to support Cross-draft validation. This allows a schema written against a newer version to reference a schema written against an older version.
Let me see what I can do.
@alturkovic This project focuses on validation and is not really suitable for transformations. You may be able to achieve your goal by using walkers, listeners and collectors but I suspect...
I'll write some unit-tests but this is what I am doing to work around the issue. ``` // Joni is too liberal on some constructs String s = regex .replace("\\d",...