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

validation mishandles anyOf #354

Open
wcarmon opened this issue Aug 1, 2022 · 0 comments
Open

validation mishandles anyOf #354

wcarmon opened this issue Aug 1, 2022 · 0 comments

Comments

@wcarmon
Copy link

wcarmon commented Aug 1, 2022

bug in conditional:

if currentSubSchema.types.IsTyped() && !currentSubSchema.types.Contains(TYPE_OBJECT) {

currentSubSchema.types.Contains(TYPE_OBJECT) returns the wrong value. It should check the items in the anyOf array

...
          "anyOf": [
            {
              "type": "null"
            },
            {
              "additionalProperties": false,
              "properties": {
                "value": {
                  "anyOf": [
                    {
                      "type": "boolean"
                    },
                    {
                      "type": "number"
                    }
                  ]
                }
              },
              "type": "object"
            }
          ]      
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant