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
19 changes: 19 additions & 0 deletions open-api/rest-catalog-open-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,15 @@ paths:
$ref: '#/components/responses/UnauthorizedResponse'
403:
$ref: '#/components/responses/ForbiddenResponse'
404:
description: Not Found - Warehouse provided in the `warehouse` query parameter is not found.
content:
application/json:
schema:
$ref: '#/components/schemas/IcebergErrorResponse'
examples:
NoSuchWarehouseExample:
$ref: '#/components/examples/NoSuchWarehouseError'
419:
$ref: '#/components/responses/AuthenticationTimeoutResponse'
503:
Expand Down Expand Up @@ -4962,6 +4971,16 @@ components:
}
}

NoSuchWarehouseError:
summary: The requested warehouse does not exist
value: {
"error": {
"message": "The given warehouse does not exist",
"type": "NoSuchWarehouseException",
"code": 404
}
}

NoSuchNamespaceError:
summary: The requested namespace does not exist
value: {
Expand Down
Loading