Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix jsonschema test #839

Open
shadowpigy opened this issue Sep 1, 2024 · 0 comments
Open

fix jsonschema test #839

shadowpigy opened this issue Sep 1, 2024 · 0 comments
Labels
enhancement New feature or request

Comments

@shadowpigy
Copy link
Contributor

The jsonschema tests are outdated.

The main difference is that the properties field is now omitempty.
Another problem is that the last test case with regard to array is incorrect. The following is not a valid json schema. The properties keyword should be nested within an object type, not at the root level of an array type.

{
   "type":"array",
   "items":{
      "type":"string",
      "properties":{
         
      }
   },
   "properties":{
      "name":{
         "type":"string",
         "properties":{}
      }
   }
}
@shadowpigy shadowpigy added the enhancement New feature or request label Sep 1, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant