NamingConvention Enum
Namespace: Json.Schema.Generation.Serialization
Indicates the naming convention to use for property names in generated schemas.
Values
| Name | Summary |
|---|---|
| AsDeclared | Properties are generated with the name as declared in code. |
| CamelCase | Property names are converted to camelCase (e.g. camelCase). |
| PascalCase | Property names are converted to PascalCase (e.g. PascalCase). |
| LowerSnakeCase | Property names are converted to lower_snake_case (e.g. lower_snake_case). |
| UpperSnakeCase | Property names are converted to UPPER_SNAKE_CASE (e.g. UPPER_SNAKE_CASE). |
| KebabCase | Property names are converted to kebab-case (e.g. kebab-case). |
| UpperKebabCase | Property names are converted to UPPER-KEBAB-CASE (e.g. UPPER-KEBAB-CASE). |