From 0883dca0aed05df2424d94d0b984b27dcba1a690 Mon Sep 17 00:00:00 2001 From: Joao Grassi <5938087+joaopgrassi@users.noreply.github.com> Date: Thu, 29 Feb 2024 14:21:12 +0100 Subject: [PATCH] Add recommendation for lowercase attribute names --- docs/general/attribute-naming.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/general/attribute-naming.md b/docs/general/attribute-naming.md index b84f71f03e..f0eec71dbb 100644 --- a/docs/general/attribute-naming.md +++ b/docs/general/attribute-naming.md @@ -31,6 +31,8 @@ particular programming language or wire format._ Names SHOULD follow these rules: +- Names SHOULD be lowercase. + - Use namespacing to avoid name clashes. Delimit the namespaces using a dot character. For example `service.version` denotes the service version where `service` is the namespace and `version` is an attribute in that namespace.