AIP-141
Quantities
Many services need to represent a discrete quantity of items (number of bytes, number of miles, number of nodes, etc.).
Guidance
Quantities with a clear unit of measurement (such as bytes, miles, and so on)
must include the unit of measurement as the suffix. When appropriate, units
should use generally accepted abbreviations, and abbreviations should not
be pluralized (for example, distance_km rather than distance_kilometers).
// A representation of a non-stop air route.
message Route {
// The airport where the route begins.
string origin = 1;
// The destination airport.
string destination = 2;
View on GitHub