Protobuf Practice
Edit the schema, wait for the descriptor checks, and continue when everything passes.
Progress
Exercise 1: Field Numbers
1. Field Numbers
Context
Every field needs a numeric tag. That number is what goes on the wire; the name is only for generated code and JSON. These fields are missing theirs.
Task
Assign unique field numbers to id, name, and email so the schema compiles.
syntax = "proto3"; package practice; message UserProfile { string id; string name; string email; }
EVALUATION_CHECKS
Exercise Incomplete
Please satisfy all checks above