= URITranslatorConfiguration.newBuilder()
.addSchemaRedirect(FROM, TO).freeze();
final LoadingConfiguration cfg = LoadingConfiguration.newBuilder()
.setURITranslatorConfiguration(translatorCfg).freeze();
final JsonSchemaFactory factory = JsonSchemaFactory.newBuilder()
.setLoadingConfiguration(cfg).freeze();
final JsonSchema schema = factory.getJsonSchema(FROM);
ProcessingReport report;
report = schema.validate(good);
System.out.println(report);