According to the JWT introduction on jwt.io,
the output is three Base64-URL strings separated by dots that can be easily passed in HTML and HTTP environments."
I'm trying to figure out how to describe this in the schema of the response. I'm getting tripped up because it seems to me that "three strings separated by dots" is itself a string - would that be right?
Would the content section look like this?
content:
text/plain:
schema:
type: string
In the OpenAPI docs, I see how to describe the bearer authentication in the components/securitySchemes section, but I think that has to do with the global/path operation security section, and not for the login method when the server sends the JWT to the client.