Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions open-api/rest-catalog-open-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ servers:
security:
- OAuth2: [catalog]
- BearerAuth: []
- BasicAuth: []
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are you talking of Basic header ?
If yes i think we would need to define it bit better like bearer: https://github.com/roryqi/iceberg/blob/0519d2d1fe3427299d1191b64bcd0376f7f43bf0/open-api/rest-catalog-open-api.yaml#L5265

Copy link
Copy Markdown
Contributor Author

@roryqi roryqi Apr 5, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, I am talking of Basic header.

OpenAPI has defined Bearer header and Basic header.
You can see
https://swagger.io/docs/specification/v3_0/authentication/bearer-authentication/
https://swagger.io/docs/specification/v3_0/authentication/basic-authentication/

I will add the definition, too.

Thanks for your review.


paths:
/v1/config:
Expand Down Expand Up @@ -5264,3 +5265,6 @@ components:
BearerAuth:
type: http
scheme: bearer
BasicAuth:
type: http
scheme: basic
Loading