Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bearer/basic identity_edge references not listed under components/securitySchemes #389

Open
janodev opened this issue Jan 9, 2025 · 0 comments

Comments

@janodev
Copy link

janodev commented Jan 9, 2025

It appears there are references to bearer_identity_edge and basic_identity_edge that are not listed under components/securitySchemes.

paths:
...
  /organization/admin_api_keys:
...

components:
  schemas:
...
  securitySchemes:
    ApiKeyAuth: <------ EXISTING
      type: http
      scheme: bearer
    bearer_identity_edge: <------ MISSING
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Bearer authentication using identity edge token
    basic_identity_edge: <------ MISSING
      type: http
      scheme: basic
      description: Basic authentication using identity edge credentials

so for openapi.yaml d2eaa35

--- openapi.current.yaml	2025-01-09 03:47:59
+++ openapi.patched.yaml	2025-01-09 04:05:48
@@ -25661,8 +25661,17 @@
           }
   securitySchemes:
     ApiKeyAuth:
+      type: http
+      scheme: bearer
+    bearer_identity_edge:
       type: http
       scheme: bearer
+      bearerFormat: JWT
+      description: Bearer authentication using identity edge token
+    basic_identity_edge:
+      type: http
+      scheme: basic
+      description: Basic authentication using identity edge credentials
 security:
   - ApiKeyAuth: []
 x-oaiMeta:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant