{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ParseResult", "title": "ParseResult", "type": "object", "description": "The parsed output of a document, containing extracted content in various formats.", "properties": { "text": { "type": "string", "description": "Plain text representation of the parsed content." }, "markdown": { "type": "string", "description": "Markdown-formatted representation of the parsed content." }, "json": { "type": "object", "additionalProperties": true, "description": "Structured JSON representation of the parsed content." }, "pages": { "type": "array", "description": "Per-page parsing results.", "items": { "$ref": "#/components/schemas/ParsePage" } }, "metadata": { "type": "object", "additionalProperties": true, "description": "Metadata extracted from the document." } } }