From 22577807b5c5a1ea73c24c120b58497481a9d22c Mon Sep 17 00:00:00 2001 From: Yusuke Tsutsumi Date: Sun, 20 Oct 2024 20:46:11 -0700 Subject: [PATCH] fix(resource-types): remove uneeded resource type naming guidance (#226) There's clauses around protobuf / kubernetes / openapi that are not relevant - this is already illustrated in the examples. --- aep/general/0004/aep.md.j2 | 6 ------ 1 file changed, 6 deletions(-) diff --git a/aep/general/0004/aep.md.j2 b/aep/general/0004/aep.md.j2 index f736080f..c706c398 100644 --- a/aep/general/0004/aep.md.j2 +++ b/aep/general/0004/aep.md.j2 @@ -20,12 +20,6 @@ the following pattern: `{API Name}/{Type Name}`. The type name: - **must** Start with a lowercase letter. - **must** Be of the singular form of the noun. - **must** Use kebab case. -- For Kubernetes, the type name when converted to UpperCamelCase **must** match - the [object][] name. -- For OpenAPI, the type name when converted to UpperCamelCase **must** match - the name of the schema representing the object. -- For protobuf, the type name when converted to UpperCamelCase **must** match - the name of the protobuf message. ### Examples