Apache Iceberg · JSON Structure

Rest Catalog Open Api Position Delete File Structure

PositionDeleteFile schema from Apache Iceberg REST Catalog API

Type: object Properties: 3 Required: 1
ACIDAnalyticsApacheData LakeLakehouseOpen SourceTable Format

PositionDeleteFile is a JSON Structure definition published by Apache Iceberg, describing 3 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

content content-offset content-size-in-bytes

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

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