io.openapiprocessor.jsonschema.validator.README.adoc Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-schema-validator Show documentation
Show all versions of json-schema-validator Show documentation
OpenAPI Parser JSON-Schema Validator
= Drafts
== Draft 4
* https://tools.ietf.org/html/draft-zyp-json-schema-04
* https://tools.ietf.org/html/draft-fge-json-schema-validation-00
* https://tools.ietf.org/html/draft-luff-json-hyper-schema-00
* https://tools.ietf.org/html/draft-pbryan-zyp-json-ref-03
while (instance.isRef()) {
}
/*
while (instance.isRef()) {
URI refKey = instance.getRefKey ();
if (visited.contains (refKey))
break;
visited.add (refKey);
instance = instance.getRefInstance ();
InstanceRefStep refStep = new InstanceRefStep (instance);
step.add (refStep);
step = refStep;
}*/