From 9e90894cfac44045f1bcddb6169023af01204ad4 Mon Sep 17 00:00:00 2001 From: Joao Grassi <5938087+joaopgrassi@users.noreply.github.com> Date: Fri, 1 Mar 2024 09:53:51 +0100 Subject: [PATCH] [chore] Add recommendation for lowercase attribute names (#788) --- 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.