/.well-known/dataspace/party-configuration.json

Type: object

This configuration should be provided by each party creating applications or productizers on the dataspace and will provide details of for example where keys used to sign different payloads can be found. Typically this would be found on something like https://example.com/.well-known/dataspace/party-configuration.json. This must be served over https and it's highly recommended to set up the domain with HSTS.


Example:

{
    "jwks_uri": "https://example.com/.well-known/jwks.json"
}

Type: stringFormat: uri

The URI at which the JWKS for the party can be found. For now the following values must be used in the keys that are defined in the JWKS:
"alg": "RS256",
"kty": "RSA",
"use": "sig",

Must be at least 1 characters long

Must be at most 2083 characters long


Example:

"https://example.com/.well-known/jwks.json"