We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It appears there are references to bearer_identity_edge and basic_identity_edge that are not listed under components/securitySchemes.
bearer_identity_edge
basic_identity_edge
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:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It appears there are references to
bearer_identity_edge
andbasic_identity_edge
that are not listed undercomponents/securitySchemes
.so for openapi.yaml d2eaa35
The text was updated successfully, but these errors were encountered: