JSON Schema Validation: Difference between revisions
Jump to navigation
Jump to search
Line 42: | Line 42: | ||
==Knowledge== | ==Knowledge== | ||
{| | {| | ||
|valign='top'| | |valign='top' colspan='2'| | ||
https://cdnjs.com/libraries/ajv | https://cdnjs.com/libraries/ajv | ||
https://cdnjs.com/libraries/moment.js | https://cdnjs.com/libraries/moment.js | ||
https://cdnjs.com/libraries/mustache.js | https://cdnjs.com/libraries/mustache.js | ||
https://cdnjs.com/libraries/handlebars.js | https://cdnjs.com/libraries/handlebars.js | ||
|valign=' | |||
closure-compiler --js ./handlebars.js\ | |valign='top'| | ||
closure-compiler\ | |||
--js ./handlebars.js\ | |||
--js_output_file ./handlebars.min.js\ | --js_output_file ./handlebars.min.js\ | ||
--language_out ECMASCRIPT_2015 | --language_out ECMASCRIPT_2015 | ||
|- | |- | ||
|colspan='3'| | |colspan='3'| | ||
Line 60: | Line 59: | ||
|- | |- | ||
|valign='top'| | |valign='top'| | ||
closure-compiler --js ./moment.js\ | closure-compiler\ | ||
--js ./mustache.js\ | |||
--js_output_file ./mustache.min.js\ | |||
--language_out ECMASCRIPT_2015 | |||
|valign='top'| | |||
closure-compiler\ | |||
--js ./moment.js\ | |||
--js_output_file ./moment.min.js\ | --js_output_file ./moment.min.js\ | ||
--language_out ECMASCRIPT_2015 | --language_out ECMASCRIPT_2015 | ||
|valign='top'| | |valign='top'| | ||
closure-compiler --js ./ajv7.js\ | closure-compiler\ | ||
--js ./ajv7.js\ | |||
--js_output_file ./ajv7.min.js\ | --js_output_file ./ajv7.min.js\ | ||
--language_out ECMASCRIPT_2015 | --language_out ECMASCRIPT_2015 | ||
|} | |} |
Revision as of 00:25, 13 July 2022
<dependency>
<groupId>com.networknt</groupId>
<artifactId>json-schema-validator</artifactId>
<version>1.0.42</version>
</dependency>
private static InputStream inputStreamFromClasspath(String path) {
return Thread.currentThread().getContextClassLoader().getResourceAsStream(path);
}
public static void main(String[] args) throws Exception {
ObjectMapper objectMapper = new ObjectMapper();
JsonSchemaFactory schemaFactory = JsonSchemaFactory.getInstance(SpecVersion.VersionFlag.V201909);
try (
InputStream jsonStream = inputStreamFromClasspath("example.json");
InputStream schemaStream = inputStreamFromClasspath("example-schema.json")
) {
JsonNode json = objectMapper.readTree(jsonStream);
JsonSchema schema = schemaFactory.getSchema(schemaStream);
Set<ValidationMessage> validationResult = schema.validate(json);
// print validation errors
if (validationResult.isEmpty()) {
System.out.println("no validation errors :-)");
} else {
validationResult.forEach(vm -> System.out.println(vm.getMessage()));
}
}
}
Schema Naming
Age: Age.schema.json Address: Address.schema.json Account: Account.schema.json Quantity: Quantity.schema.json
Knowledge
https://cdnjs.com/libraries/ajv https://cdnjs.com/libraries/moment.js https://cdnjs.com/libraries/mustache.js https://cdnjs.com/libraries/handlebars.js |
closure-compiler\ --js ./handlebars.js\ --js_output_file ./handlebars.min.js\ --language_out ECMASCRIPT_2015 | |
| ||
closure-compiler\ --js ./mustache.js\ --js_output_file ./mustache.min.js\ --language_out ECMASCRIPT_2015 |
closure-compiler\ --js ./moment.js\ --js_output_file ./moment.min.js\ --language_out ECMASCRIPT_2015 |
closure-compiler\ --js ./ajv7.js\ --js_output_file ./ajv7.min.js\ --language_out ECMASCRIPT_2015 |