}
String schemastr = inschema.value(opts);
String schemafile = file.value(opts);
if (schemastr == null && schemafile == null) {
err.println("Need an input schema file (--schema-file) or inline schema (--schema)");
p.printHelpOn(err);
return 1;
}
Schema schema = (schemafile != null)
? new Schema.Parser().parse(Util.openFromFS(schemafile))
: new Schema.Parser().parse(schemastr);