eclipse-vertx / vertx-json-schema

Vert.x Json Schema
Other
78 stars 32 forks source link

feat: Adding basic error type support for output units. #133

Closed CheesyBoy123 closed 3 months ago

CheesyBoy123 commented 5 months ago

Motivation:

As described in https://github.com/eclipse-vertx/vertx-json-schema/issues/132 we want to add support for OutputErrorTypes. Whenever we have an error there should be some kind of error type associated. For instance if the field is required but is missing we should return back the error type of MISSING_VALUE.

For recursive error checks like $ref, $anyOf, $not etc, the error type is taken from the recursive OutputUnit. For primitive checks like array length checks, format validation, required checks etc I have added what I believe the correct Error Type should be.

Conformance:

You should have signed the Eclipse Contributor Agreement as explained in https://github.com/eclipse/vert.x/blob/master/CONTRIBUTING.md Please also make sure you adhere to the code style guidelines: https://github.com/vert-x3/wiki/wiki/Vert.x-code-style-guidelines

CheesyBoy123 commented 3 months ago

Probably the best to have some documentation. I've added a little bit to it, let me know what you think!