Comment puis-je représenter 'Authorization: Bearer <token>' dans une spécification Swagger (swagger.json)

J'essaie de transmettre que le schéma d'authentification / sécurité nécessite de définir un en-tête comme suit: Authorization: Bearer <token> Voici ce que j'ai basé sur la documentation swagger : securityDefinitions: APIKey: type: apiKey name: Authorization in: header security: - APIKey: []...