/startsession HTTP/1.1
Host: auth.example.com
Sec-Session-Response: <JWT proof> // Header
{
"alg": "<Signature Algorithm>",
"typ": "dbsc+jwt",
}
// Payload
{
"aud": "<URL of this request>",
"jti": "<challenge value>",
"iat": "<unix timestamp>",
"key": "<public key JWK>",
...
}