-
Notifications
You must be signed in to change notification settings - Fork 35.3k
Closed
Closed
Copy link
Labels
feature-requestRequest for new features or functionalityRequest for new features or functionalityjsonJSON support issuesJSON support issues
Milestone
Description
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.
{
"allOf": [
{
"type": "object",
"additionalProperties": false,
"properties": {
"bar": {
"description": "bar"
},
"foo": {
"description": "foo" }
}
},
{
"type": "object",
"additionalProperties": false,
"properties": {
"xoo": {
"description": "xoo"
}
}
}
]
}
guardrex, siphomateke, vojtechhabarta, philfontaine, lukaszpolowczyk and 7 more
Metadata
Metadata
Assignees
Labels
feature-requestRequest for new features or functionalityRequest for new features or functionalityjsonJSON support issuesJSON support issues