You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 27, 2024. It is now read-only.
Currently we use interface{} type for termsOfUse what is too generic. According to VC spec, type field is mandatory and id field is optional, and that "precise contents of each term of use is determined by the specific termsOfUse type definition".
We should use 'typedID' type and keep extra fields in map[string]interface{}.
The text was updated successfully, but these errors were encountered:
Currently we use
interface{}
type fortermsOfUse
what is too generic. According to VC spec,type
field is mandatory andid
field is optional, and that "precise contents of each term of use is determined by the specific termsOfUse type definition".We should use 'typedID' type and keep extra fields in
map[string]interface{}
.The text was updated successfully, but these errors were encountered: