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
If both the old and new values of maxItems are null, there are no changes. This means the schema does not impose any maximum item constraint in both versions.
If either the old or new value of maxItems is null, the change is considered compatible. This is because removing or adding a maximum item constraint does not break existing clients.
If the new value of maxItems is less than the old value, the change is considered incompatible. This is because reducing the maximum number of items allowed can break existing clients that rely on the higher limit.
In all other cases, the change is considered compatible. This includes scenarios where the new value is greater than or equal to the old value, as it does not restrict existing clients further.
minItems Changes
If both the old and new values of minItems are null, there are no changes. This means the schema does not impose any minimum item constraint in both versions.
If either the old or new value of minItems is null, the change is considered compatible. This is because removing or adding a minimum item constraint does not break existing clients.
If the new value of minItems is greater than the old value, the change is considered incompatible. This is because increasing the minimum number of items required can break existing clients that provide fewer items.
In all other cases, the change is considered compatible. This includes scenarios where the new value is less than or equal to the old value, as it does not impose additional requirements on existing clients.
Currently adding/removing/changing 'minItems' or 'maxItems' is not detected.
V1
V1 (Added 'maxItems')
Same applies to 'minItems' or changing/removing the values.
The text was updated successfully, but these errors were encountered: