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
According to the specifications an empty valued parameter is not equal to the parameter not being present. For required parameters one can use the allowEmptyValue: true/false to (dis)allow ?queryparam=, but for non required query parameters there seems no way to prevent ?queryparam= and ?queryparam(*) from passing the validation.
A small snippet to illustrate the expected behaviour, and how it fails with the current implementation: https://goplay.space/#T58uhnOPA-t
(*) Note that this behaviour (without the =) is also not working as expected for required parameters.
The text was updated successfully, but these errors were encountered:
According to the specifications an empty valued parameter is not equal to the parameter not being present. For required parameters one can use the
allowEmptyValue: true/false
to (dis)allow?queryparam=
, but for non required query parameters there seems no way to prevent?queryparam=
and?queryparam
(*) from passing the validation.A small snippet to illustrate the expected behaviour, and how it fails with the current implementation: https://goplay.space/#T58uhnOPA-t
(*) Note that this behaviour (without the
=
) is also not working as expected for required parameters.The text was updated successfully, but these errors were encountered: