mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 21:09:11 +00:00
10 lines
338 B
Go
10 lines
338 B
Go
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"`
|
|
}
|