Is it possible to validate GET request (no JSON body) against JSON schema? I believe JSON schema allows to specify method GET or POST. Let's say the request is ..../get-user-info?user-id=123. If I define a JSON schema for this request, would it be possible to validate the incoming request against this schema? If yes, can you show an example?
Thank you.