TypeAlias.DidWebConfigResponse
type DidWebConfigResponse = {
didDocument: | {
@context: string[];
assertionMethod: string[];
authentication: string[];
id: string;
verificationMethod: {
controller: string;
id: string;
publicKeyJwk: {
crv: "P-256";
kty: "EC";
x: string;
y: string;
};
type: "JsonWebKey2020";
}[];
}
| null;
domain: string | null;
};
Response for GET / PUT /v1/dpp/certification-key/did-web-config.
didDocument is null when the tenant has not configured a did:web domain.
Type Declaration
| Name | Type |
|---|---|
didDocument | |
domain | string |