GithubHelp home page GithubHelp logo

Comments (3)

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

Your schema isn't valid JSON, and you didn't post your input data, so it's hard to narrow down the issue.

If your property is present in the input data but is null, then what you are seeing is expected behavior and I don't think the version matters.

Given this schema

{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "header": {
      "type": "object",
      "properties": {
        "order": {
          "type": "string"
        },
        "customer": {
          "type": "string"
        },
        "customerName": {
          "type": "string"
        },
        "orderDate": {
          "type": "string"
        }
      },
      "required": [
        "order",
        "customer",
        "customerName",
        "orderDate"
      ]
    }
  },
  "required": [
    "header"
  ]
}

Test 1

Data

{}

Messages

$: required property 'header' not found

Test 2

Data

{
  "header": {}
}

Messages

$.header: required property 'order' not found
$.header: required property 'customer' not found
$.header: required property 'customerName' not found
$.header: required property 'orderDate' not found

Test 3

Data

{
  "header": {
    "customer": null
  }
}

Messages

$.header.customer: null found, string expected
$.header: required property 'order' not found
$.header: required property 'customerName' not found
$.header: required property 'orderDate' not found

from json-schema-validator.

dure0520 avatar dure0520 commented on May 23, 2024

Sorry, I our schema is a little more complex and I was just trying to simplify it some. I am using SpringBoot and have mapped request objects to the JSON object. After some further expperimentation, I have now discovered that Java is setting the value of missing JSON properties to null in the mapped Java request object. I will have to see if I can change that behavior somehow.

Your validator IS working as expected. Thanks for your help as it lead me to discover the real problem.

from json-schema-validator.

stevehu avatar stevehu commented on May 23, 2024

Given @dure0520's comment, close this issue. Thanks.

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.