diff --git a/pkg/schema/schema.go b/pkg/schema/schema.go index 97d20ac42..9429bbb30 100644 --- a/pkg/schema/schema.go +++ b/pkg/schema/schema.go @@ -681,7 +681,7 @@ func NewClaim(claims ...*ClaimParam) *Builder { func populateClaimMap(m map[string]interface{}, cp *ClaimParam) { m["claimType"] = string(cp.Type) m["attribute"] = cp.Attribute - m["permaNode"] = cp.Permanode + m["permaNode"] = cp.Permanode.String() if !(cp.Type == DelAttribute && cp.Value == "") { m["value"] = cp.Value }