Apache POI · Schema

ConversionResult

Document conversion result

Document ProcessingExcelJavaMicrosoft OfficePowerPointWordApacheOpen Source

Properties

Name Type Description
id string Converted document identifier
format string Output format
url string Download URL for the converted document
size integer File size in bytes
View JSON Schema on GitHub

JSON Schema

apache-poi-conversion-result-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-poi/refs/heads/main/json-schema/apache-poi-conversion-result-schema.json",
  "title": "ConversionResult",
  "description": "Document conversion result",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Converted document identifier"
    },
    "format": {
      "type": "string",
      "description": "Output format"
    },
    "url": {
      "type": "string",
      "description": "Download URL for the converted document"
    },
    "size": {
      "type": "integer",
      "description": "File size in bytes"
    }
  }
}