Skip to main content

Overview

The Extract → Split → Schema pipeline is the most powerful processing mode in Pulse. After extracting the document, it splits the pages into topic-based sections and then applies a different schema to each section. This is ideal for long, multi-section documents where different parts contain different kinds of data.

When to Use

  • Annual reports — Financials, Leadership, and Outlook each have different data to extract
  • Multi-section contracts — different clause types (indemnification, IP rights, payment terms) need different schemas
  • Research papers — Abstract, Methodology, Results, and Conclusion each have distinct structure
  • Insurance documents — policy details, claims history, and coverage schedules are all different
  • Regulatory filings — mixed sections like company overview, financial statements, risk factors
If your entire document uses one schema, use Extract → Schema instead — it’s simpler and faster.

How to Use in the Playground

1
Configure extraction settings
2
Set page range, figure extraction, chunking, and other options on the Configuration tab — same as Extract Only.
3
Define split topics
4
Switch to the Split step. Add topics with names and descriptions — Pulse uses these to assign pages to topics based on document content.
5
TopicDescriptionFinancialsRevenue, expenses, and profit dataLeadershipExecutive team and board of directorsOutlookFuture plans, projections, and guidance
6
7
Use the AI Helper to draft split topics from a prompt, the attached document, or existing split inputs.
8
9
The split step assigns whole pages to topics. A page belongs to the topic that best matches its content. Pages can only belong to one topic.
10
Define per-topic schemas
11
For each topic, define a JSON Schema tailored to the data you expect in that section. Each topic gets its own schema and optional prompt.
12
Example — Financials schema:
13
{
  "type": "object",
  "properties": {
    "total_revenue": { "type": "number", "description": "Total revenue for the fiscal year" },
    "net_income": { "type": "number", "description": "Net income after taxes" },
    "revenue_growth_pct": { "type": "number", "description": "Year-over-year revenue growth %" }
  },
  "required": ["total_revenue"]
}
14
Example — Leadership schema:
15
{
  "type": "object",
  "properties": {
    "ceo": { "type": "string", "description": "Name of the CEO" },
    "board_members": {
      "type": "array",
      "items": { "type": "string" },
      "description": "List of board member names"
    }
  }
}
16
17
For each topic, use descriptions and prompts that match only that section. The Schema AI Helper can draft the first version, but you should still review field names and required fields before saving the preset.
18
19
Upload and extract
20
Click Extract All. The pipeline chains all three steps automatically:
21
  • Extract — converts the document to markdown
  • Split — assigns pages to topics based on content
  • Schema — runs each topic’s schema against its assigned pages
  • 22
    Review results
    23
    Results appear organized by topic. Switch between topics to see:
    24
  • Page assignments — which pages belong to each topic
  • Structured output — the JSON extracted for each topic
  • Citations — where in the document each value was found

  • What You Get Back

    Everything from Extract, plus:

    API Usage


    Skipping Schema (Extract → Split Only)

    You don’t have to add schema after splitting. If you just want to know which pages belong to which topic — without structured extraction — you can stop after the split step. This is useful for document triage or routing.

    Split API Reference

    Full API documentation for the /split endpoint

    Schema API Reference

    Full API documentation for the /schema endpoint (single and split mode)