Enum FhirTypeBase.NamingConvention
Values that represent naming conventions for item types.
Namespace: Microsoft.Health.Fhir.CodeGenCommon.Models
Assembly: Microsoft.Health.Fhir.CodeGenCommon.dll
Syntax
public enum NamingConvention : int
Fields
Name | Description |
---|---|
CamelCase | Names are Camel Case (first letter lower case). |
FhirDotNotation | Names are standard FHIR dot notation (e.g., path). |
LanguageControlled | An enum constant representing the language controlled option. |
LowerCase | Names are all lower case. |
LowerKebab | Lower case, separated by hyphens. |
None | This feature is not supported / used. |
PascalCase | Names are Pascal Case (first letter capitalized). |
PascalDotNotation | Names are dot notation, with each first letter capitalized. |
UpperCase | Names are all upper case. |