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 just need to be able to pass special characters like (: < >&&..) on Query param for request,
Like for example following implementation for @paramter: @Parameter( in = ParameterIn.QUERY, description = "Enter search query.", name = "search", schema = @Schema( type = "string", pattern = "name:value", defaultValue = "name:value" ) )
But when i make request from UI, this pattren (name:value) converted into (name%3Avalue) and this will not give me correct response.
So is there any way to force Swagger to accept these special symbols on URLs ?