GithubHelp home page GithubHelp logo

Comments (3)

justin-tay avatar justin-tay commented on May 27, 2024

This is happening because I have some logic to determine if annotations need to be collected for evaluation and one of the checks is checking if the unevaluatedProperties keyword exists in the meta-schema. In this case the schema at https://geojson.org/schema/Point.json is a Draft 7 schema so it doesn't collect the annotations. It sounds like I may need to remove that check.

As a workaround you can switch on annotation collection.

        String schemaData = "{\r\n"
                + "  \"$schema\": \"https://json-schema.org/draft/2020-12/schema\",\r\n"
                + "  \"$ref\": \"https://geojson.org/schema/Point.json\",\r\n"
                + "  \"unevaluatedProperties\": false\r\n"
                + "}";
        
        String inputData = "{\r\n"
                + "  \"type\": \"Point\",\r\n"
                + "  \"coordinates\": [1, 1]\r\n"
                + "}";
        JsonSchemaFactory factory = JsonSchemaFactory.getInstance(VersionFlag.V202012);
        SchemaValidatorsConfig config = new SchemaValidatorsConfig();
        config.setPathType(PathType.JSON_POINTER);
        JsonSchema schema = factory.getSchema(schemaData, config);
        System.out.println(schema.validate(inputData, InputFormat.JSON, OutputFormat.HIERARCHICAL, executionContext -> {
            executionContext.getExecutionConfig().setAnnotationCollectionEnabled(true);
            executionContext.getExecutionConfig().setAnnotationCollectionPredicate(keyword -> true);
        }));

The results if annotation collection is turned on.

{
  "valid" : true,
  "evaluationPath" : "",
  "schemaLocation" : "#",
  "instanceLocation" : "",
  "annotations" : {
    "unevaluatedProperties" : [ ]
  },
  "details" : [ {
    "valid" : true,
    "evaluationPath" : "/$ref",
    "schemaLocation" : "https://geojson.org/schema/Point.json#",
    "instanceLocation" : "",
    "annotations" : {
      "properties" : [ "type", "coordinates" ],
      "title" : "GeoJSON Point"
    },
    "details" : [ {
      "valid" : true,
      "evaluationPath" : "/$ref/properties/coordinates",
      "schemaLocation" : "https://geojson.org/schema/Point.json#/properties/coordinates",
      "instanceLocation" : "/coordinates",
      "annotations" : {
        "items" : true
      }
    } ]
  } ]
}

from json-schema-validator.

aznan2 avatar aznan2 commented on May 27, 2024

Thanks! I tried making a copy of the Point schema locally and change it to 2020-12, but I still get the same thing. As for the annotation collection, the setAnnotationCollectionEnabled() method is protected, so it can't be accessed.

from json-schema-validator.

justin-tay avatar justin-tay commented on May 27, 2024

Must have used the wrong access modifier by mistake. Shall also fix that.

from json-schema-validator.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.