Skip to main content

valid-authorization-type

Overview

This rule belongs to the swagger-v1-validation ruleset and states that:

The type of the authorization scheme specified using property type of the Authorization Object must have only one of the following values: basicAuth, apiKey or oauth2. Other types are not supported/allowed.

PropertyValue
EnabledYes
Maximum SeverityError
MessageInvalid type of authorization scheme found.
CodeSWAGGER1_V401
TypeValidation
Rule SystemSemantic
Broad CategoryAuthorizations
Products ImpactedAPI Transformer, Code Generation, Developer Experience Portal
Tagsswagger1 swagger semantic validation type authorization

Suggested Fixes

  • Value of authorization type is compared in a case-sensitive manner.
  • Ensure that the authorization type value matches exactly with the possible list of values and that there are no typos: basicAuth, apiKey or oauth2.
  • Ensure that the value for authorization type is not null or empty.

For More Information