package bookmark import ( "encoding/json" "github.com/google/uuid" ) type SpecialistBookmark struct { ID uuid.UUID ProfileID uuid.UUID Profile BookmarkedProfile } type BookmarkedProfile struct { ID uuid.UUID Name string Description string RestOfFields json.RawMessage }