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
However at no point in the schema is the field marked as required so that this validation applies. This poses a problem since the default value is true.
We need to make a change so this field has to be present. Adding it to the required arrays where necessary is one possible avenue.
The text was updated successfully, but these errors were encountered:
However, if we forced "additionalProperties": false on every subSchema, we would also have to put "additionalProperties": false on the SomeProperty schema, and since no properties are defined there it would break.
At several points in the schema, there are JSON schema blocks that force additionalProperties to be false:
https://github.com/aws-cloudformation/aws-cloudformation-resource-schema/blob/6db79a6253e65ee97c55aacfdb7c67f408d2d573/src/main/resources/schema/provider.definition.schema.v1.json#L167-L171
However at no point in the schema is the field marked as required so that this validation applies. This poses a problem since the default value is true.
We need to make a change so this field has to be present. Adding it to the
required
arrays where necessary is one possible avenue.The text was updated successfully, but these errors were encountered: