Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions open-api/rest-catalog-open-api.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,11 @@ class Snapshot(BaseModel):
alias='first-row-id',
description='The first _row_id assigned to the first row in the first data file in the first manifest',
)
added_rows: Optional[int] = Field(
None,
alias='added-rows',
description='The upper bound of the number of rows with assigned row IDs',
)
summary: Summary
schema_id: Optional[int] = Field(None, alias='schema-id')

Expand Down
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 @@ -2434,6 +2434,10 @@ components:
type: integer
format: int64
description: The first _row_id assigned to the first row in the first data file in the first manifest
added-rows:
type: integer
format: int64
description: The upper bound of the number of rows with assigned row IDs
summary:
type: object
required:
Expand Down