Skip to content

Latest commit

 

History

History
100 lines (74 loc) · 2.85 KB

security-defined.md

File metadata and controls

100 lines (74 loc) · 2.85 KB
slug
/docs/cli/rules/oas/security-defined

security-defined

Verifies every operation or global security is defined.

OAS Compatibility
2.0
3.0
3.1

API design principles

"Where are the public APIs?"

Public APIs are all around us, but they generally still require security credentials to measure usage and prevent abuse.

Not defining security credentials is an indication that someone forgot something. What was it? Aha! We're letting you know here.

This is a good rule. Every API should have security defined. Even if the API is truly public without any credential required, define the empty security section to let people know you didn't forget.

# This API has no security
security: []

Configuration

Option Type Description
severity string Possible values: off, warn, error. Default error (in recommended configuration).
exceptions [Exception object] List of exceptions from the rule.

Exception object

Option Type Description
path string REQUIRED. Excluded path.
methods [string] Optional list of operations to exclude. If not provided, the entire path is being excluded.

An example configuration:

rules:
  security-defined: error

Examples

Given this configuration:

rules:
  security-defined: error

Example of incorrect security definition due to mismatching security and security schemes:

security:
  - OAuth: []
components:
  securitySchemes:
    JWT:
      type: http
      scheme: bearer
      bearerFormat: JWT

Example of correct security definition:

security:
  - JWT: []
components:
  securitySchemes:
    JWT:
      type: http
      scheme: bearer
      bearerFormat: JWT

Related rules

Resources