You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When combining schemas such as when multiple extensions have schemas for package.json we use 'allOf' to combine.
This works well as long as none of the schemas uses additionalProperties: false.
I believe this is the correct functionality of JSON Schema.
When adding "additionalProperties": false, in combination of "allOf" it will not validate. When the first schema is validated in allOf it will fail as there are additionalProperties. After this the allOf validation is done.
When combining schemas such as when multiple extensions have schemas for package.json we use 'allOf' to combine.
This works well as long as none of the schemas uses additionalProperties: false.
The text was updated successfully, but these errors were encountered: