From 73e59db1ea1d6f6084b2e1c3403ab9b60bac2084 Mon Sep 17 00:00:00 2001 From: Yusuke Tsutsumi Date: Thu, 28 Aug 2025 22:50:11 -0700 Subject: [PATCH] fix(140): addition more explanation for cases Clarifying the importance of the usage of uniform lower_snake_case across json and grpc --- aep/general/0140/aep.md.j2 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/aep/general/0140/aep.md.j2 b/aep/general/0140/aep.md.j2 index 16240ae6..45fbd16a 100644 --- a/aep/general/0140/aep.md.j2 +++ b/aep/general/0140/aep.md.j2 @@ -44,6 +44,10 @@ generated code. transformed by substituting hyphens (`-`) for underscores (`_`), emitted in lowercase, and parsed case-insensitively. +Although gRPC-json transcoding often translates snake_case names to camelCase, +this variance can force additional complexity server-side to translate the +values in contexts such as in filter syntax. + #### Support for lowerCamelCase in clients [ProtoJSON][proto-json] and [gRPC-Gateway][grpc-gateway] by default both