Apache Iceberg · Schema

PositionDeleteFile

PositionDeleteFile schema from Apache Iceberg REST Catalog API

ACIDAnalyticsApacheData LakeLakehouseOpen SourceTable Format

Properties

Name Type Description
content string
content-offset integer Offset within the delete file of delete content
content-size-in-bytes integer Length, in bytes, of the delete content; required if content-offset is present
View JSON Schema on GitHub

JSON Schema

rest-catalog-open-api-position-delete-file-schema.json Raw ↑
{
  "$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"
}