OpenAPI
Security

Security

When designing an API, it is important to consider the security requirements for accessing the API. OpenAPI 3.1 provides a way to define security requirements at both the document and operation levels.

Security requirements are defined as a list of Security Requirement Objects in the security section. Each object in the list represents a set of security requirements that must be satisfied to access the API.

To add security to an API as a whole, the security keyword must be defined at the document level.

Likewise, to add security to a specific operation, the security keyword must be defined at the operation level.

Security requirements defined at the operation level override the security requirements defined at the document level.

If not provided at the document level, the default security requirements are assumed to be [], an empty array, meaning no security is required to access the API.

The following example requires an API key to access the API:


security:
- apiKey: []
components:
securitySchemes:
apiKey:
type: apiKey
name: Authorization
in: header

In valid OpenAPI 3.1, the Security Requirement Objects listed in security sections may only reference Security Scheme Objects that are defined in the Components Object under the securitySchemes field. In other words, the security section may not contain inline security schemes, and it may not contain security schemes that are not defined yet.

Security Requirement Object

A Security Requirement Object defines a map of security scheme names to scopes or roles that are required to access the API. The names must match the names of Security Scheme Objects defined in the Components Object under the securitySchemes field.

FieldTypeRequiredDescription
{securitySchemeName}List<string>A list of scopes or roles required for the security scheme. If the security scheme type is oauth2 or openIdConnect, this is a list of scope names required by the API consumer to be able to access or use the API. For any other type, this could contain a list of roles or similar required for the API consumer to obtain to authenticate with the API.

Supported Security Schemes

Before referencing a Security Scheme as a requirement in the security section, it must be defined in the Components Object under the securitySchemes field.

OpenAPI 3.1 supports the following security schemes:

Expressing Security Requirements

The security keyword can be used in the following ways to express security requirements.

Disabling Security

Security can be disabled for a specific operation by providing an empty array ([]) in the list of security requirements.

In this example, the POST operation in the /auth path does not require security:


paths:
/auth:
post:
operationId: authenticate
summary: Authenticate with the API
security: [] # Disable security for this operation
# ...

Optional Security

Security can also be made optional by providing an empty object ({}) in the list of security requirements.

In this example, the API may be accessed with or without an API key:


security:
- apiKey: []
- {}

Adding Optional Security to a Specific Operation

Security can be made optional for a specific operation by providing an empty object ({}) in the list of security requirements.

This does not disable the security requirements defined at the document level, but makes them optional for this specific operation.

In this example, the GET operation in the /drinks path may be accessed with or without an API key, but if authenticated, the response will include additional information:


paths:
/drinks:
get:
operationId: listDrinks
summary: Get a list of drinks, if authenticated this will include stock levels and product codes otherwise it will only include public information
security:
- {} # Make security optional for this operation
# ...

Allowing a Choice of Security Schemes

To allow users to choose between multiple different security requirements, define the security keyword as a list of Security Requirement Objects. The API consumer can choose one of the requirements to authenticate.

In this example, the API may be accessed with an API key OR OAuth 2.0:


security: # apiKey OR oauth2 can be used
- apiKey: []
- oauth2:
- read
- write

Requiring Multiple Security Schemes Together

If multiple schemes are required together, then the Security Requirement Object should be defined with multiple security schemes.

In this example, both an API key AND basic auth are required to access the API:


security: # both apiKey AND basic is required
- apiKey: []
basic: []

Complex Authorization Scenarios

This AND/OR logic along with optional ({}) security can be used in any combination to express complex authorization scenarios.

In this example, the API may be accessed with an API key AND OAuth 2.0 OR with basic authentication:


security: # apiKey AND oauth2 OR basic
- apiKey: []
oauth2:
- read
- write
- basic: []

Security Requirement Scopes or Roles

When defining an OAuth 2.0 or OpenID Connect Security Requirement Object for an operation, the {securitySchemeName} field should contain a list of scopes or roles required for the security scheme.

For example, the following security requirement object requires the read and write scopes for the oauth2 security scheme:


paths:
/drinks:
get:
operationId: listDrinks
summary: Get a list of drinks
# Operation requires read and write scopes
security:
- oauth2:
- read
- write
# ...