Is it possible to have 2 auth plugins (oauth2 and jwt) in same route?

I have a scenario that I need to migrate my token type, from oauth2 to jwt.

But for that, I need to have a transient period to handle requests with the header “Authorization” containing the both tokens types (oauth2 and jwt). I do not want to create a secondary header to handle the jwt token separately, I need to reuse the Authoriation header.

There is possible to create 1 route with that 2 plugins (oauth2 and jwt) plugged-in and handle the token by one of that plugins based on the token pattern/regex?