LlamaParse · Schema

SplitResultResponse

Result of a completed split job.

Document ParsingOCRPDFLLMRAGAIDocument IntelligenceStructured Data Extraction

Properties

Name Type Description
segments array List of document segments.
View JSON Schema on GitHub

JSON Schema

llamaparse-splitresultresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/llamaparse/main/json-schema/llamaparse-splitresultresponse-schema.json",
  "title": "SplitResultResponse",
  "description": "Result of a completed split job.",
  "properties": {
    "segments": {
      "items": {
        "$ref": "#/components/schemas/SplitSegmentResponse"
      },
      "type": "array",
      "title": "Segments",
      "description": "List of document segments."
    }
  },
  "type": "object",
  "required": [
    "segments"
  ]
}