All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.openapiprocessor.jsonschema.validator.README.adoc Maven / Gradle / Ivy

There is a newer version: 2024.4
Show newest version
= 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;
        }*/




© 2015 - 2024 Weber Informatics LLC | Privacy Policy