@talonic/docs 0.12.0 → 0.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/dist/seo.js +250 -288
  2. package/openapi.json +250 -288
  3. package/package.json +1 -1
package/dist/seo.js CHANGED
@@ -4,7 +4,7 @@ var openapi_default = {
4
4
  info: {
5
5
  title: "Talonic API",
6
6
  version: "1.0.0",
7
- description: 'Structure any document into schema-validated data.\n\nThe Talonic API lets you extract structured data from documents (PDFs, images,\nDOCX, CSV, plain text), manage reusable extraction schemas, track async jobs,\nand organise documents through sources.\n\n## Authentication\n\nAll requests require a Bearer token in the `Authorization` header.\nAPI keys are prefixed with `tlnc_` and scoped per customer.\n\n```\nAuthorization: Bearer tlnc_live_abc123...\n```\n\n## Async Extraction Pattern\n\nSmall documents (\u22645 pages) are processed synchronously and return a `200`\nwith the extracted data immediately. Larger documents return a `202 Accepted`\nwith a `poll_url` \u2014 poll `GET /v1/documents/{id}` until `status` transitions\nto `completed`, then fetch results via `GET /v1/documents/{id}/extractions`.\n\nYou can force async processing by passing `options: {"async": true}` on\nany extraction request. Combine with webhooks for a fully event-driven flow:\nconfigure a webhook destination under Delivery and listen for the\n`extraction.complete` event.\n\n**Job status lifecycle:** `pending` \u2192 `processing` \u2192 `complete` | `failed`\n\n## Rate Limits\n\nRequests are metered per calendar day (UTC). Limits depend on your plan tier:\n\n| Tier | Extract | Platform | Ingest |\n|------------|---------|----------|--------|\n| Free | 50/day | 500/day | 50/day |\n| Pro | 2,000 | 10,000 | 2,000 |\n| Enterprise | Unlimited | Unlimited | Unlimited |\n\nEvery response includes rate-limit headers:\n- `X-RateLimit-Limit` \u2014 daily cap for the namespace\n- `X-RateLimit-Remaining` \u2014 requests left today\n- `X-RateLimit-Reset` \u2014 ISO 8601 timestamp when the window resets (midnight UTC)\n\n## Pagination\n\nList endpoints use cursor-based pagination. Pass `limit` (1\u2013100, default 20),\n`cursor` (opaque token from `pagination.next_cursor`), and `order` (`asc` or `desc`, default `desc`).\n\n## Errors\n\nAll errors return a JSON body with `error` (machine-readable code) and `message`\n(human-readable explanation). Additional fields vary by error type.\n\n| Code | Error | Description |\n|------|--------------------|------------------------------------------|\n| 400 | validation_error | Request body is malformed or invalid |\n| 401 | unauthorized | Missing or invalid API key |\n| 403 | insufficient_scope | API key lacks the required scope |\n| 404 | not_found | Resource does not exist |\n| 409 | conflict | Resource state conflict |\n| 413 | payload_too_large | File exceeds 500 MB limit |\n| 422 | extraction_failed | Document could not be processed |\n| 429 | rate_limit_exceeded| Daily rate limit reached |\n| 500 | internal_error | Unexpected server error (retryable) |\n\nEvery error response follows this envelope:\n\n```json\n{\n "statusCode": 400,\n "code": "VALIDATION_ERROR",\n "error": "Bad Request",\n "message": "name is required.",\n "retryable": false,\n "timestamp": "2026-04-25T14:30:00.000Z",\n "path": "/v1/schemas"\n}\n```\n\nThe `code` field is one of: `VALIDATION_ERROR`, `AUTH_REQUIRED`, `TOKEN_EXPIRED`,\n`INSUFFICIENT_PERMISSIONS`, `RESOURCE_NOT_FOUND`, `QUOTA_EXCEEDED`,\n`INSUFFICIENT_CREDITS`, `LLM_RATE_LIMITED`, `LLM_TIMEOUT`, `LLM_UNAVAILABLE`,\n`OCR_FAILED`, `EXTRACTION_FAILED`, `EXTRACTION_TIMEOUT`, `FILE_TOO_LARGE`,\n`DUPLICATE_RESOURCE`, `DATASPACE_RUN_FAILED`, `INTERNAL_ERROR`.\n\n## Async Extraction Lifecycle\n\nEnd-to-end async flow:\n\n**Step 1 \u2014 Submit extraction with `async: true`:**\n```\nPOST /v1/extract\nContent-Type: multipart/form-data\nAuthorization: Bearer tlnc_live_abc123\n\nfile=@contract.pdf\noptions={"async": true}\n```\nResponse `202 Accepted`:\n```json\n{\n "request_id": "req_x7y8z9a0",\n "status": "processing",\n "document": { "id": "f0e1d2c3-..." },\n "poll_url": "/v1/documents/f0e1d2c3-..."\n}\n```\n\n**Step 2 \u2014 Poll for completion:**\n```\nGET /v1/documents/f0e1d2c3-...\n```\nResponse `200` (when done): `"status": "completed"`\n\n**Step 3 \u2014 Retrieve results:**\n```\nGET /v1/documents/f0e1d2c3-.../extractions\n```\n\n**Alternative \u2014 Webhooks:** Configure a delivery destination and binding\nto receive `document.extracted` events via POST callback. See the\nDelivery tag for setup details.\n\n**Job status state machine:**\n`pending` \u2192 `queued` \u2192 `processing` \u2192 `complete` | `failed`\n\nCancelled jobs transition directly to `failed` from `pending` or `processing`.\n\n## Operational Details\n\n**Uptime SLA:**\n- Free: best effort\n- Pro: 99.5%\n- Enterprise: 99.9% (custom SLA available)\n\n**Timeouts:** Synchronous extractions time out after 120 seconds. For\ndocuments that may take longer, use `async: true`. Async jobs have no\ntimeout \u2014 they run to completion or failure.\n\n**Payload limits:**\n- File upload (extract, ingest): 500 MB\n- JSON request bodies (schemas, jobs): 1 MB\n- PATCH corrections: 1 MB\n\n**Idempotency keys:** Pass an `Idempotency-Key` header on POST requests.\nKeys are valid for 24 hours. A duplicate request returns the cached\nresponse with `cached: true` in the body. Keys are scoped per API key.\n',
7
+ description: 'Structure any document into schema-validated data.\n\nThe Talonic API lets you extract structured data from documents (PDFs, images,\nDOCX, CSV, plain text), manage reusable extraction schemas, track async jobs,\nand organise documents through sources.\n\n## Authentication\n\nAll requests require a Bearer token in the `Authorization` header.\nAPI keys are prefixed with `tlnc_` and scoped per customer.\n\n```\nAuthorization: Bearer tlnc_live_abc123...\n```\n\n## Async Extraction Pattern\n\nSmall documents (\u22645 pages) are processed synchronously and return a `200`\nwith the extracted data immediately. Larger documents return a `202 Accepted`\nwith a `poll_url` \u2014 poll `GET /v1/documents/{id}` until `status` transitions\nto `completed`, then fetch results via `GET /v1/documents/{id}/extractions`.\n\nYou can force async processing by passing `options: {"async": true}` on\nany extraction request. Combine with webhooks for a fully event-driven flow:\nconfigure a webhook destination under Delivery and listen for the\n`extraction.complete` event.\n\n**Job status lifecycle:** `pending` \u2192 `processing` \u2192 `complete` | `failed`\n\n## Rate Limits\n\nRequests are metered per calendar day (UTC). Limits depend on your plan tier:\n\n| Tier | Extract | Platform | Ingest |\n|------------|---------|----------|--------|\n| Free | 50/day | 500/day | 50/day |\n| Pro | 2,000 | 10,000 | 2,000 |\n| Enterprise | Unlimited | Unlimited | Unlimited |\n\nEvery response includes rate-limit headers:\n- `X-RateLimit-Limit` \u2014 daily cap for the namespace\n- `X-RateLimit-Remaining` \u2014 requests left today\n- `X-RateLimit-Reset` \u2014 ISO 8601 timestamp when the window resets (midnight UTC)\n\n## Pagination\n\nList endpoints use cursor-based pagination. Pass `limit` (1\u2013100, default 20),\n`cursor` (opaque token from `pagination.next_cursor`), and `order` (`asc` or `desc`, default `desc`).\n\n## Errors\n\nAll errors return a JSON body with `error` (machine-readable code) and `message`\n(human-readable explanation). Additional fields vary by error type.\n\n| Code | Error | Description |\n|------|--------------------|------------------------------------------|\n| 400 | validation_error | Request body is malformed or invalid |\n| 401 | unauthorized | Missing or invalid API key |\n| 403 | insufficient_scope | API key lacks the required scope |\n| 404 | not_found | Resource does not exist |\n| 409 | conflict | Resource state conflict |\n| 413 | payload_too_large | File exceeds 500 MB limit |\n| 422 | extraction_failed | Document could not be processed |\n| 429 | rate_limit_exceeded| Daily rate limit reached |\n| 500 | internal_error | Unexpected server error (retryable) |\n\nEvery error response follows this envelope:\n\n```json\n{\n "statusCode": 400,\n "code": "VALIDATION_ERROR",\n "error": "Bad Request",\n "message": "name is required.",\n "retryable": false,\n "timestamp": "2026-04-25T14:30:00.000Z",\n "path": "/v1/schemas"\n}\n```\n\nThe `code` field is one of: `VALIDATION_ERROR`, `AUTH_REQUIRED`, `TOKEN_EXPIRED`,\n`INSUFFICIENT_PERMISSIONS`, `RESOURCE_NOT_FOUND`, `QUOTA_EXCEEDED`,\n`INSUFFICIENT_CREDITS`, `LLM_RATE_LIMITED`, `LLM_TIMEOUT`, `LLM_UNAVAILABLE`,\n`OCR_FAILED`, `EXTRACTION_FAILED`, `EXTRACTION_TIMEOUT`, `FILE_TOO_LARGE`,\n`DUPLICATE_RESOURCE`, `DATASPACE_RUN_FAILED`, `INTERNAL_ERROR`.\n\n## Async Extraction Flow\n\nDocuments \u22645 pages return results synchronously (`200`). Larger documents\n\u2014 or any request with `options: {"async": true}` \u2014 return `202 Accepted`.\n\n**1. Submit extraction:**\n\n```bash\ncurl -X POST https://api.talonic.com/v1/extract \\\n -H "Authorization: Bearer tlnc_live_abc123" \\\n -F "file=@contract.pdf" \\\n -F \'options={"async": true}\'\n```\n\nResponse `202`:\n```json\n{\n "request_id": "req_x7y8z9a0",\n "status": "processing",\n "document": { "id": "f0e1d2c3-b4a5-9687-8765-432109876543" },\n "poll_url": "/v1/documents/f0e1d2c3-b4a5-9687-8765-432109876543"\n}\n```\n\n**2. Poll until complete:**\n\n```bash\ncurl https://api.talonic.com/v1/documents/f0e1d2c3-b4a5-9687-8765-432109876543 \\\n -H "Authorization: Bearer tlnc_live_abc123"\n```\n\nWhile processing: `{ "status": "processing" }`\nWhen done: `{ "status": "completed" }`\n\n**3. Retrieve results:**\n\n```bash\ncurl https://api.talonic.com/v1/documents/f0e1d2c3-b4a5-9687-8765-432109876543/extractions \\\n -H "Authorization: Bearer tlnc_live_abc123"\n```\n\n**Python \u2014 complete async flow with exponential backoff:**\n\n```python\nimport time\nimport requests\n\nAPI_KEY = "tlnc_live_..."\nBASE = "https://api.talonic.com/v1"\nHEADERS = {"Authorization": f"Bearer {API_KEY}"}\n\n# Step 1: Submit async extraction\nresp = requests.post(f"{BASE}/extract",\n headers=HEADERS,\n files={"file": open("contract.pdf", "rb")},\n data={"options": \'{"async": true}\'})\ndoc_id = resp.json()["document"]["id"]\n\n# Step 2: Poll with exponential backoff (2s \u2192 4s \u2192 8s \u2192 16s \u2192 30s cap)\ndelay = 2\nfor _ in range(20):\n time.sleep(delay)\n doc = requests.get(f"{BASE}/documents/{doc_id}", headers=HEADERS).json()\n if doc["status"] == "completed":\n break\n if doc["status"] == "error":\n raise Exception(f"Extraction failed: {doc.get(\'error\')}")\n delay = min(delay * 2, 30)\n\n# Step 3: Retrieve extracted data\nextractions = requests.get(\n f"{BASE}/documents/{doc_id}/extractions", headers=HEADERS).json()\ndata = extractions["data"][0]["data"]\nconfidence = extractions["data"][0]["confidence"]["overall"]\nprint(f"Extracted {len(data)} fields (confidence: {confidence})")\nprint(data)\n# \u2192 {"vendor_name": "Acme Corp", "total_amount": 1250.00, ...}\n```\n\n**TypeScript \u2014 same flow:**\n\n```typescript\nconst API_KEY = "tlnc_live_...";\nconst BASE = "https://api.talonic.com/v1";\nconst headers = { Authorization: `Bearer ${API_KEY}` };\n\n// Step 1: Submit async extraction\nconst form = new FormData();\nform.append("file", fs.createReadStream("contract.pdf"));\nform.append("options", \'{"async": true}\');\nconst { document } = await fetch(`${BASE}/extract`, {\n method: "POST", headers, body: form,\n}).then((r) => r.json());\n\n// Step 2: Poll with exponential backoff\nlet delay = 2000;\nlet doc: any;\nfor (let i = 0; i < 20; i++) {\n await new Promise((r) => setTimeout(r, delay));\n doc = await fetch(`${BASE}/documents/${document.id}`, { headers }).then((r) => r.json());\n if (doc.status === "completed") break;\n if (doc.status === "error") throw new Error(`Extraction failed: ${doc.error}`);\n delay = Math.min(delay * 2, 30_000);\n}\n\n// Step 3: Retrieve extracted data\nconst { data: extractions } = await fetch(\n `${BASE}/documents/${document.id}/extractions`, { headers }\n).then((r) => r.json());\nconsole.log(extractions[0].data);\n// \u2192 { vendor_name: "Acme Corp", total_amount: 1250.00, ... }\n```\n\nRecommended polling: 2s initial, exponential backoff (2\u21924\u21928\u219216\u219230s cap),\ntimeout after 5 minutes.\n\n**Alternative \u2014 Webhooks:** Configure a delivery destination and listen for\n`document.extracted` events. See the Delivery tag.\n\n**Job status state machine:**\n`pending` \u2192 `queued` \u2192 `processing` \u2192 `complete` | `failed`\n\n## Performance\n\n| Document size | Expected latency | Max timeout |\n|---------------|------------------|-------------|\n| 1\u20135 pages | Sync, <3s | 30s |\n| 6\u201350 pages | <30s average | 5 min |\n| 50+ pages | <5 min average | 30 min |\n\n**Uptime SLA:** 99.5% (Build), 99.9% (Scale), custom (Enterprise).\n\n**Max file size:** 500 MB. JSON request bodies (schemas, jobs): 1 MB.\n\n**Idempotency:** Pass `Idempotency-Key` header on POST requests. Keys are\nvalid for 24 hours and scoped per API key. Duplicates return the cached\nresponse with `cached: true`.\n',
8
8
  contact: {
9
9
  name: "Talonic Support",
10
10
  email: "support@talonic.ai",
@@ -32,170 +32,39 @@ var openapi_default = {
32
32
  tags: [
33
33
  {
34
34
  name: "Extract",
35
- description: "Upload a document and extract structured data in one call."
35
+ description: "Upload a document and extract structured data in one call. Start here."
36
36
  },
37
37
  {
38
38
  name: "Documents",
39
- description: "Browse, inspect, and delete processed documents."
39
+ description: "Browse, inspect, and delete processed documents. Includes document type classification and OCR markdown retrieval."
40
40
  },
41
41
  {
42
42
  name: "Extractions",
43
- description: "Access and correct extracted data."
43
+ description: "Access extraction results, retrieve structured data in JSON or CSV, and submit field-level corrections."
44
44
  },
45
45
  {
46
46
  name: "Schemas",
47
- description: "Create and manage reusable extraction schemas."
47
+ description: "Create and manage reusable extraction schemas, schema graph classes, output dialects, and the field registry."
48
48
  },
49
49
  {
50
- name: "Jobs",
51
- description: "Track and control async processing jobs."
50
+ name: "Jobs & Batches",
51
+ description: "Track async processing jobs, poll for completion, retrieve result grids, and manage batch inference runs at 50% cost."
52
52
  },
53
53
  {
54
54
  name: "Sources",
55
- description: "Manage document ingest sources and upload documents into them."
56
- },
57
- {
58
- name: "Dialects",
59
- description: "Manage shared dialects \u2014 named presets for output format conventions (date format, number locale, CSV delimiter, encoding, boolean rendering)."
60
- },
61
- {
62
- name: "Matching",
63
- description: "Reference-data matching configurations and runs. Matches extracted document fields against reference datasets with weighted field mappings."
64
- },
65
- {
66
- name: "Routing",
67
- description: "Document routing rules that trigger actions when classification conditions are met."
55
+ description: "Create document ingest sources with dedicated API keys. Upload documents for automatic extraction."
68
56
  },
69
57
  {
70
58
  name: "Delivery",
71
- description: 'Outbound delivery. Configure destinations (webhook, sftp, s3, azure_blob,\ngoogle_drive, onedrive, google_sheets), create bindings that join signal\nfilters to deliverable types + serializers, and inspect delivery history.\n\n## Webhook Delivery Contract\n\n**Payload envelope:**\n```json\n{\n "event": {\n "event_type": "document.extracted",\n "event_id": "42",\n "binding_id": "uuid",\n "idempotency_key": "a1b2c3...32-char-hex",\n "attempt": 1,\n "delivered_at": "2026-04-25T14:30:00.000Z"\n },\n "payload": { "...serialized data..." }\n}\n```\n\n**Headers:** `X-Talonic-Event`, `X-Talonic-Delivery`, `X-Talonic-Signature`,\n`X-Talonic-Attempt`, `X-Talonic-Idempotency-Key`.\n\n**Signature verification (HMAC-SHA256):**\n```\nX-Talonic-Signature: t=1714060200000,v1=abc123...\nsigned = HMAC-SHA256(signing_secret, "${timestamp}.${body}")\n```\n\n**Event types:** `document.extracted`, `document.extraction_failed`,\n`run.dataspace.completed`, `run.dataspace.failed`,\n`result.dataspace.completed`, `result.approved`, `result.rejected`,\n`delivery.item.completed`, `delivery.item.failed` (17 total).\n\n**Retry policy:** Up to 7 attempts with exponential backoff:\n0s \u2192 30s \u2192 2m \u2192 8m \u2192 30m \u2192 2h \u2192 8h (~10.5h total).\nHTTP 429 and 5xx are retryable. HTTP 4xx (except 408) goes to DLQ immediately.\n\n**Dead-letter queue:** Failed deliveries land in the DLQ. Replay via\n`POST /v1/delivery/dlq/{id}/replay` which re-enqueues with attempt=1\nand the same idempotency key.\n'
72
- },
73
- {
74
- name: "Filter",
75
- description: "Structured filter queries over materialised document values plus omnisearch across documents, fields, and schemas."
76
- },
77
- {
78
- name: "Review",
79
- description: "Queue of validation records requiring human review; supports single- and batch-action approvals/rejections."
80
- },
81
- {
82
- name: "Quality",
83
- description: "Ground truth datasets and benchmark runs for measuring extraction accuracy."
84
- },
85
- {
86
- name: "Batches",
87
- description: "Batch inference runs. Extraction deferred to the provider's Message Batches API at 50% cost, 48h SLA."
88
- },
89
- {
90
- name: "Cases",
91
- description: "Document clusters linked through shared entity values. Cases are discovered automatically from the linking graph."
92
- },
93
- {
94
- name: "Document Types",
95
- description: "Canonical document type ontology and the customer's resolved types."
96
- },
97
- {
98
- name: "Fields",
99
- description: "Field registry \u2014 canonical field definitions discovered across the customer's documents plus cross-schema harmonization."
100
- },
101
- {
102
- name: "Reference Data",
103
- description: "Uploaded reference datasets (CSV/XLSX) used by matching configurations for lookups and joins."
104
- },
105
- {
106
- name: "Usage",
107
- description: "Aggregate and per-document API usage accounting (tokens, costs, operation types)."
108
- },
109
- {
110
- name: "Resolutions",
111
- description: "Resolution runs \u2014 apply field normalization, transforms, and lookup cascades to extracted data."
112
- },
113
- {
114
- name: "Linking",
115
- description: "Document linking graph \u2014 link keys, document links, entity graph, classification, and backfill operations."
116
- },
117
- {
118
- name: "N-Shot",
119
- description: "N-Shot comparison endpoints for job runs \u2014 summary, field comparisons, overrides, and judge decisions."
120
- },
121
- {
122
- name: "Schema Graph",
123
- description: "Schema class ontology \u2014 versioned classes, diffs with approval workflow, edges, aliases, and visualization."
124
- },
125
- {
126
- name: "Structuring",
127
- description: "Structuring pipeline \u2014 validation checks, approval gates with rules, result checks, pending approvals, and delivery triggers."
128
- },
129
- {
130
- name: "Telemetry",
131
- description: "Aggregate structuring metrics \u2014 capture hit rate, synthesize rate, strategy distribution, and tier funnel breakdowns per schema or run."
132
- },
133
- {
134
- name: "Validation",
135
- description: "Golden sample management and validation runs for measuring extraction accuracy against ground truth."
136
- },
137
- {
138
- name: "Credits",
139
- description: "Credit balance, usage history, daily breakdown, and per-request usage log."
140
- },
141
- {
142
- name: "Agent",
143
- description: "Workspace context snapshot and tool discovery for the embedded AI agent."
144
- }
145
- ],
146
- "x-tagGroups": [
147
- {
148
- name: "Getting Started",
149
- tags: [
150
- "Extract"
151
- ]
152
- },
153
- {
154
- name: "Core Resources",
155
- tags: [
156
- "Documents",
157
- "Extractions",
158
- "Schemas",
159
- "Jobs"
160
- ]
161
- },
162
- {
163
- name: "Data Pipeline",
164
- tags: [
165
- "Sources",
166
- "Batches",
167
- "Routing",
168
- "Delivery",
169
- "Filter",
170
- "Review"
171
- ]
59
+ description: 'Outbound delivery pipeline \u2014 routing rules, delivery destinations (webhook, SFTP,\nS3, Azure Blob, Google Drive, OneDrive), bindings, filters, and the delivery\nhistory/DLQ/events log.\n\n## Webhook Contract\n\n**Event payload:**\n```json\n{\n "event": {\n "event_type": "document.extracted",\n "event_id": "42",\n "binding_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",\n "idempotency_key": "c9f3a7e1b2d4f6a8e0c2d4f6a8e0c2d4",\n "attempt": 1,\n "delivered_at": "2026-04-25T14:30:00.000Z"\n },\n "payload": { "document_id": "...", "data": { "...extracted fields..." } }\n}\n```\n\n**Event types:** `document.extracted`, `document.extraction_failed`,\n`run.dataspace.completed`, `run.dataspace.failed`, `result.dataspace.completed`,\n`result.dataspace.failed`, `run.structuring.completed`, `run.structuring.failed`,\n`run.resolution.completed`, `run.resolution.failed`, `run.extraction.completed`,\n`run.extraction.failed`, `result.flagged`, `result.approved`, `result.rejected`,\n`delivery.item.completed`, `delivery.item.failed`.\n\n**Signature verification (HMAC-SHA256):**\n\nHeader: `X-Talonic-Signature: t=1714060200000,v1=abc123...`\n\n```javascript\nconst crypto = require(\'crypto\');\nconst [tPart, vPart] = signature.split(\',\');\nconst timestamp = tPart.split(\'=\')[1];\nconst received = vPart.split(\'=\')[1];\nconst expected = crypto.createHmac(\'sha256\', signingSecret)\n .update(timestamp + \'.\' + rawBody).digest(\'hex\');\nconst valid = crypto.timingSafeEqual(\n Buffer.from(received), Buffer.from(expected));\n```\n\n**Retry policy:** Up to 7 attempts \u2014 0s, 30s, 2m, 8m, 30m, 2h, 8h (~10.5h total).\nHTTP 429/5xx are retryable. HTTP 4xx (except 408) goes to DLQ immediately.\n\n**Dead-letter queue recovery:** When all retries are exhausted, the delivery\nlands in the DLQ. List failed deliveries with `GET /v1/delivery/dlq`\n(filterable by `binding_id` and `error_code`). Inspect a single entry with\n`GET /v1/delivery/dlq/{id}`. Replay with `POST /v1/delivery/dlq/{id}/replay`\n\u2014 this deletes the DLQ entry, re-signs the payload with the current\nsigning secret, resets the retry counter to attempt 1, and re-enqueues\nthe delivery through the full backoff ladder.\n'
172
60
  },
173
61
  {
174
62
  name: "Intelligence",
175
- tags: [
176
- "Matching",
177
- "Cases",
178
- "Linking",
179
- "Fields",
180
- "Reference Data",
181
- "Dialects",
182
- "Document Types",
183
- "Schema Graph",
184
- "N-Shot",
185
- "Resolutions"
186
- ]
63
+ description: "Reference-data matching, document linking graphs, case discovery, resolution runs, N-Shot comparisons, and reference dataset management."
187
64
  },
188
65
  {
189
66
  name: "Platform",
190
- tags: [
191
- "Usage",
192
- "Credits",
193
- "Quality",
194
- "Telemetry",
195
- "Validation",
196
- "Structuring",
197
- "Agent"
198
- ]
67
+ description: "Usage accounting, credit balance, quality benchmarks, structuring checks, validation runs, review queue, telemetry metrics, and the embedded AI agent."
199
68
  }
200
69
  ],
201
70
  paths: {
@@ -1513,7 +1382,7 @@ var openapi_default = {
1513
1382
  summary: "Create and queue a new job",
1514
1383
  description: "Start a new grid-based job that fills a user schema from a set of\ndocuments. Provide a `schema_id` and, optionally, the specific\n`document_ids` to run against. If `document_ids` is omitted or empty,\nall `completed` documents for the customer are used.\n",
1515
1384
  tags: [
1516
- "Jobs"
1385
+ "Jobs & Batches"
1517
1386
  ],
1518
1387
  requestBody: {
1519
1388
  required: true,
@@ -1575,7 +1444,7 @@ var openapi_default = {
1575
1444
  operationId: "listJobs",
1576
1445
  summary: "List jobs",
1577
1446
  tags: [
1578
- "Jobs"
1447
+ "Jobs & Batches"
1579
1448
  ],
1580
1449
  parameters: [
1581
1450
  {
@@ -1672,7 +1541,7 @@ var openapi_default = {
1672
1541
  operationId: "getJob",
1673
1542
  summary: "Get a job",
1674
1543
  tags: [
1675
- "Jobs"
1544
+ "Jobs & Batches"
1676
1545
  ],
1677
1546
  parameters: [
1678
1547
  {
@@ -1736,7 +1605,7 @@ var openapi_default = {
1736
1605
  summary: "Cancel a job",
1737
1606
  description: "Cancel a pending or processing job. Jobs that are already `complete` or\n`failed` cannot be cancelled and will return a 409 Conflict.\n",
1738
1607
  tags: [
1739
- "Jobs"
1608
+ "Jobs & Batches"
1740
1609
  ],
1741
1610
  parameters: [
1742
1611
  {
@@ -1778,7 +1647,7 @@ var openapi_default = {
1778
1647
  summary: "Get job result rows",
1779
1648
  description: "Return the extracted values for every document processed by this job,\none row per document. Includes per-row confidence and any validation\nflags raised during Phase 4.\n",
1780
1649
  tags: [
1781
- "Jobs"
1650
+ "Jobs & Batches"
1782
1651
  ],
1783
1652
  parameters: [
1784
1653
  {
@@ -2197,7 +2066,7 @@ var openapi_default = {
2197
2066
  summary: "List dialects",
2198
2067
  description: "Return every shared dialect defined for the authenticated customer.",
2199
2068
  tags: [
2200
- "Dialects"
2069
+ "Schemas"
2201
2070
  ],
2202
2071
  responses: {
2203
2072
  "200": {
@@ -2242,7 +2111,7 @@ var openapi_default = {
2242
2111
  summary: "Create a dialect",
2243
2112
  description: "Create a new shared dialect.",
2244
2113
  tags: [
2245
- "Dialects"
2114
+ "Schemas"
2246
2115
  ],
2247
2116
  requestBody: {
2248
2117
  required: true,
@@ -2292,7 +2161,7 @@ var openapi_default = {
2292
2161
  operationId: "getDialect",
2293
2162
  summary: "Get a dialect",
2294
2163
  tags: [
2295
- "Dialects"
2164
+ "Schemas"
2296
2165
  ],
2297
2166
  parameters: [
2298
2167
  {
@@ -2326,7 +2195,7 @@ var openapi_default = {
2326
2195
  summary: "Update a dialect",
2327
2196
  description: "Partial update. Only the keys present on the body are patched. Bumps the stored `version`.",
2328
2197
  tags: [
2329
- "Dialects"
2198
+ "Schemas"
2330
2199
  ],
2331
2200
  parameters: [
2332
2201
  {
@@ -2372,7 +2241,7 @@ var openapi_default = {
2372
2241
  operationId: "deleteDialect",
2373
2242
  summary: "Delete a dialect",
2374
2243
  tags: [
2375
- "Dialects"
2244
+ "Schemas"
2376
2245
  ],
2377
2246
  parameters: [
2378
2247
  {
@@ -2413,7 +2282,7 @@ var openapi_default = {
2413
2282
  operationId: "listMatchingConfigs",
2414
2283
  summary: "List matching configurations",
2415
2284
  tags: [
2416
- "Matching"
2285
+ "Intelligence"
2417
2286
  ],
2418
2287
  parameters: [
2419
2288
  {
@@ -2476,7 +2345,7 @@ var openapi_default = {
2476
2345
  summary: "Create a matching configuration",
2477
2346
  description: "Link a reference dataset to a target scope via weighted field mappings.\nThe reference dataset must belong to the authenticated customer.\n",
2478
2347
  tags: [
2479
- "Matching"
2348
+ "Intelligence"
2480
2349
  ],
2481
2350
  requestBody: {
2482
2351
  required: true,
@@ -2529,7 +2398,7 @@ var openapi_default = {
2529
2398
  operationId: "getMatchingConfig",
2530
2399
  summary: "Get a matching configuration",
2531
2400
  tags: [
2532
- "Matching"
2401
+ "Intelligence"
2533
2402
  ],
2534
2403
  parameters: [
2535
2404
  {
@@ -2563,7 +2432,7 @@ var openapi_default = {
2563
2432
  summary: "Update a matching configuration",
2564
2433
  description: "Partial update \u2014 only provided keys are applied.",
2565
2434
  tags: [
2566
- "Matching"
2435
+ "Intelligence"
2567
2436
  ],
2568
2437
  parameters: [
2569
2438
  {
@@ -2609,7 +2478,7 @@ var openapi_default = {
2609
2478
  operationId: "deleteMatchingConfig",
2610
2479
  summary: "Delete a matching configuration",
2611
2480
  tags: [
2612
- "Matching"
2481
+ "Intelligence"
2613
2482
  ],
2614
2483
  parameters: [
2615
2484
  {
@@ -2651,7 +2520,7 @@ var openapi_default = {
2651
2520
  summary: "Trigger a matching run",
2652
2521
  description: "Queue a new matching run for this configuration. The run is processed\nasynchronously; poll `GET /v1/matching/runs/{id}` for status.\n",
2653
2522
  tags: [
2654
- "Matching"
2523
+ "Intelligence"
2655
2524
  ],
2656
2525
  parameters: [
2657
2526
  {
@@ -2697,7 +2566,7 @@ var openapi_default = {
2697
2566
  summary: "List matching runs",
2698
2567
  description: "Returns up to the 100 most recent matching runs for the authenticated\ncustomer, optionally filtered by `config_id`. This endpoint is not\ncursor-paginated.\n",
2699
2568
  tags: [
2700
- "Matching"
2569
+ "Intelligence"
2701
2570
  ],
2702
2571
  parameters: [
2703
2572
  {
@@ -2745,7 +2614,7 @@ var openapi_default = {
2745
2614
  summary: "Get a matching run",
2746
2615
  description: "Returns the run summary together with up to the 50 top-confidence match results.",
2747
2616
  tags: [
2748
- "Matching"
2617
+ "Intelligence"
2749
2618
  ],
2750
2619
  parameters: [
2751
2620
  {
@@ -2781,7 +2650,7 @@ var openapi_default = {
2781
2650
  summary: "Cancel a matching run",
2782
2651
  description: "Cancel a queued or running matching run. Runs already in a terminal\nstate (`completed`, `failed`, `cancelled`) return 400.\n",
2783
2652
  tags: [
2784
- "Matching"
2653
+ "Intelligence"
2785
2654
  ],
2786
2655
  parameters: [
2787
2656
  {
@@ -2820,7 +2689,7 @@ var openapi_default = {
2820
2689
  summary: "List routing rules",
2821
2690
  description: "Paginated list of document routing rules, ordered by priority ascending (lowest runs first).",
2822
2691
  tags: [
2823
- "Routing"
2692
+ "Delivery"
2824
2693
  ],
2825
2694
  parameters: [
2826
2695
  {
@@ -2883,7 +2752,7 @@ var openapi_default = {
2883
2752
  summary: "Create a routing rule",
2884
2753
  description: "Create a rule that fires on `document_classified` triggers. The\n`actions.type` key (when present) controls the action kind\n(`route_to_schema` by default).\n",
2885
2754
  tags: [
2886
- "Routing"
2755
+ "Delivery"
2887
2756
  ],
2888
2757
  requestBody: {
2889
2758
  required: true,
@@ -2933,7 +2802,7 @@ var openapi_default = {
2933
2802
  operationId: "getRoutingRule",
2934
2803
  summary: "Get a routing rule",
2935
2804
  tags: [
2936
- "Routing"
2805
+ "Delivery"
2937
2806
  ],
2938
2807
  parameters: [
2939
2808
  {
@@ -2967,7 +2836,7 @@ var openapi_default = {
2967
2836
  summary: "Update a routing rule",
2968
2837
  description: "Partial update; only provided keys are patched.",
2969
2838
  tags: [
2970
- "Routing"
2839
+ "Delivery"
2971
2840
  ],
2972
2841
  parameters: [
2973
2842
  {
@@ -3013,7 +2882,7 @@ var openapi_default = {
3013
2882
  operationId: "deleteRoutingRule",
3014
2883
  summary: "Delete a routing rule",
3015
2884
  tags: [
3016
- "Routing"
2885
+ "Delivery"
3017
2886
  ],
3018
2887
  parameters: [
3019
2888
  {
@@ -4377,7 +4246,7 @@ var openapi_default = {
4377
4246
  summary: "Filter documents with structured conditions",
4378
4247
  description: "Query documents using an ordered list of filter conditions against\nmaterialised field values. Optional free-text `search` applies\nalongside the structured filter. `limit` is clamped to a server-side\nmaximum of 500.\n",
4379
4248
  tags: [
4380
- "Filter"
4249
+ "Delivery"
4381
4250
  ],
4382
4251
  requestBody: {
4383
4252
  required: true,
@@ -4429,7 +4298,7 @@ var openapi_default = {
4429
4298
  summary: "Omnisearch across documents, fields, and schemas",
4430
4299
  description: "Full-text search that returns multiple result collections in a single\nresponse: matching documents, field matches, sources, schemas, and\nfields.\n",
4431
4300
  tags: [
4432
- "Filter"
4301
+ "Delivery"
4433
4302
  ],
4434
4303
  parameters: [
4435
4304
  {
@@ -4478,7 +4347,7 @@ var openapi_default = {
4478
4347
  summary: "List review queue records",
4479
4348
  description: "Paginated list of validation records awaiting or having completed review.",
4480
4349
  tags: [
4481
- "Review"
4350
+ "Platform"
4482
4351
  ],
4483
4352
  parameters: [
4484
4353
  {
@@ -4551,7 +4420,7 @@ var openapi_default = {
4551
4420
  summary: "Apply a review action to many records",
4552
4421
  description: "Approve or reject many validation records in one call. Failed ids\n(not found or not owned by the customer) are reported in the\n`results` array rather than aborting the whole batch.\n",
4553
4422
  tags: [
4554
- "Review"
4423
+ "Platform"
4555
4424
  ],
4556
4425
  requestBody: {
4557
4426
  required: true,
@@ -4592,7 +4461,7 @@ var openapi_default = {
4592
4461
  summary: "Get a review record",
4593
4462
  description: "Returns the full record including per-field decisions and low-confidence field list.",
4594
4463
  tags: [
4595
- "Review"
4464
+ "Platform"
4596
4465
  ],
4597
4466
  parameters: [
4598
4467
  {
@@ -4627,7 +4496,7 @@ var openapi_default = {
4627
4496
  operationId: "performReviewAction",
4628
4497
  summary: "Approve or reject a review record",
4629
4498
  tags: [
4630
- "Review"
4499
+ "Platform"
4631
4500
  ],
4632
4501
  parameters: [
4633
4502
  {
@@ -4675,7 +4544,7 @@ var openapi_default = {
4675
4544
  operationId: "listGroundTruthDatasets",
4676
4545
  summary: "List ground truth datasets",
4677
4546
  tags: [
4678
- "Quality"
4547
+ "Platform"
4679
4548
  ],
4680
4549
  parameters: [
4681
4550
  {
@@ -4737,7 +4606,7 @@ var openapi_default = {
4737
4606
  operationId: "createGroundTruthDataset",
4738
4607
  summary: "Create a ground truth dataset",
4739
4608
  tags: [
4740
- "Quality"
4609
+ "Platform"
4741
4610
  ],
4742
4611
  requestBody: {
4743
4612
  required: true,
@@ -4788,7 +4657,7 @@ var openapi_default = {
4788
4657
  summary: "Get a ground truth dataset",
4789
4658
  description: "Returns the dataset together with its sample entries (curated known-correct values).",
4790
4659
  tags: [
4791
- "Quality"
4660
+ "Platform"
4792
4661
  ],
4793
4662
  parameters: [
4794
4663
  {
@@ -4823,7 +4692,7 @@ var openapi_default = {
4823
4692
  operationId: "listBenchmarkRuns",
4824
4693
  summary: "List benchmark runs",
4825
4694
  tags: [
4826
- "Quality"
4695
+ "Platform"
4827
4696
  ],
4828
4697
  parameters: [
4829
4698
  {
@@ -4888,7 +4757,7 @@ var openapi_default = {
4888
4757
  summary: "Get a benchmark run",
4889
4758
  description: "Returns the benchmark run together with its per-document results.",
4890
4759
  tags: [
4891
- "Quality"
4760
+ "Platform"
4892
4761
  ],
4893
4762
  parameters: [
4894
4763
  {
@@ -4924,7 +4793,7 @@ var openapi_default = {
4924
4793
  summary: "List batch inference runs",
4925
4794
  description: "Documents uploaded with `processing_mode=batch` accumulate in an\n`ExtractionBatch` and are submitted to the provider (Anthropic or\nBedrock) at 50% of the realtime cost with a 48h SLA. This endpoint\nreturns a paginated list of the customer's batches.\n",
4926
4795
  tags: [
4927
- "Batches"
4796
+ "Jobs & Batches"
4928
4797
  ],
4929
4798
  parameters: [
4930
4799
  {
@@ -4994,7 +4863,7 @@ var openapi_default = {
4994
4863
  summary: "Get a batch inference run",
4995
4864
  description: "Returns the batch metadata plus per-item status for every document in the batch.",
4996
4865
  tags: [
4997
- "Batches"
4866
+ "Jobs & Batches"
4998
4867
  ],
4999
4868
  parameters: [
5000
4869
  {
@@ -5030,7 +4899,7 @@ var openapi_default = {
5030
4899
  summary: "List cases",
5031
4900
  description: "Cases are document clusters discovered automatically from shared entity values across documents (BFS on the linking graph; inference mode may materialise them as first-class entities).",
5032
4901
  tags: [
5033
- "Cases"
4902
+ "Intelligence"
5034
4903
  ],
5035
4904
  parameters: [
5036
4905
  {
@@ -5085,7 +4954,7 @@ var openapi_default = {
5085
4954
  summary: "Get a case by key",
5086
4955
  description: "Case keys are 8\u201364 char hex strings (SHA-256 hash of the canonical\nentity-value set that defines the cluster). Returns the label,\nnarrative, linked documents, and anomaly count.\n",
5087
4956
  tags: [
5088
- "Cases"
4957
+ "Intelligence"
5089
4958
  ],
5090
4959
  parameters: [
5091
4960
  {
@@ -5131,7 +5000,7 @@ var openapi_default = {
5131
5000
  summary: "List document types",
5132
5001
  description: "Document types resolved for the authenticated customer, ordered by document count descending.",
5133
5002
  tags: [
5134
- "Document Types"
5003
+ "Documents"
5135
5004
  ],
5136
5005
  responses: {
5137
5006
  "200": {
@@ -5167,7 +5036,7 @@ var openapi_default = {
5167
5036
  summary: "Get the document type ontology",
5168
5037
  description: "Returns the canonical category summary (categories, subcategories, and types) used by the classifier.",
5169
5038
  tags: [
5170
- "Document Types"
5039
+ "Documents"
5171
5040
  ],
5172
5041
  responses: {
5173
5042
  "200": {
@@ -5205,7 +5074,7 @@ var openapi_default = {
5205
5074
  summary: "List fields",
5206
5075
  description: "Paginated list of fields from the field registry, filterable by search, tier, or cluster.",
5207
5076
  tags: [
5208
- "Fields"
5077
+ "Schemas"
5209
5078
  ],
5210
5079
  parameters: [
5211
5080
  {
@@ -5285,7 +5154,7 @@ var openapi_default = {
5285
5154
  summary: "Cross-schema field overlap",
5286
5155
  description: "Fields appearing in two or more schemas, grouped by `canonical_name`.\nUsed to reconcile field definitions across schemas (a field marked\n`is_universal: true` appears in every schema).\n",
5287
5156
  tags: [
5288
- "Fields"
5157
+ "Schemas"
5289
5158
  ],
5290
5159
  responses: {
5291
5160
  "200": {
@@ -5321,7 +5190,7 @@ var openapi_default = {
5321
5190
  summary: "Get a field",
5322
5191
  description: "Returns the field registry row plus up to 20 most recent occurrences.",
5323
5192
  tags: [
5324
- "Fields"
5193
+ "Schemas"
5325
5194
  ],
5326
5195
  parameters: [
5327
5196
  {
@@ -5357,7 +5226,7 @@ var openapi_default = {
5357
5226
  summary: "Get fields similar to this one",
5358
5227
  description: "Returns up to 10 fields most similar to this one by cosine similarity\non the `name_embedding` vector (all-MiniLM-L6-v2, 384 dims). Returns\nan empty `data` array if the field has no embedding computed yet.\n",
5359
5228
  tags: [
5360
- "Fields"
5229
+ "Schemas"
5361
5230
  ],
5362
5231
  parameters: [
5363
5232
  {
@@ -5437,7 +5306,7 @@ var openapi_default = {
5437
5306
  summary: "List reference datasets",
5438
5307
  description: "Uploaded reference datasets (CSV/XLSX) available for matching configurations.",
5439
5308
  tags: [
5440
- "Reference Data"
5309
+ "Intelligence"
5441
5310
  ],
5442
5311
  responses: {
5443
5312
  "200": {
@@ -5472,7 +5341,7 @@ var openapi_default = {
5472
5341
  operationId: "getReferenceData",
5473
5342
  summary: "Get a reference dataset",
5474
5343
  tags: [
5475
- "Reference Data"
5344
+ "Intelligence"
5476
5345
  ],
5477
5346
  parameters: [
5478
5347
  {
@@ -5505,7 +5374,7 @@ var openapi_default = {
5505
5374
  operationId: "deleteReferenceData",
5506
5375
  summary: "Delete a reference dataset",
5507
5376
  tags: [
5508
- "Reference Data"
5377
+ "Intelligence"
5509
5378
  ],
5510
5379
  parameters: [
5511
5380
  {
@@ -5546,7 +5415,7 @@ var openapi_default = {
5546
5415
  summary: "Get reference dataset rows (paginated)",
5547
5416
  description: "Returns the dataset's rows, paginated with page/limit (limit capped at 500).",
5548
5417
  tags: [
5549
- "Reference Data"
5418
+ "Intelligence"
5550
5419
  ],
5551
5420
  parameters: [
5552
5421
  {
@@ -5625,7 +5494,7 @@ var openapi_default = {
5625
5494
  summary: "Aggregate API usage stats",
5626
5495
  description: "Returns token and call counts aggregated by `operation_type` and\n`model` over the requested date range. Default range is the last 30\ndays.\n",
5627
5496
  tags: [
5628
- "Usage"
5497
+ "Platform"
5629
5498
  ],
5630
5499
  parameters: [
5631
5500
  {
@@ -5673,7 +5542,7 @@ var openapi_default = {
5673
5542
  summary: "Per-document API usage",
5674
5543
  description: "Returns per-document API usage entries and totals. 404 if no usage records exist for the document.",
5675
5544
  tags: [
5676
- "Usage"
5545
+ "Platform"
5677
5546
  ],
5678
5547
  parameters: [
5679
5548
  {
@@ -5708,7 +5577,7 @@ var openapi_default = {
5708
5577
  operationId: "listResolutions",
5709
5578
  summary: "List resolution runs",
5710
5579
  tags: [
5711
- "Resolutions"
5580
+ "Intelligence"
5712
5581
  ],
5713
5582
  parameters: [
5714
5583
  {
@@ -5760,7 +5629,7 @@ var openapi_default = {
5760
5629
  summary: "Create a resolution run",
5761
5630
  description: "Start a new resolution run targeting documents from a specific source run.",
5762
5631
  tags: [
5763
- "Resolutions"
5632
+ "Intelligence"
5764
5633
  ],
5765
5634
  requestBody: {
5766
5635
  required: true,
@@ -5811,7 +5680,7 @@ var openapi_default = {
5811
5680
  operationId: "getResolution",
5812
5681
  summary: "Get a resolution run",
5813
5682
  tags: [
5814
- "Resolutions"
5683
+ "Intelligence"
5815
5684
  ],
5816
5685
  parameters: [
5817
5686
  {
@@ -5844,7 +5713,7 @@ var openapi_default = {
5844
5713
  operationId: "deleteResolution",
5845
5714
  summary: "Delete a resolution run",
5846
5715
  tags: [
5847
- "Resolutions"
5716
+ "Intelligence"
5848
5717
  ],
5849
5718
  parameters: [
5850
5719
  {
@@ -5880,7 +5749,7 @@ var openapi_default = {
5880
5749
  summary: "Get resolution run results",
5881
5750
  description: "Returns the resolved data for all documents in the resolution run.",
5882
5751
  tags: [
5883
- "Resolutions"
5752
+ "Intelligence"
5884
5753
  ],
5885
5754
  parameters: [
5886
5755
  {
@@ -5925,7 +5794,7 @@ var openapi_default = {
5925
5794
  summary: "Execute a resolution run",
5926
5795
  description: "Trigger execution of a pending resolution run.",
5927
5796
  tags: [
5928
- "Resolutions"
5797
+ "Intelligence"
5929
5798
  ],
5930
5799
  parameters: [
5931
5800
  {
@@ -5961,7 +5830,7 @@ var openapi_default = {
5961
5830
  summary: "List link keys",
5962
5831
  description: "Returns all configured link keys (field-level entity identifiers used for document linking).",
5963
5832
  tags: [
5964
- "Linking"
5833
+ "Intelligence"
5965
5834
  ],
5966
5835
  responses: {
5967
5836
  "200": {
@@ -5997,7 +5866,7 @@ var openapi_default = {
5997
5866
  summary: "Get links for a document",
5998
5867
  description: "Returns all entity links discovered for a specific document.",
5999
5868
  tags: [
6000
- "Linking"
5869
+ "Intelligence"
6001
5870
  ],
6002
5871
  parameters: [
6003
5872
  {
@@ -6060,7 +5929,7 @@ var openapi_default = {
6060
5929
  summary: "Get the full linking graph",
6061
5930
  description: "Returns the bipartite document-entity graph for the customer.",
6062
5931
  tags: [
6063
- "Linking"
5932
+ "Intelligence"
6064
5933
  ],
6065
5934
  responses: {
6066
5935
  "200": {
@@ -6104,7 +5973,7 @@ var openapi_default = {
6104
5973
  summary: "Get graph neighbourhood for a document",
6105
5974
  description: "Returns the subgraph of entities and linked documents for a specific document.",
6106
5975
  tags: [
6107
- "Linking"
5976
+ "Intelligence"
6108
5977
  ],
6109
5978
  parameters: [
6110
5979
  {
@@ -6156,7 +6025,7 @@ var openapi_default = {
6156
6025
  summary: "Classify link keys",
6157
6026
  description: "Run AI classification on ambiguous fields to determine their link key category (identity, transaction, reference).",
6158
6027
  tags: [
6159
- "Linking"
6028
+ "Intelligence"
6160
6029
  ],
6161
6030
  responses: {
6162
6031
  "200": {
@@ -6196,7 +6065,7 @@ var openapi_default = {
6196
6065
  summary: "Backfill linking data",
6197
6066
  description: "Trigger a backfill of the linking graph for all documents. Useful after link key configuration changes.",
6198
6067
  tags: [
6199
- "Linking"
6068
+ "Intelligence"
6200
6069
  ],
6201
6070
  responses: {
6202
6071
  "202": {
@@ -6234,7 +6103,7 @@ var openapi_default = {
6234
6103
  summary: "Get backfill progress",
6235
6104
  description: "Returns the current progress of an in-flight backfill operation.",
6236
6105
  tags: [
6237
- "Linking"
6106
+ "Intelligence"
6238
6107
  ],
6239
6108
  responses: {
6240
6109
  "200": {
@@ -6279,7 +6148,7 @@ var openapi_default = {
6279
6148
  summary: "Get document-to-case mapping",
6280
6149
  description: "Returns a mapping of document IDs to their assigned case keys.",
6281
6150
  tags: [
6282
- "Linking"
6151
+ "Intelligence"
6283
6152
  ],
6284
6153
  responses: {
6285
6154
  "200": {
@@ -6316,7 +6185,7 @@ var openapi_default = {
6316
6185
  summary: "Get N-Shot summary for a run",
6317
6186
  description: "Returns an aggregate summary of N-Shot comparisons for a job run.",
6318
6187
  tags: [
6319
- "N-Shot"
6188
+ "Intelligence"
6320
6189
  ],
6321
6190
  parameters: [
6322
6191
  {
@@ -6361,7 +6230,7 @@ var openapi_default = {
6361
6230
  summary: "List N-Shot comparisons",
6362
6231
  description: "Returns all N-Shot comparisons for a job run.",
6363
6232
  tags: [
6364
- "N-Shot"
6233
+ "Intelligence"
6365
6234
  ],
6366
6235
  parameters: [
6367
6236
  {
@@ -6414,7 +6283,7 @@ var openapi_default = {
6414
6283
  summary: "Get a specific N-Shot comparison",
6415
6284
  description: "Returns a single N-Shot comparison filtered by document and field.",
6416
6285
  tags: [
6417
- "N-Shot"
6286
+ "Intelligence"
6418
6287
  ],
6419
6288
  parameters: [
6420
6289
  {
@@ -6479,7 +6348,7 @@ var openapi_default = {
6479
6348
  summary: "Override an N-Shot value",
6480
6349
  description: "Manually override the N-Shot selected value for a document-field pair.",
6481
6350
  tags: [
6482
- "N-Shot"
6351
+ "Intelligence"
6483
6352
  ],
6484
6353
  parameters: [
6485
6354
  {
@@ -6560,7 +6429,7 @@ var openapi_default = {
6560
6429
  summary: "Submit a judge decision for N-Shot",
6561
6430
  description: "Submit an AI or human judge decision on which N-Shot candidate is correct.",
6562
6431
  tags: [
6563
- "N-Shot"
6432
+ "Intelligence"
6564
6433
  ],
6565
6434
  parameters: [
6566
6435
  {
@@ -6642,7 +6511,7 @@ var openapi_default = {
6642
6511
  summary: "List schema graph classes",
6643
6512
  description: "Returns all classes in the schema graph ontology.",
6644
6513
  tags: [
6645
- "Schema Graph"
6514
+ "Schemas"
6646
6515
  ],
6647
6516
  responses: {
6648
6517
  "200": {
@@ -6677,7 +6546,7 @@ var openapi_default = {
6677
6546
  operationId: "getSchemaGraphClass",
6678
6547
  summary: "Get a schema graph class",
6679
6548
  tags: [
6680
- "Schema Graph"
6549
+ "Schemas"
6681
6550
  ],
6682
6551
  parameters: [
6683
6552
  {
@@ -6713,7 +6582,7 @@ var openapi_default = {
6713
6582
  summary: "List versions of a schema graph class",
6714
6583
  description: "Returns all published versions of a class, ordered by version number descending.",
6715
6584
  tags: [
6716
- "Schema Graph"
6585
+ "Schemas"
6717
6586
  ],
6718
6587
  parameters: [
6719
6588
  {
@@ -6773,7 +6642,7 @@ var openapi_default = {
6773
6642
  operationId: "getSchemaGraphClassVersion",
6774
6643
  summary: "Get a specific version of a schema graph class",
6775
6644
  tags: [
6776
- "Schema Graph"
6645
+ "Schemas"
6777
6646
  ],
6778
6647
  parameters: [
6779
6648
  {
@@ -6835,7 +6704,7 @@ var openapi_default = {
6835
6704
  summary: "List schema graph diffs",
6836
6705
  description: "Returns pending and processed diffs between class versions.",
6837
6706
  tags: [
6838
- "Schema Graph"
6707
+ "Schemas"
6839
6708
  ],
6840
6709
  responses: {
6841
6710
  "200": {
@@ -6871,7 +6740,7 @@ var openapi_default = {
6871
6740
  summary: "Approve a schema graph diff",
6872
6741
  description: "Approve a pending diff, promoting the changes to the live class version.",
6873
6742
  tags: [
6874
- "Schema Graph"
6743
+ "Schemas"
6875
6744
  ],
6876
6745
  parameters: [
6877
6746
  {
@@ -6907,7 +6776,7 @@ var openapi_default = {
6907
6776
  summary: "Reject a schema graph diff",
6908
6777
  description: "Reject a pending diff, discarding the proposed changes.",
6909
6778
  tags: [
6910
- "Schema Graph"
6779
+ "Schemas"
6911
6780
  ],
6912
6781
  parameters: [
6913
6782
  {
@@ -6943,7 +6812,7 @@ var openapi_default = {
6943
6812
  summary: "List schema graph edges",
6944
6813
  description: "Returns all edges (relationships) between schema graph classes.",
6945
6814
  tags: [
6946
- "Schema Graph"
6815
+ "Schemas"
6947
6816
  ],
6948
6817
  responses: {
6949
6818
  "200": {
@@ -6998,7 +6867,7 @@ var openapi_default = {
6998
6867
  summary: "List schema graph aliases",
6999
6868
  description: "Returns all class aliases (alternative names mapping to canonical class IDs).",
7000
6869
  tags: [
7001
- "Schema Graph"
6870
+ "Schemas"
7002
6871
  ],
7003
6872
  responses: {
7004
6873
  "200": {
@@ -7047,7 +6916,7 @@ var openapi_default = {
7047
6916
  summary: "Get schema graph visualization data",
7048
6917
  description: "Returns nodes and edges formatted for graph visualization (D3-compatible).",
7049
6918
  tags: [
7050
- "Schema Graph"
6919
+ "Schemas"
7051
6920
  ],
7052
6921
  responses: {
7053
6922
  "200": {
@@ -7091,7 +6960,7 @@ var openapi_default = {
7091
6960
  summary: "List structuring checks",
7092
6961
  description: "Returns all configured validation checks for the customer.",
7093
6962
  tags: [
7094
- "Structuring"
6963
+ "Platform"
7095
6964
  ],
7096
6965
  parameters: [
7097
6966
  {
@@ -7142,7 +7011,7 @@ var openapi_default = {
7142
7011
  operationId: "createStructuringCheck",
7143
7012
  summary: "Create a structuring check",
7144
7013
  tags: [
7145
- "Structuring"
7014
+ "Platform"
7146
7015
  ],
7147
7016
  requestBody: {
7148
7017
  required: true,
@@ -7182,7 +7051,7 @@ var openapi_default = {
7182
7051
  operationId: "getStructuringCheck",
7183
7052
  summary: "Get a structuring check",
7184
7053
  tags: [
7185
- "Structuring"
7054
+ "Platform"
7186
7055
  ],
7187
7056
  parameters: [
7188
7057
  {
@@ -7215,7 +7084,7 @@ var openapi_default = {
7215
7084
  operationId: "updateStructuringCheck",
7216
7085
  summary: "Update a structuring check",
7217
7086
  tags: [
7218
- "Structuring"
7087
+ "Platform"
7219
7088
  ],
7220
7089
  parameters: [
7221
7090
  {
@@ -7261,7 +7130,7 @@ var openapi_default = {
7261
7130
  operationId: "deleteStructuringCheck",
7262
7131
  summary: "Delete a structuring check",
7263
7132
  tags: [
7264
- "Structuring"
7133
+ "Platform"
7265
7134
  ],
7266
7135
  parameters: [
7267
7136
  {
@@ -7297,7 +7166,7 @@ var openapi_default = {
7297
7166
  summary: "List approval gates",
7298
7167
  description: "Returns all configured approval gates for the customer.",
7299
7168
  tags: [
7300
- "Structuring"
7169
+ "Platform"
7301
7170
  ],
7302
7171
  parameters: [
7303
7172
  {
@@ -7348,7 +7217,7 @@ var openapi_default = {
7348
7217
  operationId: "createStructuringGate",
7349
7218
  summary: "Create an approval gate",
7350
7219
  tags: [
7351
- "Structuring"
7220
+ "Platform"
7352
7221
  ],
7353
7222
  requestBody: {
7354
7223
  required: true,
@@ -7388,7 +7257,7 @@ var openapi_default = {
7388
7257
  operationId: "getStructuringGate",
7389
7258
  summary: "Get an approval gate",
7390
7259
  tags: [
7391
- "Structuring"
7260
+ "Platform"
7392
7261
  ],
7393
7262
  parameters: [
7394
7263
  {
@@ -7421,7 +7290,7 @@ var openapi_default = {
7421
7290
  operationId: "updateStructuringGate",
7422
7291
  summary: "Update an approval gate",
7423
7292
  tags: [
7424
- "Structuring"
7293
+ "Platform"
7425
7294
  ],
7426
7295
  parameters: [
7427
7296
  {
@@ -7467,7 +7336,7 @@ var openapi_default = {
7467
7336
  operationId: "deleteStructuringGate",
7468
7337
  summary: "Delete an approval gate",
7469
7338
  tags: [
7470
- "Structuring"
7339
+ "Platform"
7471
7340
  ],
7472
7341
  parameters: [
7473
7342
  {
@@ -7502,7 +7371,7 @@ var openapi_default = {
7502
7371
  operationId: "addStructuringGateRule",
7503
7372
  summary: "Add a rule to an approval gate",
7504
7373
  tags: [
7505
- "Structuring"
7374
+ "Platform"
7506
7375
  ],
7507
7376
  parameters: [
7508
7377
  {
@@ -7563,7 +7432,7 @@ var openapi_default = {
7563
7432
  operationId: "deleteStructuringGateRule",
7564
7433
  summary: "Remove a rule from an approval gate",
7565
7434
  tags: [
7566
- "Structuring"
7435
+ "Platform"
7567
7436
  ],
7568
7437
  parameters: [
7569
7438
  {
@@ -7619,7 +7488,7 @@ var openapi_default = {
7619
7488
  summary: "Get check results for a structuring result",
7620
7489
  description: "Returns the validation check outcomes for a specific structuring result.",
7621
7490
  tags: [
7622
- "Structuring"
7491
+ "Platform"
7623
7492
  ],
7624
7493
  parameters: [
7625
7494
  {
@@ -7682,7 +7551,7 @@ var openapi_default = {
7682
7551
  summary: "List pending approvals",
7683
7552
  description: "Returns structuring results awaiting manual approval.",
7684
7553
  tags: [
7685
- "Structuring"
7554
+ "Platform"
7686
7555
  ],
7687
7556
  parameters: [
7688
7557
  {
@@ -7733,7 +7602,7 @@ var openapi_default = {
7733
7602
  operationId: "approveStructuringResult",
7734
7603
  summary: "Approve a structuring result",
7735
7604
  tags: [
7736
- "Structuring"
7605
+ "Platform"
7737
7606
  ],
7738
7607
  parameters: [
7739
7608
  {
@@ -7779,7 +7648,7 @@ var openapi_default = {
7779
7648
  operationId: "rejectStructuringResult",
7780
7649
  summary: "Reject a structuring result",
7781
7650
  tags: [
7782
- "Structuring"
7651
+ "Platform"
7783
7652
  ],
7784
7653
  parameters: [
7785
7654
  {
@@ -7826,7 +7695,7 @@ var openapi_default = {
7826
7695
  summary: "Trigger delivery for a structuring run",
7827
7696
  description: "Emit delivery signals for all approved results in the run.",
7828
7697
  tags: [
7829
- "Structuring"
7698
+ "Platform"
7830
7699
  ],
7831
7700
  parameters: [
7832
7701
  {
@@ -7878,7 +7747,7 @@ var openapi_default = {
7878
7747
  summary: "Get telemetry summary for a schema",
7879
7748
  description: "Aggregate structuring metrics for a schema \u2014 capture hit rate, synthesize rate, strategy distribution, tier funnel.",
7880
7749
  tags: [
7881
- "Telemetry"
7750
+ "Platform"
7882
7751
  ],
7883
7752
  parameters: [
7884
7753
  {
@@ -7915,7 +7784,7 @@ var openapi_default = {
7915
7784
  summary: "Get telemetry trend for a schema",
7916
7785
  description: "Time-series telemetry data for a schema over recent runs.",
7917
7786
  tags: [
7918
- "Telemetry"
7787
+ "Platform"
7919
7788
  ],
7920
7789
  parameters: [
7921
7790
  {
@@ -7960,7 +7829,7 @@ var openapi_default = {
7960
7829
  summary: "Get per-field telemetry for a schema",
7961
7830
  description: "Field-level structuring metrics \u2014 per-field state distribution, capture rates, and strategy breakdown.",
7962
7831
  tags: [
7963
- "Telemetry"
7832
+ "Platform"
7964
7833
  ],
7965
7834
  parameters: [
7966
7835
  {
@@ -8005,7 +7874,7 @@ var openapi_default = {
8005
7874
  summary: "Get telemetry summary for a run",
8006
7875
  description: "Aggregate structuring metrics for a specific job run.",
8007
7876
  tags: [
8008
- "Telemetry"
7877
+ "Platform"
8009
7878
  ],
8010
7879
  parameters: [
8011
7880
  {
@@ -8042,7 +7911,7 @@ var openapi_default = {
8042
7911
  summary: "List golden samples",
8043
7912
  description: "Returns all golden sample datasets for the customer.",
8044
7913
  tags: [
8045
- "Validation"
7914
+ "Platform"
8046
7915
  ],
8047
7916
  parameters: [
8048
7917
  {
@@ -8095,7 +7964,7 @@ var openapi_default = {
8095
7964
  operationId: "getGoldenSample",
8096
7965
  summary: "Get a golden sample",
8097
7966
  tags: [
8098
- "Validation"
7967
+ "Platform"
8099
7968
  ],
8100
7969
  parameters: [
8101
7970
  {
@@ -8128,7 +7997,7 @@ var openapi_default = {
8128
7997
  operationId: "deleteGoldenSample",
8129
7998
  summary: "Delete a golden sample",
8130
7999
  tags: [
8131
- "Validation"
8000
+ "Platform"
8132
8001
  ],
8133
8002
  parameters: [
8134
8003
  {
@@ -8163,7 +8032,7 @@ var openapi_default = {
8163
8032
  operationId: "listValidationRuns",
8164
8033
  summary: "List validation runs",
8165
8034
  tags: [
8166
- "Validation"
8035
+ "Platform"
8167
8036
  ],
8168
8037
  parameters: [
8169
8038
  {
@@ -8215,7 +8084,7 @@ var openapi_default = {
8215
8084
  summary: "Create a validation run",
8216
8085
  description: "Start a new validation run against a golden sample dataset.",
8217
8086
  tags: [
8218
- "Validation"
8087
+ "Platform"
8219
8088
  ],
8220
8089
  requestBody: {
8221
8090
  required: true,
@@ -8272,7 +8141,7 @@ var openapi_default = {
8272
8141
  operationId: "getValidationRun",
8273
8142
  summary: "Get a validation run",
8274
8143
  tags: [
8275
- "Validation"
8144
+ "Platform"
8276
8145
  ],
8277
8146
  parameters: [
8278
8147
  {
@@ -8305,7 +8174,7 @@ var openapi_default = {
8305
8174
  operationId: "deleteValidationRun",
8306
8175
  summary: "Delete a validation run",
8307
8176
  tags: [
8308
- "Validation"
8177
+ "Platform"
8309
8178
  ],
8310
8179
  parameters: [
8311
8180
  {
@@ -8341,7 +8210,7 @@ var openapi_default = {
8341
8210
  summary: "Get validation run results",
8342
8211
  description: "Returns per-document and per-field accuracy results for the validation run.",
8343
8212
  tags: [
8344
- "Validation"
8213
+ "Platform"
8345
8214
  ],
8346
8215
  parameters: [
8347
8216
  {
@@ -8397,7 +8266,7 @@ var openapi_default = {
8397
8266
  summary: "Get credit balance",
8398
8267
  description: "Returns the current credit balance for the authenticated customer.",
8399
8268
  tags: [
8400
- "Credits"
8269
+ "Platform"
8401
8270
  ],
8402
8271
  responses: {
8403
8272
  "200": {
@@ -8444,7 +8313,7 @@ var openapi_default = {
8444
8313
  summary: "Get credit history",
8445
8314
  description: "Returns credit transaction history (purchases, deductions, adjustments).",
8446
8315
  tags: [
8447
- "Credits"
8316
+ "Platform"
8448
8317
  ],
8449
8318
  parameters: [
8450
8319
  {
@@ -8524,7 +8393,7 @@ var openapi_default = {
8524
8393
  summary: "Get credit usage summary",
8525
8394
  description: "Returns aggregate credit usage broken down by feature.",
8526
8395
  tags: [
8527
- "Credits"
8396
+ "Platform"
8528
8397
  ],
8529
8398
  parameters: [
8530
8399
  {
@@ -8596,7 +8465,7 @@ var openapi_default = {
8596
8465
  summary: "Get daily credit usage",
8597
8466
  description: "Returns per-day credit usage for the specified period (default last 30 days).",
8598
8467
  tags: [
8599
- "Credits"
8468
+ "Platform"
8600
8469
  ],
8601
8470
  parameters: [
8602
8471
  {
@@ -8665,7 +8534,7 @@ var openapi_default = {
8665
8534
  summary: "Get credit usage log",
8666
8535
  description: "Returns a detailed per-request usage log with model, tokens, and cost.",
8667
8536
  tags: [
8668
- "Credits"
8537
+ "Platform"
8669
8538
  ],
8670
8539
  parameters: [
8671
8540
  {
@@ -8744,7 +8613,7 @@ var openapi_default = {
8744
8613
  operationId: "updateCaseStatus",
8745
8614
  summary: "Update case status",
8746
8615
  tags: [
8747
- "Cases"
8616
+ "Intelligence"
8748
8617
  ],
8749
8618
  parameters: [
8750
8619
  {
@@ -8809,7 +8678,7 @@ var openapi_default = {
8809
8678
  summary: "Get case edges",
8810
8679
  description: "Returns the entity edges (evidence chain) connecting documents within the case.",
8811
8680
  tags: [
8812
- "Cases"
8681
+ "Intelligence"
8813
8682
  ],
8814
8683
  parameters: [
8815
8684
  {
@@ -8881,7 +8750,7 @@ var openapi_default = {
8881
8750
  summary: "Confirm a case edge",
8882
8751
  description: "Confirm a proposed entity edge between documents.",
8883
8752
  tags: [
8884
- "Cases"
8753
+ "Intelligence"
8885
8754
  ],
8886
8755
  requestBody: {
8887
8756
  required: true,
@@ -8947,7 +8816,7 @@ var openapi_default = {
8947
8816
  summary: "Reject a case edge",
8948
8817
  description: "Reject a proposed entity edge between documents.",
8949
8818
  tags: [
8950
- "Cases"
8819
+ "Intelligence"
8951
8820
  ],
8952
8821
  requestBody: {
8953
8822
  required: true,
@@ -9013,7 +8882,7 @@ var openapi_default = {
9013
8882
  summary: "Split a case",
9014
8883
  description: "Split a case into two separate cases by dividing documents.",
9015
8884
  tags: [
9016
- "Cases"
8885
+ "Intelligence"
9017
8886
  ],
9018
8887
  parameters: [
9019
8888
  {
@@ -9090,7 +8959,7 @@ var openapi_default = {
9090
8959
  summary: "Merge cases",
9091
8960
  description: "Merge another case into this one, combining all documents.",
9092
8961
  tags: [
9093
- "Cases"
8962
+ "Intelligence"
9094
8963
  ],
9095
8964
  parameters: [
9096
8965
  {
@@ -9154,7 +9023,7 @@ var openapi_default = {
9154
9023
  summary: "Get case completeness",
9155
9024
  description: "Returns a completeness assessment for the case (expected vs. present document types, missing fields).",
9156
9025
  tags: [
9157
- "Cases"
9026
+ "Intelligence"
9158
9027
  ],
9159
9028
  parameters: [
9160
9029
  {
@@ -9220,7 +9089,7 @@ var openapi_default = {
9220
9089
  summary: "Pin documents to a case",
9221
9090
  description: "Manually pin one or more documents to a case.",
9222
9091
  tags: [
9223
- "Cases"
9092
+ "Intelligence"
9224
9093
  ],
9225
9094
  parameters: [
9226
9095
  {
@@ -9288,7 +9157,7 @@ var openapi_default = {
9288
9157
  summary: "Remove documents from a case",
9289
9158
  description: "Remove one or more manually-pinned documents from a case.",
9290
9159
  tags: [
9291
- "Cases"
9160
+ "Intelligence"
9292
9161
  ],
9293
9162
  parameters: [
9294
9163
  {
@@ -9356,7 +9225,7 @@ var openapi_default = {
9356
9225
  summary: "Sync batch status with provider",
9357
9226
  description: "Force a status sync with the batch inference provider (Anthropic or Bedrock).",
9358
9227
  tags: [
9359
- "Batches"
9228
+ "Jobs & Batches"
9360
9229
  ],
9361
9230
  parameters: [
9362
9231
  {
@@ -9392,7 +9261,7 @@ var openapi_default = {
9392
9261
  summary: "Cancel a batch inference run",
9393
9262
  description: "Cancel an in-flight batch. Only batches in `accumulating` or `submitted` status can be cancelled.",
9394
9263
  tags: [
9395
- "Batches"
9264
+ "Jobs & Batches"
9396
9265
  ],
9397
9266
  parameters: [
9398
9267
  {
@@ -9431,7 +9300,7 @@ var openapi_default = {
9431
9300
  summary: "Trigger a smart matching run",
9432
9301
  description: "AI-driven matching run that auto-suggests field mappings and strategies based on schema and reference data.",
9433
9302
  tags: [
9434
- "Matching"
9303
+ "Intelligence"
9435
9304
  ],
9436
9305
  requestBody: {
9437
9306
  required: true,
@@ -9486,7 +9355,7 @@ var openapi_default = {
9486
9355
  summary: "AI-resolve ambiguous matches",
9487
9356
  description: "Use AI to resolve ambiguous match candidates where confidence is below the auto-accept threshold.",
9488
9357
  tags: [
9489
- "Matching"
9358
+ "Intelligence"
9490
9359
  ],
9491
9360
  requestBody: {
9492
9361
  required: true,
@@ -9549,7 +9418,7 @@ var openapi_default = {
9549
9418
  summary: "List matching strategies",
9550
9419
  description: "Returns available matching strategies and their configurations.",
9551
9420
  tags: [
9552
- "Matching"
9421
+ "Intelligence"
9553
9422
  ],
9554
9423
  responses: {
9555
9424
  "200": {
@@ -9599,7 +9468,7 @@ var openapi_default = {
9599
9468
  operationId: "createMatchingStrategy",
9600
9469
  summary: "Create a matching strategy",
9601
9470
  tags: [
9602
- "Matching"
9471
+ "Intelligence"
9603
9472
  ],
9604
9473
  requestBody: {
9605
9474
  required: true,
@@ -9658,7 +9527,7 @@ var openapi_default = {
9658
9527
  operationId: "getMatchingStrategy",
9659
9528
  summary: "Get a matching strategy",
9660
9529
  tags: [
9661
- "Matching"
9530
+ "Intelligence"
9662
9531
  ],
9663
9532
  parameters: [
9664
9533
  {
@@ -9692,7 +9561,7 @@ var openapi_default = {
9692
9561
  operationId: "updateMatchingStrategy",
9693
9562
  summary: "Update a matching strategy",
9694
9563
  tags: [
9695
- "Matching"
9564
+ "Intelligence"
9696
9565
  ],
9697
9566
  parameters: [
9698
9567
  {
@@ -9748,7 +9617,7 @@ var openapi_default = {
9748
9617
  operationId: "deleteMatchingStrategy",
9749
9618
  summary: "Delete a matching strategy",
9750
9619
  tags: [
9751
- "Matching"
9620
+ "Intelligence"
9752
9621
  ],
9753
9622
  parameters: [
9754
9623
  {
@@ -9784,7 +9653,7 @@ var openapi_default = {
9784
9653
  summary: "Get matching run results",
9785
9654
  description: "Returns per-document match results with top candidates and field-level evidence.",
9786
9655
  tags: [
9787
- "Matching"
9656
+ "Intelligence"
9788
9657
  ],
9789
9658
  parameters: [
9790
9659
  {
@@ -9829,7 +9698,7 @@ var openapi_default = {
9829
9698
  summary: "Get matching run progress",
9830
9699
  description: "Returns the processing progress for an in-flight matching run.",
9831
9700
  tags: [
9832
- "Matching"
9701
+ "Intelligence"
9833
9702
  ],
9834
9703
  parameters: [
9835
9704
  {
@@ -9881,7 +9750,7 @@ var openapi_default = {
9881
9750
  summary: "Submit matching review decisions",
9882
9751
  description: "Submit accept/reject decisions on match candidates.",
9883
9752
  tags: [
9884
- "Matching"
9753
+ "Intelligence"
9885
9754
  ],
9886
9755
  requestBody: {
9887
9756
  required: true,
@@ -9963,7 +9832,7 @@ var openapi_default = {
9963
9832
  summary: "Assign review records",
9964
9833
  description: "Assign one or more review records to a team member.",
9965
9834
  tags: [
9966
- "Review"
9835
+ "Platform"
9967
9836
  ],
9968
9837
  requestBody: {
9969
9838
  required: true,
@@ -10029,7 +9898,7 @@ var openapi_default = {
10029
9898
  summary: "Get review queue statistics",
10030
9899
  description: "Returns aggregate statistics about the review queue (pending, approved, rejected counts).",
10031
9900
  tags: [
10032
- "Review"
9901
+ "Platform"
10033
9902
  ],
10034
9903
  responses: {
10035
9904
  "200": {
@@ -10070,7 +9939,7 @@ var openapi_default = {
10070
9939
  operationId: "listGroundTruthEntries",
10071
9940
  summary: "List entries in a ground truth dataset",
10072
9941
  tags: [
10073
- "Quality"
9942
+ "Platform"
10074
9943
  ],
10075
9944
  parameters: [
10076
9945
  {
@@ -10124,7 +9993,7 @@ var openapi_default = {
10124
9993
  operationId: "createGroundTruthEntry",
10125
9994
  summary: "Add an entry to a ground truth dataset",
10126
9995
  tags: [
10127
- "Quality"
9996
+ "Platform"
10128
9997
  ],
10129
9998
  parameters: [
10130
9999
  {
@@ -10190,7 +10059,7 @@ var openapi_default = {
10190
10059
  operationId: "updateGroundTruthEntry",
10191
10060
  summary: "Update a ground truth entry",
10192
10061
  tags: [
10193
- "Quality"
10062
+ "Platform"
10194
10063
  ],
10195
10064
  parameters: [
10196
10065
  {
@@ -10254,7 +10123,7 @@ var openapi_default = {
10254
10123
  operationId: "deleteGroundTruthEntry",
10255
10124
  summary: "Delete a ground truth entry",
10256
10125
  tags: [
10257
- "Quality"
10126
+ "Platform"
10258
10127
  ],
10259
10128
  parameters: [
10260
10129
  {
@@ -10301,7 +10170,7 @@ var openapi_default = {
10301
10170
  summary: "Get benchmark results",
10302
10171
  description: "Returns per-document accuracy results for a benchmark run.",
10303
10172
  tags: [
10304
- "Quality"
10173
+ "Platform"
10305
10174
  ],
10306
10175
  parameters: [
10307
10176
  {
@@ -10345,7 +10214,7 @@ var openapi_default = {
10345
10214
  summary: "Compare two benchmark runs",
10346
10215
  description: "Returns accuracy deltas between the target benchmark and a comparison run.",
10347
10216
  tags: [
10348
- "Quality"
10217
+ "Platform"
10349
10218
  ],
10350
10219
  parameters: [
10351
10220
  {
@@ -10417,7 +10286,7 @@ var openapi_default = {
10417
10286
  summary: "Create reference data from JSON",
10418
10287
  description: "Create a new reference dataset by uploading JSON data directly (alternative to CSV/XLSX file upload).",
10419
10288
  tags: [
10420
- "Reference Data"
10289
+ "Intelligence"
10421
10290
  ],
10422
10291
  requestBody: {
10423
10292
  required: true,
@@ -10483,7 +10352,7 @@ var openapi_default = {
10483
10352
  summary: "Get workspace context",
10484
10353
  description: "Returns a snapshot of the workspace's current state for the embedded\nAI agent \u2014 document counts, active schemas, recent jobs, and feature\nflags. Useful for bootstrapping agent conversations.\n",
10485
10354
  tags: [
10486
- "Agent"
10355
+ "Platform"
10487
10356
  ],
10488
10357
  responses: {
10489
10358
  "200": {
@@ -10538,7 +10407,7 @@ var openapi_default = {
10538
10407
  summary: "List available agent tools",
10539
10408
  description: "Returns the set of tools the embedded AI agent can invoke in the\ncurrent workspace, including their names, descriptions, parameter\nschemas, and tier requirements.\n",
10540
10409
  tags: [
10541
- "Agent"
10410
+ "Platform"
10542
10411
  ],
10543
10412
  responses: {
10544
10413
  "200": {
@@ -10916,6 +10785,99 @@ var openapi_default = {
10916
10785
  }
10917
10786
  }
10918
10787
  },
10788
+ WebhookEvent: {
10789
+ type: "object",
10790
+ description: "Webhook delivery payload sent to configured destinations.",
10791
+ required: [
10792
+ "event"
10793
+ ],
10794
+ properties: {
10795
+ event: {
10796
+ type: "object",
10797
+ required: [
10798
+ "event_type",
10799
+ "event_id",
10800
+ "binding_id",
10801
+ "idempotency_key",
10802
+ "attempt",
10803
+ "delivered_at"
10804
+ ],
10805
+ properties: {
10806
+ event_type: {
10807
+ type: "string",
10808
+ description: "The event that triggered this delivery. One of:\ndocument.extracted, document.extraction_failed,\nrun.dataspace.completed, run.dataspace.failed,\nresult.dataspace.completed, result.dataspace.failed,\nrun.structuring.completed, run.structuring.failed,\nrun.resolution.completed, run.resolution.failed,\nrun.extraction.completed, run.extraction.failed,\nresult.flagged, result.approved, result.rejected,\ndelivery.item.completed, delivery.item.failed.\n",
10809
+ example: "document.extracted"
10810
+ },
10811
+ event_id: {
10812
+ type: "string",
10813
+ description: "Monotonically increasing event sequence ID.",
10814
+ example: "42"
10815
+ },
10816
+ binding_id: {
10817
+ type: "string",
10818
+ format: "uuid",
10819
+ description: "The delivery binding that matched this event.",
10820
+ example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
10821
+ },
10822
+ idempotency_key: {
10823
+ type: "string",
10824
+ description: "32-character hex key derived from binding_id + event_id. Stable across retries.",
10825
+ example: "c9f3a7e1b2d4f6a8e0c2d4f6a8e0c2d4"
10826
+ },
10827
+ attempt: {
10828
+ type: "integer",
10829
+ description: "Delivery attempt number (1\u20137).",
10830
+ example: 1
10831
+ },
10832
+ delivered_at: {
10833
+ type: "string",
10834
+ format: "date-time",
10835
+ description: "Timestamp of this delivery attempt.",
10836
+ example: "2026-04-25T14:30:00.000Z"
10837
+ }
10838
+ }
10839
+ },
10840
+ payload: {
10841
+ type: "object",
10842
+ description: "Serialized deliverable data. Shape depends on the deliverable type and serializer format configured on the binding.",
10843
+ additionalProperties: true,
10844
+ example: {
10845
+ document_id: "f0e1d2c3-b4a5-9687-8765-432109876543",
10846
+ filename: "invoice-042.pdf",
10847
+ status: "completed",
10848
+ data: {
10849
+ invoice_number: "INV-2024-0042",
10850
+ total_amount: 1250
10851
+ }
10852
+ }
10853
+ },
10854
+ content: {
10855
+ type: [
10856
+ "object",
10857
+ "null"
10858
+ ],
10859
+ description: "Binary content envelope (for file-type serializers like CSV/XLSX). Null when payload is used instead.",
10860
+ properties: {
10861
+ mime: {
10862
+ type: "string",
10863
+ example: "text/csv"
10864
+ },
10865
+ encoding: {
10866
+ type: "string",
10867
+ enum: [
10868
+ "utf-8",
10869
+ "base64"
10870
+ ],
10871
+ example: "utf-8"
10872
+ },
10873
+ data: {
10874
+ type: "string",
10875
+ description: "UTF-8 text or base64-encoded binary."
10876
+ }
10877
+ }
10878
+ }
10879
+ }
10880
+ },
10919
10881
  PaginatedResponse: {
10920
10882
  type: "object",
10921
10883
  properties: {