in schema-induction/src/main/java/aws/json/schema/induction/JsonSchemaGenerator.java [108:114]
protected JsonSchema getJsonSchemaFromClasspath(String name) throws Exception {
JsonSchemaFactory factory = JsonSchemaFactory.getInstance(SpecVersion.VersionFlag.V6);
InputStream is = Thread.currentThread().getContextClassLoader()
.getResourceAsStream(name);
JsonSchema schema = factory.getSchema(is);
return schema;
}