Resource Names#
To keep our architecture clean and predictable, all resource names strictly adhere to the following rules:Noun-Based & Plural: Always use plural nouns (e.g., customers), never verbs (e.g., get-user).
Lowercase Only: All characters must be lowercase.
Kebab-Case (Letters & Hyphens): Use only alphabetic characters and hyphens (-) to separate words. No numbers, underscores, or special characters allowed.
Query Parameter Names#
To keep our architecture clean and predictable, all query parameter names strictly adhere to the following rules:camelCase: Use standard camelCase for multi-word parameter names. The first letter must be lowercase, and each subsequent word starts with a capital letter.
Modified at 2026-07-17 13:45:36