syntax = "proto3"; package common.v1; option go_package = "github.com/onsonr/sonr/pkg/common/types;commonv1"; message URI { enum URIProtocol { HTTPS = 0; IPFS = 1; IPNS = 2; DID = 3; } URIProtocol protocol = 1; string value = 2; }