Home NamingConvention Enum
NamingConvention Enum
Cancel

NamingConvention Enum

NamingConvention Enum

Namespace: Json.Schema.Generation.Serialization

Indicates the naming convention to use for property names in generated schemas.

Values

NameSummary
AsDeclaredProperties are generated with the name as declared in code.
CamelCaseProperty names are converted to camelCase (e.g. camelCase).
PascalCaseProperty names are converted to PascalCase (e.g. PascalCase).
LowerSnakeCaseProperty names are converted to lower_snake_case (e.g. lower_snake_case).
UpperSnakeCaseProperty names are converted to UPPER_SNAKE_CASE (e.g. UPPER_SNAKE_CASE).
KebabCaseProperty names are converted to kebab-case (e.g. kebab-case).
UpperKebabCaseProperty names are converted to UPPER-KEBAB-CASE (e.g. UPPER-KEBAB-CASE).
Contents