Protobuf Practice
Edit the schema and the descriptor checks run as you type. Continue when everything passes.
Progress
Exercise 6: Oneof
6. Oneof
Context
A notification target can be identified by either a
user_id or an email, but not both.syntax = "proto3"; package practice; message NotificationTarget { string user_id = 1; string email = 2; }
Evaluation checks
Exercise Incomplete
Checks remaining above