Protobuf Practice
Edit the schema, wait for the descriptor checks, and continue when everything passes.
Progress
Exercise 2: Naming
2. Naming
Context
Convention is PascalCase for messages, snake_case for fields. This schema follows neither, and the generated API will show it.
Task
Rename the message to UserProfile and the fields to user_id, email_address, and profile_image.
syntax = "proto3"; package practice; message user_profile { string userId = 1; string emailAddress = 2; string profileImage = 3; }
EVALUATION_CHECKS
Exercise Incomplete
Please satisfy all checks above