src/verifier/resolver/dto/issuer-metadata.dto.ts
Interface representing the issuer metadata.
Properties |
issuer |
issuer:
|
Type : string
|
The issuer identifier, typically a URL. |
jwks |
jwks:
|
Type : literal type
|
The JSON Web Key Set (JWKS) containing the public keys for the issuer. |
import { JWK } from 'jose';
/**
* Interface representing the issuer metadata.
*/
export interface IssuerMetadata {
/**
* The issuer identifier, typically a URL.
*/
issuer: string;
/**
* The JSON Web Key Set (JWKS) containing the public keys for the issuer.
*/
jwks: {
/**
* List of keys in the JWKS.
*/
keys: JWK[];
};
}