The security configuration to include in your server's OpenAPI spec.
Example (OAuth2): { "securitySchemes": { "OAuth2": { "type": "oauth2", "flows": { "password": { "tokenUrl": "/token", "scopes": {"me": "Read user info", "items": "Manage items"} } } } }, "security": [ {"OAuth2": ["me"]} ] }
openapi: SecurityConfig