PositionDeleteFile schema from Apache Iceberg REST Catalog API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/apache-iceberg/refs/heads/main/json-schema/rest-catalog-open-api-position-delete-file-schema.json", "title": "PositionDeleteFile", "description": "PositionDeleteFile schema from Apache Iceberg REST Catalog API", "properties": { "content": { "type": "string", "const": "position-deletes" }, "content-offset": { "type": "integer", "format": "int64", "description": "Offset within the delete file of delete content" }, "content-size-in-bytes": { "type": "integer", "format": "int64", "description": "Length, in bytes, of the delete content; required if content-offset is present" } }, "required": [ "content" ], "allOf": [ { "$ref": "#/components/schemas/ContentFile" } ], "type": "object" }