Skip to content
master
Go to file
Code

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
src
 
 
 
 
 
 
 
 
 
 
 
 

README.md

Vert.x JSON Schema

Build Status

Architecture

  • SchemaParser: Parses the schemas. It can be used to parse various schemas. Every JSON Schema dialect/version has one
  • SchemaRouter: Contains a cache of parsed schemas and resolve cached/local/external $ref. You can share it across various SchemaParser
  • Validator: Contains validation logic for single/multiple keyword(s)
  • Schema: Represents a schema and contains Validator instances
  • ValidatorFactory: Represents a factory for a Validator

How to use

SchemaRouter router = SchemaRouter.create(vertx)
SchemaParserOptions options = new SchemaParserOptions();
SchemaParser parser = Draft7SchemaParser.create(options, router);
Schema schema = parser.parse(schema, scope);
Future validationResult = schema.validateAsync(objectToValidate);

Or shorthand

Schema schema = Draft7SchemaParser.parse(vertx, schema, scope);
Future validationResult = schema.validateAsync(objectToValidate);

Extend the validator

To support custom keywords, you can create a new ValidatorFactory and register to a SchemaParser with SchemaParserOptions.putAdditionalValidatorFactory()

You can’t perform that action at this time.