Symmetric Key Response
A response containing a wrapped symmetric key and metadata.
Schema
https://fdc3.finos.org/schemas/next/context/symmetricKeyResponse.schema.json (github)
Type
fdc3.security.symmetricKey.response
Properties
id (required)
type: object
Subproperties:
kid (required)
type: string
Key ID used to identify the public key used to wrap the symmetric key.
pki (required)
type: string
Public Key Infrastructure JSON Web Key Set URL used to wrap the symmetric key.
wrappedKey (required)
type: string
The symmetric key, encrypted using the recipient's public key.
Example:
"u4jvA7...=="
Example
{
"type": "fdc3.security.symmetricKey.response",
"id": {
"kid": "key-id-123",
"pki": "https://examples.com/myJWKSendpoint"
},
"wrappedKey": "u4jvA7Gx8LdH...=="
}