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
I think in several places in the schema, we assumed that not required properties were equivalent to nullable: true
But according to JSON schema validation, this is not true. It appears that a non-required property that is not explicitly defined to be nullable: true can fail validation if it is null.
TODO: Check all properties and define them all as nullable: true or nullable: false to avoid this ambiguity.
The text was updated successfully, but these errors were encountered:
I think in several places in the schema, we assumed that not required properties were equivalent to nullable: true
But according to JSON schema validation, this is not true. It appears that a non-required property that is not explicitly defined to be
nullable: true
can fail validation if it is null.TODO: Check all properties and define them all as
nullable: true
ornullable: false
to avoid this ambiguity.The text was updated successfully, but these errors were encountered: