Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 509 Bytes

data-model-naming-and-casing-conventions.md

File metadata and controls

22 lines (14 loc) · 509 Bytes

Data model naming & casing conventions

Development docs and Go code

Resource type names (resource classes) and resource field names are in singular format, formatted with CamelCase. The first letter is capitalized. Examples:

  • User
  • ServiceAccount
  • OrganizationID
  • DisplayName

Database tables

Table names are in plural format, formatted with snake_case. Examples:

  • users
  • service_accounts

Column names are formatted with snake_case. Example:

  • organization_id
  • display_name