Microsoft Azure Functions · API Governance Rules
Microsoft Azure Functions API Rules
Spectral linting rules defining API design standards and conventions for Microsoft Azure Functions.
3 Rules
warn 3
Rule Categories
no
path
query
Rules
warn
path-params-casing
Path parameters should be camelCase (the dominant convention in this API).
$.paths[*].parameters[?(@.in=='path')].name
warn
query-params-casing
Query parameters should be camelCase (the dominant convention in this API).
$.paths[*][get,post,put,patch,delete].parameters[?(@.in=='query')]
warn
no-empty-descriptions
Descriptions must not be empty strings.
$..description