Protobuf Practice
Edit the schema, wait for the descriptor checks, and continue when everything passes.
Progress
Exercise 2: Naming
2. Naming
Context
Generated APIs are easier to use when schemas follow protobuf naming conventions. Message names use PascalCase. Field names use snake_case.
This schema uses names that will produce awkward generated APIs.
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