/*
* If not OK, check the subschemas
*/
final ObjectNode fullReport = FACTORY.objectNode();
final SchemaTree tree = data.getSchema();
final JsonPointer schemaPointer = tree.getPointer();
ListProcessingReport subReport;
JsonPointer ptr;
FullData newData;
int nrSuccess = 0;
for (final int index: schemas) {
subReport = new ListProcessingReport(report.getLogLevel(),
LogLevel.FATAL);
ptr = schemaPointer.append(JsonPointer.of(keyword, index));
newData = data.withSchema(tree.setPointer(ptr));
processor.process(subReport, newData);
fullReport.put(ptr.toString(), subReport.asJson());
if (subReport.isSuccess())
nrSuccess++;
}
/*