I'm using springboot with rest assured, I was trying some examples, first ones works fine, only I'm having problems when testing with JSON Schema Validation, it thrown me this error:
java.lang.IllegalArgumentException: Schema to use cannot be null
In documentation says that schema file should be located in the classpath, I think there but not working anyway, someone would help me please? thanks in advance :)
Here is where is located currently my schema example.

and here is my code:
given().
contentType("application/json").
when().
get("http://myExample/users").
then().
assertThat().body(matchesJsonSchemaInClasspath("example_schema.json"));