Skip to main content
Version: Next

User Request

A request for the current user’s identity.

Schema

https://fdc3.finos.org/schemas/next/context/userRequest.schema.json (github)

Type

fdc3.user.request

Properties

aud (required)

type: string

The audience (aud) claim specifying the intended recipient of the user request, typically the URL of the requesting application. This will be used in the returned JWT token for the aud claim.

jku (required)

type: string

The JSON Web Key Set URL (jku) claim specifying the URL where the requesting application's JSON Web Key Set (JWKS) can be retrieved. This should contain the public keys for encryption purposes

Example

{
"type": "fdc3.user.request",
"aud": "https://my-app-url.com",
"jku": "https://my-app-url.com/.well-known/jwks.json"
}