sonr/pkg/did/types.go

10 lines
338 B
Go
Raw Normal View History

2024-07-05 22:20:13 -04:00
package did
// VerificationMethod is an object that represents a verification method.
type VerificationMethod struct {
PublicKeyJwk map[string]interface{} `json:"publicKeyJwk"`
ID string `json:"id"`
Type string `json:"type"`
Controller string `json:"controller"`
}