Apache POI · JSON Structure

Apache Poi Conversion Request Structure

Document conversion request

Type: object Properties: 3 Required: 3
Document ProcessingExcelJavaMicrosoft OfficePowerPointWordApacheOpen Source

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

Properties

sourceId sourceType targetFormat

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-poi/refs/heads/main/json-structure/apache-poi-conversion-request-structure.json",
  "description": "Document conversion request",
  "type": "object",
  "properties": {
    "sourceId": {
      "type": "string",
      "description": "Source document identifier"
    },
    "sourceType": {
      "type": "string",
      "enum": [
        "workbook",
        "document",
        "presentation"
      ],
      "description": "Type of the source document"
    },
    "targetFormat": {
      "type": "string",
      "description": "Target format (XLSX, DOCX, PPTX, PDF)"
    }
  },
  "required": [
    "sourceId",
    "sourceType",
    "targetFormat"
  ],
  "name": "ConversionRequest"
}