{ "openapi": "3.0.4", "info": { "title": "OpenAPI 3.0.4 security bearer example", "version": "1" }, "paths": { "/foo": { "get": { "responses": { "200": { "description": "OK" } }, "security": [ { "foo": [] } ] } } }, "components": { "securitySchemes": { "foo": { "bearerFormat": "JWT", "scheme": "bearer", "type": "http" } } } }