Apache POI · Schema

Paragraph

Paragraph in a Word document

Document ProcessingExcelJavaMicrosoft OfficePowerPointWordApacheOpen Source

Properties

Name Type Description
index integer Paragraph index
text string Paragraph text content
style string Paragraph style name
View JSON Schema on GitHub

JSON Schema

apache-poi-paragraph-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-paragraph-schema.json",
  "title": "Paragraph",
  "description": "Paragraph in a Word document",
  "type": "object",
  "properties": {
    "index": {
      "type": "integer",
      "description": "Paragraph index"
    },
    "text": {
      "type": "string",
      "description": "Paragraph text content"
    },
    "style": {
      "type": "string",
      "description": "Paragraph style name"
    }
  }
}