interface JsonWebKeyMethod {
    controller: `did:${string}:${string}`;
    expires?: string;
    id: string;
    publicKeyJwk: JWK;
    revoked?: string;
    type: "JsonWebKey2020" | "JsonWebKey";
}

Hierarchy (View Summary)

Properties

controller: `did:${string}:${string}`
expires?: string

ISO date time string

"2024-12-10T15:28:32Z"
id: string
publicKeyJwk: JWK
revoked?: string

ISO date time string

"2024-12-10T15:28:32Z"
type: "JsonWebKey2020" | "JsonWebKey"