@talonic/docs 0.10.0 → 0.12.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.
- package/dist/seo.js +982 -285
- package/dist/tailwind-preset.d.cts +45 -0
- package/dist/tailwind-preset.d.ts +45 -0
- package/openapi.json +982 -285
- 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:
|
|
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',
|
|
8
8
|
contact: {
|
|
9
9
|
name: "Talonic Support",
|
|
10
10
|
email: "support@talonic.ai",
|
|
@@ -68,7 +68,7 @@ var openapi_default = {
|
|
|
68
68
|
},
|
|
69
69
|
{
|
|
70
70
|
name: "Delivery",
|
|
71
|
-
description:
|
|
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
72
|
},
|
|
73
73
|
{
|
|
74
74
|
name: "Filter",
|
|
@@ -143,6 +143,61 @@ var openapi_default = {
|
|
|
143
143
|
description: "Workspace context snapshot and tool discovery for the embedded AI agent."
|
|
144
144
|
}
|
|
145
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
|
+
]
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
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
|
+
]
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
name: "Platform",
|
|
190
|
+
tags: [
|
|
191
|
+
"Usage",
|
|
192
|
+
"Credits",
|
|
193
|
+
"Quality",
|
|
194
|
+
"Telemetry",
|
|
195
|
+
"Validation",
|
|
196
|
+
"Structuring",
|
|
197
|
+
"Agent"
|
|
198
|
+
]
|
|
199
|
+
}
|
|
200
|
+
],
|
|
146
201
|
paths: {
|
|
147
202
|
"/v1/extract": {
|
|
148
203
|
post: {
|
|
@@ -172,6 +227,7 @@ var openapi_default = {
|
|
|
172
227
|
document_id: {
|
|
173
228
|
type: "string",
|
|
174
229
|
format: "uuid",
|
|
230
|
+
example: "f0e1d2c3-b4a5-9687-8765-432109876543",
|
|
175
231
|
description: "ID of an already-uploaded document to re-extract."
|
|
176
232
|
},
|
|
177
233
|
schema: {
|
|
@@ -181,6 +237,7 @@ var openapi_default = {
|
|
|
181
237
|
schema_id: {
|
|
182
238
|
type: "string",
|
|
183
239
|
format: "uuid",
|
|
240
|
+
example: "b2c3d4e5-f6a7-8901-bcde-f12345678901",
|
|
184
241
|
description: "ID of a saved schema to use for extraction."
|
|
185
242
|
},
|
|
186
243
|
instructions: {
|
|
@@ -233,6 +290,77 @@ var openapi_default = {
|
|
|
233
290
|
"application/json": {
|
|
234
291
|
schema: {
|
|
235
292
|
$ref: "#/components/schemas/ExtractSyncResponse"
|
|
293
|
+
},
|
|
294
|
+
example: {
|
|
295
|
+
extraction_id: "d1a2b3c4-5678-9abc-def0-1234567890ab",
|
|
296
|
+
request_id: "req_x7y8z9a0b1c2d3e4",
|
|
297
|
+
status: "complete",
|
|
298
|
+
document: {
|
|
299
|
+
id: "f0e1d2c3-b4a5-9687-8765-432109876543",
|
|
300
|
+
filename: "invoice-042.pdf",
|
|
301
|
+
pages: 3,
|
|
302
|
+
size_bytes: 245760,
|
|
303
|
+
type_detected: "Invoice",
|
|
304
|
+
language_detected: "en"
|
|
305
|
+
},
|
|
306
|
+
data: {
|
|
307
|
+
invoice_number: "INV-2024-0042",
|
|
308
|
+
invoice_date: "2024-03-15",
|
|
309
|
+
vendor_name: "Acme Corp",
|
|
310
|
+
total_amount: 1250,
|
|
311
|
+
currency: "EUR",
|
|
312
|
+
line_items: [
|
|
313
|
+
{
|
|
314
|
+
description: "Consulting services",
|
|
315
|
+
quantity: 10,
|
|
316
|
+
unit_price: 100,
|
|
317
|
+
amount: 1e3
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
description: "Expenses",
|
|
321
|
+
quantity: 1,
|
|
322
|
+
unit_price: 250,
|
|
323
|
+
amount: 250
|
|
324
|
+
}
|
|
325
|
+
]
|
|
326
|
+
},
|
|
327
|
+
schema: {
|
|
328
|
+
source: "inferred",
|
|
329
|
+
id: null,
|
|
330
|
+
definition: {
|
|
331
|
+
type: "object",
|
|
332
|
+
properties: {
|
|
333
|
+
invoice_number: {
|
|
334
|
+
type: "string"
|
|
335
|
+
},
|
|
336
|
+
total_amount: {
|
|
337
|
+
type: "number"
|
|
338
|
+
}
|
|
339
|
+
}
|
|
340
|
+
},
|
|
341
|
+
save_url: "https://app.talonic.com/schemas/save?from=d1a2b3c4-5678-9abc-def0-1234567890ab"
|
|
342
|
+
},
|
|
343
|
+
confidence: {
|
|
344
|
+
overall: 0.94,
|
|
345
|
+
fields: {
|
|
346
|
+
invoice_number: 0.99,
|
|
347
|
+
invoice_date: 0.97,
|
|
348
|
+
vendor_name: 0.88,
|
|
349
|
+
total_amount: 0.98,
|
|
350
|
+
currency: 0.95,
|
|
351
|
+
line_items: 0.85
|
|
352
|
+
}
|
|
353
|
+
},
|
|
354
|
+
processing: {
|
|
355
|
+
duration_ms: 3420,
|
|
356
|
+
pages_processed: 3,
|
|
357
|
+
region: "eu-west"
|
|
358
|
+
},
|
|
359
|
+
links: {
|
|
360
|
+
self: "/v1/extractions/d1a2b3c4-5678-9abc-def0-1234567890ab",
|
|
361
|
+
document: "/v1/documents/f0e1d2c3-b4a5-9687-8765-432109876543",
|
|
362
|
+
dashboard: "https://app.talonic.com/extractions/d1a2b3c4-5678-9abc-def0-1234567890ab"
|
|
363
|
+
}
|
|
236
364
|
}
|
|
237
365
|
}
|
|
238
366
|
}
|
|
@@ -322,7 +450,8 @@ var openapi_default = {
|
|
|
322
450
|
in: "query",
|
|
323
451
|
schema: {
|
|
324
452
|
type: "string",
|
|
325
|
-
format: "uuid"
|
|
453
|
+
format: "uuid",
|
|
454
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
326
455
|
},
|
|
327
456
|
description: "Filter by source connection ID."
|
|
328
457
|
},
|
|
@@ -408,6 +537,50 @@ var openapi_default = {
|
|
|
408
537
|
}
|
|
409
538
|
}
|
|
410
539
|
]
|
|
540
|
+
},
|
|
541
|
+
example: {
|
|
542
|
+
data: [
|
|
543
|
+
{
|
|
544
|
+
id: "f0e1d2c3-b4a5-9687-8765-432109876543",
|
|
545
|
+
filename: "contract-2024.pdf",
|
|
546
|
+
pages: 12,
|
|
547
|
+
size_bytes: 1048576,
|
|
548
|
+
mime_type: "application/pdf",
|
|
549
|
+
type_detected: "Service Contract",
|
|
550
|
+
language_detected: "en",
|
|
551
|
+
status: "completed",
|
|
552
|
+
source: {
|
|
553
|
+
id: "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
554
|
+
type: "api"
|
|
555
|
+
},
|
|
556
|
+
triage: {
|
|
557
|
+
sensitivity: "confidential",
|
|
558
|
+
department: "Legal",
|
|
559
|
+
jurisdiction: "EU",
|
|
560
|
+
pii_detected: true,
|
|
561
|
+
pii_categories: [
|
|
562
|
+
"name",
|
|
563
|
+
"address"
|
|
564
|
+
],
|
|
565
|
+
regulated_data: false,
|
|
566
|
+
confidentiality_marking: "internal"
|
|
567
|
+
},
|
|
568
|
+
extraction_count: 1,
|
|
569
|
+
latest_extraction_id: "d1a2b3c4-5678-9abc-def0-1234567890ab",
|
|
570
|
+
created_at: "2026-04-25T14:30:00.000Z",
|
|
571
|
+
links: {
|
|
572
|
+
self: "/v1/documents/f0e1d2c3-b4a5-9687-8765-432109876543",
|
|
573
|
+
extractions: "/v1/documents/f0e1d2c3-b4a5-9687-8765-432109876543/extractions",
|
|
574
|
+
dashboard: "https://app.talonic.com/documents/f0e1d2c3-b4a5-9687-8765-432109876543"
|
|
575
|
+
}
|
|
576
|
+
}
|
|
577
|
+
],
|
|
578
|
+
pagination: {
|
|
579
|
+
total: 142,
|
|
580
|
+
limit: 20,
|
|
581
|
+
has_more: true,
|
|
582
|
+
next_cursor: "ZDFhMmIzYzR8MjAyNi0wNC0yNVQxNDozMDowMC4wMDBa"
|
|
583
|
+
}
|
|
411
584
|
}
|
|
412
585
|
}
|
|
413
586
|
}
|
|
@@ -581,16 +754,19 @@ var openapi_default = {
|
|
|
581
754
|
properties: {
|
|
582
755
|
id: {
|
|
583
756
|
type: "string",
|
|
584
|
-
format: "uuid"
|
|
757
|
+
format: "uuid",
|
|
758
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
585
759
|
},
|
|
586
760
|
status: {
|
|
587
761
|
type: "string",
|
|
762
|
+
example: "completed",
|
|
588
763
|
enum: [
|
|
589
764
|
"processing"
|
|
590
765
|
]
|
|
591
766
|
},
|
|
592
767
|
message: {
|
|
593
|
-
type: "string"
|
|
768
|
+
type: "string",
|
|
769
|
+
example: "Re-extraction started."
|
|
594
770
|
},
|
|
595
771
|
links: {
|
|
596
772
|
type: "object",
|
|
@@ -651,10 +827,12 @@ var openapi_default = {
|
|
|
651
827
|
document_id: {
|
|
652
828
|
type: "string",
|
|
653
829
|
format: "uuid",
|
|
830
|
+
example: "f0e1d2c3-b4a5-9687-8765-432109876543",
|
|
654
831
|
description: "ID of the document the markdown was produced from."
|
|
655
832
|
},
|
|
656
833
|
markdown: {
|
|
657
834
|
type: "string",
|
|
835
|
+
example: "# Invoice INV-2024-0042\nVendor: Acme Corp...",
|
|
658
836
|
description: "Full OCR-converted markdown body."
|
|
659
837
|
}
|
|
660
838
|
}
|
|
@@ -696,7 +874,8 @@ var openapi_default = {
|
|
|
696
874
|
in: "query",
|
|
697
875
|
schema: {
|
|
698
876
|
type: "string",
|
|
699
|
-
format: "uuid"
|
|
877
|
+
format: "uuid",
|
|
878
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
700
879
|
},
|
|
701
880
|
description: "Filter by document ID."
|
|
702
881
|
},
|
|
@@ -850,8 +1029,15 @@ var openapi_default = {
|
|
|
850
1029
|
description: "Key-value pairs of extracted field names and values.",
|
|
851
1030
|
example: {
|
|
852
1031
|
invoice_number: "INV-2024-0042",
|
|
1032
|
+
invoice_date: "2024-03-15",
|
|
1033
|
+
vendor_name: "Acme Corp",
|
|
1034
|
+
vendor_address: "123 Main St, Berlin, DE",
|
|
853
1035
|
total_amount: 1250,
|
|
854
|
-
|
|
1036
|
+
currency: "EUR",
|
|
1037
|
+
tax_rate: 19,
|
|
1038
|
+
tax_amount: 199.58,
|
|
1039
|
+
payment_terms: "Net 30",
|
|
1040
|
+
due_date: "2024-04-14"
|
|
855
1041
|
}
|
|
856
1042
|
}
|
|
857
1043
|
},
|
|
@@ -926,6 +1112,45 @@ var openapi_default = {
|
|
|
926
1112
|
"application/json": {
|
|
927
1113
|
schema: {
|
|
928
1114
|
$ref: "#/components/schemas/ExtractionResponse"
|
|
1115
|
+
},
|
|
1116
|
+
example: {
|
|
1117
|
+
id: "d1a2b3c4-5678-9abc-def0-1234567890ab",
|
|
1118
|
+
status: "complete",
|
|
1119
|
+
document: {
|
|
1120
|
+
id: "f0e1d2c3-b4a5-9687-8765-432109876543",
|
|
1121
|
+
filename: "invoice-042.pdf",
|
|
1122
|
+
pages: 3,
|
|
1123
|
+
type_detected: "Invoice"
|
|
1124
|
+
},
|
|
1125
|
+
data: {
|
|
1126
|
+
vendor_name: "Acme Corporation Ltd.",
|
|
1127
|
+
total_amount: 1275.5,
|
|
1128
|
+
invoice_number: "INV-2024-0042"
|
|
1129
|
+
},
|
|
1130
|
+
confidence: {
|
|
1131
|
+
overall: 0.96,
|
|
1132
|
+
fields: {
|
|
1133
|
+
vendor_name: 1,
|
|
1134
|
+
total_amount: 1,
|
|
1135
|
+
invoice_number: 0.99
|
|
1136
|
+
}
|
|
1137
|
+
},
|
|
1138
|
+
locked_fields: [
|
|
1139
|
+
"vendor_name",
|
|
1140
|
+
"total_amount"
|
|
1141
|
+
],
|
|
1142
|
+
processing: {
|
|
1143
|
+
duration_ms: 3420,
|
|
1144
|
+
pages_processed: 3,
|
|
1145
|
+
region: "eu-west"
|
|
1146
|
+
},
|
|
1147
|
+
created_at: "2026-04-25T14:30:00.000Z",
|
|
1148
|
+
links: {
|
|
1149
|
+
self: "/v1/extractions/d1a2b3c4-5678-9abc-def0-1234567890ab",
|
|
1150
|
+
data: "/v1/extractions/d1a2b3c4-5678-9abc-def0-1234567890ab/data",
|
|
1151
|
+
document: "/v1/documents/f0e1d2c3-b4a5-9687-8765-432109876543",
|
|
1152
|
+
dashboard: "https://app.talonic.com/extractions/d1a2b3c4-5678-9abc-def0-1234567890ab"
|
|
1153
|
+
}
|
|
929
1154
|
}
|
|
930
1155
|
}
|
|
931
1156
|
}
|
|
@@ -1029,6 +1254,36 @@ var openapi_default = {
|
|
|
1029
1254
|
"application/json": {
|
|
1030
1255
|
schema: {
|
|
1031
1256
|
$ref: "#/components/schemas/SchemaCreateRequest"
|
|
1257
|
+
},
|
|
1258
|
+
example: {
|
|
1259
|
+
name: "Invoice Schema",
|
|
1260
|
+
description: "Standard invoice fields for AP processing.",
|
|
1261
|
+
definition: {
|
|
1262
|
+
properties: {
|
|
1263
|
+
invoice_number: {
|
|
1264
|
+
type: "string",
|
|
1265
|
+
title: "Invoice Number",
|
|
1266
|
+
description: "Unique identifier on the invoice."
|
|
1267
|
+
},
|
|
1268
|
+
vendor_name: {
|
|
1269
|
+
type: "string",
|
|
1270
|
+
title: "Vendor Name"
|
|
1271
|
+
},
|
|
1272
|
+
total_amount: {
|
|
1273
|
+
type: "number",
|
|
1274
|
+
title: "Total Amount",
|
|
1275
|
+
description: "Total invoice amount including tax."
|
|
1276
|
+
},
|
|
1277
|
+
invoice_date: {
|
|
1278
|
+
type: "string",
|
|
1279
|
+
title: "Invoice Date"
|
|
1280
|
+
}
|
|
1281
|
+
},
|
|
1282
|
+
required: [
|
|
1283
|
+
"invoice_number",
|
|
1284
|
+
"total_amount"
|
|
1285
|
+
]
|
|
1286
|
+
}
|
|
1032
1287
|
}
|
|
1033
1288
|
}
|
|
1034
1289
|
}
|
|
@@ -1040,6 +1295,47 @@ var openapi_default = {
|
|
|
1040
1295
|
"application/json": {
|
|
1041
1296
|
schema: {
|
|
1042
1297
|
$ref: "#/components/schemas/SchemaResponse"
|
|
1298
|
+
},
|
|
1299
|
+
example: {
|
|
1300
|
+
id: "b2c3d4e5-f6a7-8901-bcde-f12345678901",
|
|
1301
|
+
name: "Invoice Schema",
|
|
1302
|
+
description: "Standard invoice fields for AP processing.",
|
|
1303
|
+
definition: {
|
|
1304
|
+
type: "object",
|
|
1305
|
+
properties: {
|
|
1306
|
+
invoice_number: {
|
|
1307
|
+
type: "string",
|
|
1308
|
+
title: "Invoice Number",
|
|
1309
|
+
description: "Unique identifier on the invoice."
|
|
1310
|
+
},
|
|
1311
|
+
vendor_name: {
|
|
1312
|
+
type: "string",
|
|
1313
|
+
title: "Vendor Name"
|
|
1314
|
+
},
|
|
1315
|
+
total_amount: {
|
|
1316
|
+
type: "number",
|
|
1317
|
+
title: "Total Amount",
|
|
1318
|
+
description: "Total invoice amount including tax."
|
|
1319
|
+
},
|
|
1320
|
+
invoice_date: {
|
|
1321
|
+
type: "string",
|
|
1322
|
+
title: "Invoice Date"
|
|
1323
|
+
}
|
|
1324
|
+
},
|
|
1325
|
+
required: [
|
|
1326
|
+
"invoice_number",
|
|
1327
|
+
"total_amount"
|
|
1328
|
+
]
|
|
1329
|
+
},
|
|
1330
|
+
field_count: 4,
|
|
1331
|
+
version: 1,
|
|
1332
|
+
created_at: "2026-04-25T14:30:00.000Z",
|
|
1333
|
+
updated_at: "2026-04-25T14:30:00.000Z",
|
|
1334
|
+
links: {
|
|
1335
|
+
self: "/v1/schemas/b2c3d4e5-f6a7-8901-bcde-f12345678901",
|
|
1336
|
+
extractions: "/v1/extractions?schema_id=b2c3d4e5-f6a7-8901-bcde-f12345678901",
|
|
1337
|
+
dashboard: "https://app.talonic.com/schemas/b2c3d4e5-f6a7-8901-bcde-f12345678901"
|
|
1338
|
+
}
|
|
1043
1339
|
}
|
|
1044
1340
|
}
|
|
1045
1341
|
}
|
|
@@ -1390,6 +1686,34 @@ var openapi_default = {
|
|
|
1390
1686
|
"application/json": {
|
|
1391
1687
|
schema: {
|
|
1392
1688
|
$ref: "#/components/schemas/JobResponse"
|
|
1689
|
+
},
|
|
1690
|
+
example: {
|
|
1691
|
+
id: "c3d4e5f6-a7b8-9012-cdef-123456789012",
|
|
1692
|
+
name: "Q1 Invoice Processing",
|
|
1693
|
+
status: "processing",
|
|
1694
|
+
progress: 45,
|
|
1695
|
+
estimated_seconds_remaining: null,
|
|
1696
|
+
schema: {
|
|
1697
|
+
id: "b2c3d4e5-f6a7-8901-bcde-f12345678901",
|
|
1698
|
+
name: "Invoice Schema"
|
|
1699
|
+
},
|
|
1700
|
+
document_count: 150,
|
|
1701
|
+
completed_documents: 67,
|
|
1702
|
+
grid_stats: {
|
|
1703
|
+
total_cells: 8850,
|
|
1704
|
+
filled: 6200,
|
|
1705
|
+
empty: 2650,
|
|
1706
|
+
fill_rate: 0.7
|
|
1707
|
+
},
|
|
1708
|
+
current_phase: "phase_2_execute",
|
|
1709
|
+
created_at: "2026-04-25T14:30:00.000Z",
|
|
1710
|
+
started_at: "2026-04-25T14:30:05.000Z",
|
|
1711
|
+
completed_at: null,
|
|
1712
|
+
links: {
|
|
1713
|
+
self: "/v1/jobs/c3d4e5f6-a7b8-9012-cdef-123456789012",
|
|
1714
|
+
cancel: "/v1/jobs/c3d4e5f6-a7b8-9012-cdef-123456789012/cancel",
|
|
1715
|
+
dashboard: "https://app.talonic.com/jobs/c3d4e5f6-a7b8-9012-cdef-123456789012"
|
|
1716
|
+
}
|
|
1393
1717
|
}
|
|
1394
1718
|
}
|
|
1395
1719
|
}
|
|
@@ -1542,6 +1866,10 @@ var openapi_default = {
|
|
|
1542
1866
|
"application/json": {
|
|
1543
1867
|
schema: {
|
|
1544
1868
|
$ref: "#/components/schemas/SourceCreateRequest"
|
|
1869
|
+
},
|
|
1870
|
+
example: {
|
|
1871
|
+
name: "Invoice Pipeline",
|
|
1872
|
+
default_schema_id: "b2c3d4e5-f6a7-8901-bcde-f12345678901"
|
|
1545
1873
|
}
|
|
1546
1874
|
}
|
|
1547
1875
|
}
|
|
@@ -1567,6 +1895,24 @@ var openapi_default = {
|
|
|
1567
1895
|
}
|
|
1568
1896
|
}
|
|
1569
1897
|
]
|
|
1898
|
+
},
|
|
1899
|
+
example: {
|
|
1900
|
+
id: "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
1901
|
+
name: "Invoice Pipeline",
|
|
1902
|
+
type: "api",
|
|
1903
|
+
status: "active",
|
|
1904
|
+
document_count: 0,
|
|
1905
|
+
default_schema: {
|
|
1906
|
+
id: "b2c3d4e5-f6a7-8901-bcde-f12345678901"
|
|
1907
|
+
},
|
|
1908
|
+
endpoint: "/v1/sources/a1b2c3d4-e5f6-7890-abcd-ef1234567890/documents",
|
|
1909
|
+
api_key: "tlnc_live_src_k8m2n4p6q9r1s3t5",
|
|
1910
|
+
created_at: "2026-04-25T14:30:00.000Z",
|
|
1911
|
+
links: {
|
|
1912
|
+
self: "/v1/sources/a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
1913
|
+
documents: "/v1/sources/a1b2c3d4-e5f6-7890-abcd-ef1234567890/documents",
|
|
1914
|
+
dashboard: "https://app.talonic.com/sources/a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
1915
|
+
}
|
|
1570
1916
|
}
|
|
1571
1917
|
}
|
|
1572
1918
|
}
|
|
@@ -1752,6 +2098,17 @@ var openapi_default = {
|
|
|
1752
2098
|
"application/json": {
|
|
1753
2099
|
schema: {
|
|
1754
2100
|
$ref: "#/components/schemas/IngestDocumentResponse"
|
|
2101
|
+
},
|
|
2102
|
+
example: {
|
|
2103
|
+
document_id: "f0e1d2c3-b4a5-9687-8765-432109876543",
|
|
2104
|
+
filename: "receipt-march.pdf",
|
|
2105
|
+
status: "queued",
|
|
2106
|
+
processing_mode: "realtime",
|
|
2107
|
+
source_id: "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
2108
|
+
links: {
|
|
2109
|
+
document: "/v1/documents/f0e1d2c3-b4a5-9687-8765-432109876543",
|
|
2110
|
+
source: "/v1/sources/a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
2111
|
+
}
|
|
1755
2112
|
}
|
|
1756
2113
|
}
|
|
1757
2114
|
}
|
|
@@ -2348,7 +2705,8 @@ var openapi_default = {
|
|
|
2348
2705
|
in: "query",
|
|
2349
2706
|
schema: {
|
|
2350
2707
|
type: "string",
|
|
2351
|
-
format: "uuid"
|
|
2708
|
+
format: "uuid",
|
|
2709
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
2352
2710
|
},
|
|
2353
2711
|
description: "Filter to runs that belong to a specific matching configuration."
|
|
2354
2712
|
}
|
|
@@ -4880,7 +5238,8 @@ var openapi_default = {
|
|
|
4880
5238
|
in: "query",
|
|
4881
5239
|
schema: {
|
|
4882
5240
|
type: "string",
|
|
4883
|
-
format: "uuid"
|
|
5241
|
+
format: "uuid",
|
|
5242
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
4884
5243
|
},
|
|
4885
5244
|
description: "Filter by cluster."
|
|
4886
5245
|
}
|
|
@@ -5026,10 +5385,12 @@ var openapi_default = {
|
|
|
5026
5385
|
properties: {
|
|
5027
5386
|
id: {
|
|
5028
5387
|
type: "string",
|
|
5029
|
-
format: "uuid"
|
|
5388
|
+
format: "uuid",
|
|
5389
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
5030
5390
|
},
|
|
5031
5391
|
canonical_name: {
|
|
5032
|
-
type: "string"
|
|
5392
|
+
type: "string",
|
|
5393
|
+
example: "invoice_number"
|
|
5033
5394
|
},
|
|
5034
5395
|
similarity: {
|
|
5035
5396
|
type: "number",
|
|
@@ -5050,6 +5411,7 @@ var openapi_default = {
|
|
|
5050
5411
|
},
|
|
5051
5412
|
message: {
|
|
5052
5413
|
type: "string",
|
|
5414
|
+
example: "Re-extraction started.",
|
|
5053
5415
|
description: "Present when the field has no embedding."
|
|
5054
5416
|
}
|
|
5055
5417
|
}
|
|
@@ -5413,6 +5775,7 @@ var openapi_default = {
|
|
|
5413
5775
|
source_run_id: {
|
|
5414
5776
|
type: "string",
|
|
5415
5777
|
format: "uuid",
|
|
5778
|
+
example: "f2a3b4c5-d6e7-8901-fabc-012345678901",
|
|
5416
5779
|
description: "ID of the source run to resolve against."
|
|
5417
5780
|
}
|
|
5418
5781
|
}
|
|
@@ -5667,7 +6030,8 @@ var openapi_default = {
|
|
|
5667
6030
|
type: "array",
|
|
5668
6031
|
items: {
|
|
5669
6032
|
type: "string",
|
|
5670
|
-
format: "uuid"
|
|
6033
|
+
format: "uuid",
|
|
6034
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
5671
6035
|
}
|
|
5672
6036
|
}
|
|
5673
6037
|
}
|
|
@@ -5843,10 +6207,12 @@ var openapi_default = {
|
|
|
5843
6207
|
type: "object",
|
|
5844
6208
|
properties: {
|
|
5845
6209
|
status: {
|
|
5846
|
-
type: "string"
|
|
6210
|
+
type: "string",
|
|
6211
|
+
example: "completed"
|
|
5847
6212
|
},
|
|
5848
6213
|
message: {
|
|
5849
|
-
type: "string"
|
|
6214
|
+
type: "string",
|
|
6215
|
+
example: "Re-extraction started."
|
|
5850
6216
|
}
|
|
5851
6217
|
}
|
|
5852
6218
|
}
|
|
@@ -5879,7 +6245,8 @@ var openapi_default = {
|
|
|
5879
6245
|
type: "object",
|
|
5880
6246
|
properties: {
|
|
5881
6247
|
status: {
|
|
5882
|
-
type: "string"
|
|
6248
|
+
type: "string",
|
|
6249
|
+
example: "completed"
|
|
5883
6250
|
},
|
|
5884
6251
|
processed: {
|
|
5885
6252
|
type: "integer"
|
|
@@ -5889,7 +6256,8 @@ var openapi_default = {
|
|
|
5889
6256
|
},
|
|
5890
6257
|
started_at: {
|
|
5891
6258
|
type: "string",
|
|
5892
|
-
format: "date-time"
|
|
6259
|
+
format: "date-time",
|
|
6260
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
5893
6261
|
}
|
|
5894
6262
|
}
|
|
5895
6263
|
}
|
|
@@ -5957,7 +6325,8 @@ var openapi_default = {
|
|
|
5957
6325
|
required: true,
|
|
5958
6326
|
schema: {
|
|
5959
6327
|
type: "string",
|
|
5960
|
-
format: "uuid"
|
|
6328
|
+
format: "uuid",
|
|
6329
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
5961
6330
|
},
|
|
5962
6331
|
description: "Job run ID."
|
|
5963
6332
|
}
|
|
@@ -6001,7 +6370,8 @@ var openapi_default = {
|
|
|
6001
6370
|
required: true,
|
|
6002
6371
|
schema: {
|
|
6003
6372
|
type: "string",
|
|
6004
|
-
format: "uuid"
|
|
6373
|
+
format: "uuid",
|
|
6374
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
6005
6375
|
},
|
|
6006
6376
|
description: "Job run ID."
|
|
6007
6377
|
}
|
|
@@ -6053,7 +6423,8 @@ var openapi_default = {
|
|
|
6053
6423
|
required: true,
|
|
6054
6424
|
schema: {
|
|
6055
6425
|
type: "string",
|
|
6056
|
-
format: "uuid"
|
|
6426
|
+
format: "uuid",
|
|
6427
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
6057
6428
|
},
|
|
6058
6429
|
description: "Job run ID."
|
|
6059
6430
|
},
|
|
@@ -6063,7 +6434,8 @@ var openapi_default = {
|
|
|
6063
6434
|
required: true,
|
|
6064
6435
|
schema: {
|
|
6065
6436
|
type: "string",
|
|
6066
|
-
format: "uuid"
|
|
6437
|
+
format: "uuid",
|
|
6438
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
6067
6439
|
},
|
|
6068
6440
|
description: "Document ID to compare."
|
|
6069
6441
|
},
|
|
@@ -6116,7 +6488,8 @@ var openapi_default = {
|
|
|
6116
6488
|
required: true,
|
|
6117
6489
|
schema: {
|
|
6118
6490
|
type: "string",
|
|
6119
|
-
format: "uuid"
|
|
6491
|
+
format: "uuid",
|
|
6492
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
6120
6493
|
},
|
|
6121
6494
|
description: "Job run ID."
|
|
6122
6495
|
}
|
|
@@ -6135,10 +6508,12 @@ var openapi_default = {
|
|
|
6135
6508
|
properties: {
|
|
6136
6509
|
document_id: {
|
|
6137
6510
|
type: "string",
|
|
6138
|
-
format: "uuid"
|
|
6511
|
+
format: "uuid",
|
|
6512
|
+
example: "f0e1d2c3-b4a5-9687-8765-432109876543"
|
|
6139
6513
|
},
|
|
6140
6514
|
field_name: {
|
|
6141
|
-
type: "string"
|
|
6515
|
+
type: "string",
|
|
6516
|
+
example: "invoice_number"
|
|
6142
6517
|
},
|
|
6143
6518
|
value: {
|
|
6144
6519
|
description: "The override value to apply."
|
|
@@ -6194,7 +6569,8 @@ var openapi_default = {
|
|
|
6194
6569
|
required: true,
|
|
6195
6570
|
schema: {
|
|
6196
6571
|
type: "string",
|
|
6197
|
-
format: "uuid"
|
|
6572
|
+
format: "uuid",
|
|
6573
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
6198
6574
|
},
|
|
6199
6575
|
description: "Job run ID."
|
|
6200
6576
|
}
|
|
@@ -6213,10 +6589,12 @@ var openapi_default = {
|
|
|
6213
6589
|
properties: {
|
|
6214
6590
|
document_id: {
|
|
6215
6591
|
type: "string",
|
|
6216
|
-
format: "uuid"
|
|
6592
|
+
format: "uuid",
|
|
6593
|
+
example: "f0e1d2c3-b4a5-9687-8765-432109876543"
|
|
6217
6594
|
},
|
|
6218
6595
|
field_name: {
|
|
6219
|
-
type: "string"
|
|
6596
|
+
type: "string",
|
|
6597
|
+
example: "invoice_number"
|
|
6220
6598
|
},
|
|
6221
6599
|
decision: {
|
|
6222
6600
|
type: "string",
|
|
@@ -6367,7 +6745,8 @@ var openapi_default = {
|
|
|
6367
6745
|
},
|
|
6368
6746
|
created_at: {
|
|
6369
6747
|
type: "string",
|
|
6370
|
-
format: "date-time"
|
|
6748
|
+
format: "date-time",
|
|
6749
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
6371
6750
|
}
|
|
6372
6751
|
}
|
|
6373
6752
|
}
|
|
@@ -6430,7 +6809,8 @@ var openapi_default = {
|
|
|
6430
6809
|
},
|
|
6431
6810
|
created_at: {
|
|
6432
6811
|
type: "string",
|
|
6433
|
-
format: "date-time"
|
|
6812
|
+
format: "date-time",
|
|
6813
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
6434
6814
|
}
|
|
6435
6815
|
}
|
|
6436
6816
|
}
|
|
@@ -6580,11 +6960,13 @@ var openapi_default = {
|
|
|
6580
6960
|
properties: {
|
|
6581
6961
|
source_class_id: {
|
|
6582
6962
|
type: "string",
|
|
6583
|
-
format: "uuid"
|
|
6963
|
+
format: "uuid",
|
|
6964
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
6584
6965
|
},
|
|
6585
6966
|
target_class_id: {
|
|
6586
6967
|
type: "string",
|
|
6587
|
-
format: "uuid"
|
|
6968
|
+
format: "uuid",
|
|
6969
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
6588
6970
|
},
|
|
6589
6971
|
relationship: {
|
|
6590
6972
|
type: "string"
|
|
@@ -6636,7 +7018,8 @@ var openapi_default = {
|
|
|
6636
7018
|
},
|
|
6637
7019
|
class_id: {
|
|
6638
7020
|
type: "string",
|
|
6639
|
-
format: "uuid"
|
|
7021
|
+
format: "uuid",
|
|
7022
|
+
example: "a7b8c9d0-e1f2-3456-abcd-567890123456"
|
|
6640
7023
|
},
|
|
6641
7024
|
class_name: {
|
|
6642
7025
|
type: "string"
|
|
@@ -7199,7 +7582,8 @@ var openapi_default = {
|
|
|
7199
7582
|
properties: {
|
|
7200
7583
|
rule_id: {
|
|
7201
7584
|
type: "string",
|
|
7202
|
-
format: "uuid"
|
|
7585
|
+
format: "uuid",
|
|
7586
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
7203
7587
|
}
|
|
7204
7588
|
}
|
|
7205
7589
|
}
|
|
@@ -7257,7 +7641,8 @@ var openapi_default = {
|
|
|
7257
7641
|
properties: {
|
|
7258
7642
|
check_id: {
|
|
7259
7643
|
type: "string",
|
|
7260
|
-
format: "uuid"
|
|
7644
|
+
format: "uuid",
|
|
7645
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
7261
7646
|
},
|
|
7262
7647
|
check_name: {
|
|
7263
7648
|
type: "string"
|
|
@@ -7365,10 +7750,12 @@ var openapi_default = {
|
|
|
7365
7750
|
properties: {
|
|
7366
7751
|
id: {
|
|
7367
7752
|
type: "string",
|
|
7368
|
-
format: "uuid"
|
|
7753
|
+
format: "uuid",
|
|
7754
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
7369
7755
|
},
|
|
7370
7756
|
status: {
|
|
7371
|
-
type: "string"
|
|
7757
|
+
type: "string",
|
|
7758
|
+
example: "completed"
|
|
7372
7759
|
}
|
|
7373
7760
|
}
|
|
7374
7761
|
}
|
|
@@ -7409,10 +7796,12 @@ var openapi_default = {
|
|
|
7409
7796
|
properties: {
|
|
7410
7797
|
id: {
|
|
7411
7798
|
type: "string",
|
|
7412
|
-
format: "uuid"
|
|
7799
|
+
format: "uuid",
|
|
7800
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
7413
7801
|
},
|
|
7414
7802
|
status: {
|
|
7415
|
-
type: "string"
|
|
7803
|
+
type: "string",
|
|
7804
|
+
example: "completed"
|
|
7416
7805
|
}
|
|
7417
7806
|
}
|
|
7418
7807
|
}
|
|
@@ -7446,7 +7835,8 @@ var openapi_default = {
|
|
|
7446
7835
|
required: true,
|
|
7447
7836
|
schema: {
|
|
7448
7837
|
type: "string",
|
|
7449
|
-
format: "uuid"
|
|
7838
|
+
format: "uuid",
|
|
7839
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
7450
7840
|
},
|
|
7451
7841
|
description: "Structuring run ID."
|
|
7452
7842
|
}
|
|
@@ -7840,11 +8230,13 @@ var openapi_default = {
|
|
|
7840
8230
|
golden_sample_id: {
|
|
7841
8231
|
type: "string",
|
|
7842
8232
|
format: "uuid",
|
|
8233
|
+
example: "e5f6a7b8-c9d0-1234-efab-345678901234",
|
|
7843
8234
|
description: "Golden sample dataset to validate against."
|
|
7844
8235
|
},
|
|
7845
8236
|
schema_id: {
|
|
7846
8237
|
type: "string",
|
|
7847
8238
|
format: "uuid",
|
|
8239
|
+
example: "b2c3d4e5-f6a7-8901-bcde-f12345678901",
|
|
7848
8240
|
description: "Optional schema to scope the validation."
|
|
7849
8241
|
}
|
|
7850
8242
|
}
|
|
@@ -8024,11 +8416,13 @@ var openapi_default = {
|
|
|
8024
8416
|
format: "float"
|
|
8025
8417
|
},
|
|
8026
8418
|
currency: {
|
|
8027
|
-
type: "string"
|
|
8419
|
+
type: "string",
|
|
8420
|
+
example: "USD"
|
|
8028
8421
|
},
|
|
8029
8422
|
updated_at: {
|
|
8030
8423
|
type: "string",
|
|
8031
|
-
format: "date-time"
|
|
8424
|
+
format: "date-time",
|
|
8425
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
8032
8426
|
}
|
|
8033
8427
|
}
|
|
8034
8428
|
}
|
|
@@ -8083,7 +8477,8 @@ var openapi_default = {
|
|
|
8083
8477
|
properties: {
|
|
8084
8478
|
id: {
|
|
8085
8479
|
type: "string",
|
|
8086
|
-
format: "uuid"
|
|
8480
|
+
format: "uuid",
|
|
8481
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
8087
8482
|
},
|
|
8088
8483
|
type: {
|
|
8089
8484
|
type: "string",
|
|
@@ -8101,7 +8496,8 @@ var openapi_default = {
|
|
|
8101
8496
|
},
|
|
8102
8497
|
created_at: {
|
|
8103
8498
|
type: "string",
|
|
8104
|
-
format: "date-time"
|
|
8499
|
+
format: "date-time",
|
|
8500
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
8105
8501
|
}
|
|
8106
8502
|
}
|
|
8107
8503
|
}
|
|
@@ -8321,7 +8717,8 @@ var openapi_default = {
|
|
|
8321
8717
|
},
|
|
8322
8718
|
created_at: {
|
|
8323
8719
|
type: "string",
|
|
8324
|
-
format: "date-time"
|
|
8720
|
+
format: "date-time",
|
|
8721
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
8325
8722
|
}
|
|
8326
8723
|
}
|
|
8327
8724
|
}
|
|
@@ -8372,6 +8769,7 @@ var openapi_default = {
|
|
|
8372
8769
|
properties: {
|
|
8373
8770
|
status: {
|
|
8374
8771
|
type: "string",
|
|
8772
|
+
example: "completed",
|
|
8375
8773
|
description: "New status (e.g. open, in_review, resolved, archived)."
|
|
8376
8774
|
}
|
|
8377
8775
|
}
|
|
@@ -8439,11 +8837,13 @@ var openapi_default = {
|
|
|
8439
8837
|
properties: {
|
|
8440
8838
|
source_document_id: {
|
|
8441
8839
|
type: "string",
|
|
8442
|
-
format: "uuid"
|
|
8840
|
+
format: "uuid",
|
|
8841
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
8443
8842
|
},
|
|
8444
8843
|
target_document_id: {
|
|
8445
8844
|
type: "string",
|
|
8446
|
-
format: "uuid"
|
|
8845
|
+
format: "uuid",
|
|
8846
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
8447
8847
|
},
|
|
8448
8848
|
entity_value: {
|
|
8449
8849
|
type: "string"
|
|
@@ -8497,11 +8897,13 @@ var openapi_default = {
|
|
|
8497
8897
|
properties: {
|
|
8498
8898
|
source_document_id: {
|
|
8499
8899
|
type: "string",
|
|
8500
|
-
format: "uuid"
|
|
8900
|
+
format: "uuid",
|
|
8901
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
8501
8902
|
},
|
|
8502
8903
|
target_document_id: {
|
|
8503
8904
|
type: "string",
|
|
8504
|
-
format: "uuid"
|
|
8905
|
+
format: "uuid",
|
|
8906
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
8505
8907
|
},
|
|
8506
8908
|
entity_value: {
|
|
8507
8909
|
type: "string"
|
|
@@ -8561,11 +8963,13 @@ var openapi_default = {
|
|
|
8561
8963
|
properties: {
|
|
8562
8964
|
source_document_id: {
|
|
8563
8965
|
type: "string",
|
|
8564
|
-
format: "uuid"
|
|
8966
|
+
format: "uuid",
|
|
8967
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
8565
8968
|
},
|
|
8566
8969
|
target_document_id: {
|
|
8567
8970
|
type: "string",
|
|
8568
|
-
format: "uuid"
|
|
8971
|
+
format: "uuid",
|
|
8972
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
8569
8973
|
},
|
|
8570
8974
|
entity_value: {
|
|
8571
8975
|
type: "string"
|
|
@@ -8636,7 +9040,8 @@ var openapi_default = {
|
|
|
8636
9040
|
type: "array",
|
|
8637
9041
|
items: {
|
|
8638
9042
|
type: "string",
|
|
8639
|
-
format: "uuid"
|
|
9043
|
+
format: "uuid",
|
|
9044
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
8640
9045
|
},
|
|
8641
9046
|
description: "Document IDs to move to the new case."
|
|
8642
9047
|
}
|
|
@@ -8842,7 +9247,8 @@ var openapi_default = {
|
|
|
8842
9247
|
type: "array",
|
|
8843
9248
|
items: {
|
|
8844
9249
|
type: "string",
|
|
8845
|
-
format: "uuid"
|
|
9250
|
+
format: "uuid",
|
|
9251
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
8846
9252
|
}
|
|
8847
9253
|
}
|
|
8848
9254
|
}
|
|
@@ -8909,7 +9315,8 @@ var openapi_default = {
|
|
|
8909
9315
|
type: "array",
|
|
8910
9316
|
items: {
|
|
8911
9317
|
type: "string",
|
|
8912
|
-
format: "uuid"
|
|
9318
|
+
format: "uuid",
|
|
9319
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
8913
9320
|
}
|
|
8914
9321
|
}
|
|
8915
9322
|
}
|
|
@@ -9039,6 +9446,7 @@ var openapi_default = {
|
|
|
9039
9446
|
config_id: {
|
|
9040
9447
|
type: "string",
|
|
9041
9448
|
format: "uuid",
|
|
9449
|
+
example: "c9d0e1f2-a3b4-5678-cdef-789012345678",
|
|
9042
9450
|
description: "Matching configuration ID."
|
|
9043
9451
|
}
|
|
9044
9452
|
}
|
|
@@ -9093,6 +9501,7 @@ var openapi_default = {
|
|
|
9093
9501
|
run_id: {
|
|
9094
9502
|
type: "string",
|
|
9095
9503
|
format: "uuid",
|
|
9504
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
9096
9505
|
description: "Matching run ID to resolve."
|
|
9097
9506
|
}
|
|
9098
9507
|
}
|
|
@@ -9157,7 +9566,8 @@ var openapi_default = {
|
|
|
9157
9566
|
properties: {
|
|
9158
9567
|
id: {
|
|
9159
9568
|
type: "string",
|
|
9160
|
-
format: "uuid"
|
|
9569
|
+
format: "uuid",
|
|
9570
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
9161
9571
|
},
|
|
9162
9572
|
name: {
|
|
9163
9573
|
type: "string"
|
|
@@ -9435,7 +9845,8 @@ var openapi_default = {
|
|
|
9435
9845
|
type: "object",
|
|
9436
9846
|
properties: {
|
|
9437
9847
|
status: {
|
|
9438
|
-
type: "string"
|
|
9848
|
+
type: "string",
|
|
9849
|
+
example: "completed"
|
|
9439
9850
|
},
|
|
9440
9851
|
processed: {
|
|
9441
9852
|
type: "integer"
|
|
@@ -9494,7 +9905,8 @@ var openapi_default = {
|
|
|
9494
9905
|
properties: {
|
|
9495
9906
|
document_id: {
|
|
9496
9907
|
type: "string",
|
|
9497
|
-
format: "uuid"
|
|
9908
|
+
format: "uuid",
|
|
9909
|
+
example: "f0e1d2c3-b4a5-9687-8765-432109876543"
|
|
9498
9910
|
},
|
|
9499
9911
|
reference_id: {
|
|
9500
9912
|
type: "string"
|
|
@@ -9568,12 +9980,14 @@ var openapi_default = {
|
|
|
9568
9980
|
type: "array",
|
|
9569
9981
|
items: {
|
|
9570
9982
|
type: "string",
|
|
9571
|
-
format: "uuid"
|
|
9983
|
+
format: "uuid",
|
|
9984
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
9572
9985
|
}
|
|
9573
9986
|
},
|
|
9574
9987
|
assignee_id: {
|
|
9575
9988
|
type: "string",
|
|
9576
9989
|
format: "uuid",
|
|
9990
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
9577
9991
|
description: "User ID of the assignee."
|
|
9578
9992
|
}
|
|
9579
9993
|
}
|
|
@@ -9729,14 +10143,16 @@ var openapi_default = {
|
|
|
9729
10143
|
properties: {
|
|
9730
10144
|
document_id: {
|
|
9731
10145
|
type: "string",
|
|
9732
|
-
format: "uuid"
|
|
10146
|
+
format: "uuid",
|
|
10147
|
+
example: "f0e1d2c3-b4a5-9687-8765-432109876543"
|
|
9733
10148
|
},
|
|
9734
10149
|
expected_data: {
|
|
9735
10150
|
type: "object",
|
|
9736
10151
|
additionalProperties: true
|
|
9737
10152
|
},
|
|
9738
10153
|
notes: {
|
|
9739
|
-
type: "string"
|
|
10154
|
+
type: "string",
|
|
10155
|
+
example: "Reviewed and confirmed."
|
|
9740
10156
|
}
|
|
9741
10157
|
}
|
|
9742
10158
|
}
|
|
@@ -9786,7 +10202,8 @@ var openapi_default = {
|
|
|
9786
10202
|
required: true,
|
|
9787
10203
|
schema: {
|
|
9788
10204
|
type: "string",
|
|
9789
|
-
format: "uuid"
|
|
10205
|
+
format: "uuid",
|
|
10206
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
9790
10207
|
},
|
|
9791
10208
|
description: "Entry ID."
|
|
9792
10209
|
}
|
|
@@ -9803,7 +10220,8 @@ var openapi_default = {
|
|
|
9803
10220
|
additionalProperties: true
|
|
9804
10221
|
},
|
|
9805
10222
|
notes: {
|
|
9806
|
-
type: "string"
|
|
10223
|
+
type: "string",
|
|
10224
|
+
example: "Reviewed and confirmed."
|
|
9807
10225
|
}
|
|
9808
10226
|
}
|
|
9809
10227
|
}
|
|
@@ -9848,7 +10266,8 @@ var openapi_default = {
|
|
|
9848
10266
|
required: true,
|
|
9849
10267
|
schema: {
|
|
9850
10268
|
type: "string",
|
|
9851
|
-
format: "uuid"
|
|
10269
|
+
format: "uuid",
|
|
10270
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
9852
10271
|
},
|
|
9853
10272
|
description: "Entry ID."
|
|
9854
10273
|
}
|
|
@@ -9938,7 +10357,8 @@ var openapi_default = {
|
|
|
9938
10357
|
required: true,
|
|
9939
10358
|
schema: {
|
|
9940
10359
|
type: "string",
|
|
9941
|
-
format: "uuid"
|
|
10360
|
+
format: "uuid",
|
|
10361
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
9942
10362
|
},
|
|
9943
10363
|
description: "ID of the benchmark run to compare against."
|
|
9944
10364
|
}
|
|
@@ -10191,7 +10611,8 @@ var openapi_default = {
|
|
|
10191
10611
|
required: true,
|
|
10192
10612
|
schema: {
|
|
10193
10613
|
type: "string",
|
|
10194
|
-
format: "uuid"
|
|
10614
|
+
format: "uuid",
|
|
10615
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
10195
10616
|
},
|
|
10196
10617
|
description: "Resource UUID."
|
|
10197
10618
|
},
|
|
@@ -10266,8 +10687,13 @@ var openapi_default = {
|
|
|
10266
10687
|
$ref: "#/components/schemas/ErrorResponse"
|
|
10267
10688
|
},
|
|
10268
10689
|
example: {
|
|
10269
|
-
|
|
10270
|
-
|
|
10690
|
+
statusCode: 400,
|
|
10691
|
+
code: "VALIDATION_ERROR",
|
|
10692
|
+
error: "Bad Request",
|
|
10693
|
+
message: "name is required.",
|
|
10694
|
+
retryable: false,
|
|
10695
|
+
timestamp: "2026-04-25T14:30:00.000Z",
|
|
10696
|
+
path: "/v1/schemas"
|
|
10271
10697
|
}
|
|
10272
10698
|
}
|
|
10273
10699
|
}
|
|
@@ -10280,8 +10706,13 @@ var openapi_default = {
|
|
|
10280
10706
|
$ref: "#/components/schemas/ErrorResponse"
|
|
10281
10707
|
},
|
|
10282
10708
|
example: {
|
|
10283
|
-
|
|
10284
|
-
|
|
10709
|
+
statusCode: 401,
|
|
10710
|
+
code: "AUTH_REQUIRED",
|
|
10711
|
+
error: "Unauthorized",
|
|
10712
|
+
message: "Invalid or missing API key.",
|
|
10713
|
+
retryable: false,
|
|
10714
|
+
timestamp: "2026-04-25T14:30:00.000Z",
|
|
10715
|
+
path: "/v1/extract"
|
|
10285
10716
|
}
|
|
10286
10717
|
}
|
|
10287
10718
|
}
|
|
@@ -10294,8 +10725,13 @@ var openapi_default = {
|
|
|
10294
10725
|
$ref: "#/components/schemas/ErrorResponse"
|
|
10295
10726
|
},
|
|
10296
10727
|
example: {
|
|
10297
|
-
|
|
10298
|
-
|
|
10728
|
+
statusCode: 403,
|
|
10729
|
+
code: "INSUFFICIENT_PERMISSIONS",
|
|
10730
|
+
error: "Forbidden",
|
|
10731
|
+
message: "This key does not have the 'write' scope.",
|
|
10732
|
+
retryable: false,
|
|
10733
|
+
timestamp: "2026-04-25T14:30:00.000Z",
|
|
10734
|
+
path: "/v1/schemas"
|
|
10299
10735
|
}
|
|
10300
10736
|
}
|
|
10301
10737
|
}
|
|
@@ -10308,8 +10744,13 @@ var openapi_default = {
|
|
|
10308
10744
|
$ref: "#/components/schemas/ErrorResponse"
|
|
10309
10745
|
},
|
|
10310
10746
|
example: {
|
|
10311
|
-
|
|
10312
|
-
|
|
10747
|
+
statusCode: 404,
|
|
10748
|
+
code: "RESOURCE_NOT_FOUND",
|
|
10749
|
+
error: "Not Found",
|
|
10750
|
+
message: "Document 'f0e1d2c3-b4a5-9687-8765-432109876543' not found.",
|
|
10751
|
+
retryable: false,
|
|
10752
|
+
timestamp: "2026-04-25T14:30:00.000Z",
|
|
10753
|
+
path: "/v1/documents/f0e1d2c3-b4a5-9687-8765-432109876543"
|
|
10313
10754
|
}
|
|
10314
10755
|
}
|
|
10315
10756
|
}
|
|
@@ -10322,8 +10763,13 @@ var openapi_default = {
|
|
|
10322
10763
|
$ref: "#/components/schemas/ErrorResponse"
|
|
10323
10764
|
},
|
|
10324
10765
|
example: {
|
|
10325
|
-
|
|
10326
|
-
|
|
10766
|
+
statusCode: 409,
|
|
10767
|
+
code: "VALIDATION_ERROR",
|
|
10768
|
+
error: "Conflict",
|
|
10769
|
+
message: "Job is already completed. Cannot cancel.",
|
|
10770
|
+
retryable: false,
|
|
10771
|
+
timestamp: "2026-04-25T14:30:00.000Z",
|
|
10772
|
+
path: "/v1/jobs/c3d4e5f6-a7b8-9012-cdef-123456789012/cancel"
|
|
10327
10773
|
}
|
|
10328
10774
|
}
|
|
10329
10775
|
}
|
|
@@ -10336,8 +10782,13 @@ var openapi_default = {
|
|
|
10336
10782
|
$ref: "#/components/schemas/ErrorResponse"
|
|
10337
10783
|
},
|
|
10338
10784
|
example: {
|
|
10339
|
-
|
|
10340
|
-
|
|
10785
|
+
statusCode: 413,
|
|
10786
|
+
code: "FILE_TOO_LARGE",
|
|
10787
|
+
error: "Payload Too Large",
|
|
10788
|
+
message: "File exceeds the 500 MB limit.",
|
|
10789
|
+
retryable: false,
|
|
10790
|
+
timestamp: "2026-04-25T14:30:00.000Z",
|
|
10791
|
+
path: "/v1/extract"
|
|
10341
10792
|
}
|
|
10342
10793
|
}
|
|
10343
10794
|
}
|
|
@@ -10350,9 +10801,13 @@ var openapi_default = {
|
|
|
10350
10801
|
$ref: "#/components/schemas/ErrorResponse"
|
|
10351
10802
|
},
|
|
10352
10803
|
example: {
|
|
10353
|
-
|
|
10804
|
+
statusCode: 422,
|
|
10805
|
+
code: "EXTRACTION_FAILED",
|
|
10806
|
+
error: "Unprocessable Entity",
|
|
10354
10807
|
message: "Unable to extract fields from the provided document.",
|
|
10355
|
-
|
|
10808
|
+
retryable: false,
|
|
10809
|
+
timestamp: "2026-04-25T14:30:00.000Z",
|
|
10810
|
+
path: "/v1/extract",
|
|
10356
10811
|
links: {
|
|
10357
10812
|
dashboard: "https://app.talonic.com/documents/abc-123"
|
|
10358
10813
|
}
|
|
@@ -10379,11 +10834,13 @@ var openapi_default = {
|
|
|
10379
10834
|
$ref: "#/components/schemas/ErrorResponse"
|
|
10380
10835
|
},
|
|
10381
10836
|
example: {
|
|
10382
|
-
|
|
10837
|
+
statusCode: 429,
|
|
10838
|
+
code: "QUOTA_EXCEEDED",
|
|
10839
|
+
error: "Too Many Requests",
|
|
10383
10840
|
message: "Daily extract request limit (50) reached. Resets at midnight UTC.",
|
|
10384
|
-
|
|
10385
|
-
|
|
10386
|
-
|
|
10841
|
+
retryable: true,
|
|
10842
|
+
timestamp: "2026-04-25T23:45:00.000Z",
|
|
10843
|
+
path: "/v1/extract"
|
|
10387
10844
|
}
|
|
10388
10845
|
}
|
|
10389
10846
|
}
|
|
@@ -10396,9 +10853,13 @@ var openapi_default = {
|
|
|
10396
10853
|
$ref: "#/components/schemas/ErrorResponse"
|
|
10397
10854
|
},
|
|
10398
10855
|
example: {
|
|
10399
|
-
|
|
10856
|
+
statusCode: 500,
|
|
10857
|
+
code: "INTERNAL_ERROR",
|
|
10858
|
+
error: "Internal Server Error",
|
|
10400
10859
|
message: "An unexpected error occurred. Please try again or contact support.",
|
|
10401
|
-
|
|
10860
|
+
retryable: true,
|
|
10861
|
+
timestamp: "2026-04-25T14:30:00.000Z",
|
|
10862
|
+
path: "/v1/extract"
|
|
10402
10863
|
}
|
|
10403
10864
|
}
|
|
10404
10865
|
}
|
|
@@ -10408,28 +10869,50 @@ var openapi_default = {
|
|
|
10408
10869
|
ErrorResponse: {
|
|
10409
10870
|
type: "object",
|
|
10410
10871
|
required: [
|
|
10872
|
+
"statusCode",
|
|
10873
|
+
"code",
|
|
10411
10874
|
"error",
|
|
10412
|
-
"message"
|
|
10875
|
+
"message",
|
|
10876
|
+
"retryable",
|
|
10877
|
+
"timestamp",
|
|
10878
|
+
"path"
|
|
10413
10879
|
],
|
|
10414
10880
|
properties: {
|
|
10881
|
+
statusCode: {
|
|
10882
|
+
type: "integer",
|
|
10883
|
+
description: "HTTP status code.",
|
|
10884
|
+
example: 400
|
|
10885
|
+
},
|
|
10886
|
+
code: {
|
|
10887
|
+
type: "string",
|
|
10888
|
+
description: "Machine-readable error discriminant. One of: VALIDATION_ERROR,\nAUTH_REQUIRED, TOKEN_EXPIRED, INSUFFICIENT_PERMISSIONS,\nRESOURCE_NOT_FOUND, QUOTA_EXCEEDED, INSUFFICIENT_CREDITS,\nLLM_RATE_LIMITED, LLM_TIMEOUT, LLM_UNAVAILABLE, OCR_FAILED,\nEXTRACTION_FAILED, EXTRACTION_TIMEOUT, FILE_TOO_LARGE,\nDUPLICATE_RESOURCE, DATASPACE_RUN_FAILED, INTERNAL_ERROR.\n",
|
|
10889
|
+
example: "VALIDATION_ERROR"
|
|
10890
|
+
},
|
|
10415
10891
|
error: {
|
|
10416
10892
|
type: "string",
|
|
10417
|
-
description: "
|
|
10893
|
+
description: "HTTP status name.",
|
|
10894
|
+
example: "Bad Request"
|
|
10418
10895
|
},
|
|
10419
10896
|
message: {
|
|
10420
10897
|
type: "string",
|
|
10421
|
-
description: "Human-readable error description."
|
|
10898
|
+
description: "Human-readable error description.",
|
|
10899
|
+
example: "name is required."
|
|
10422
10900
|
},
|
|
10423
|
-
|
|
10901
|
+
retryable: {
|
|
10902
|
+
type: "boolean",
|
|
10903
|
+
description: "Whether the client should retry the request.",
|
|
10904
|
+
example: false
|
|
10905
|
+
},
|
|
10906
|
+
timestamp: {
|
|
10424
10907
|
type: "string",
|
|
10425
|
-
|
|
10908
|
+
format: "date-time",
|
|
10909
|
+
description: "ISO 8601 timestamp when the error occurred.",
|
|
10910
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
10426
10911
|
},
|
|
10427
|
-
|
|
10428
|
-
type: "
|
|
10429
|
-
|
|
10430
|
-
|
|
10431
|
-
},
|
|
10432
|
-
description: "Related resource links."
|
|
10912
|
+
path: {
|
|
10913
|
+
type: "string",
|
|
10914
|
+
description: "Request path that failed.",
|
|
10915
|
+
example: "/v1/schemas"
|
|
10433
10916
|
}
|
|
10434
10917
|
}
|
|
10435
10918
|
},
|
|
@@ -10489,7 +10972,8 @@ var openapi_default = {
|
|
|
10489
10972
|
},
|
|
10490
10973
|
id: {
|
|
10491
10974
|
type: "string",
|
|
10492
|
-
format: "uuid"
|
|
10975
|
+
format: "uuid",
|
|
10976
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
10493
10977
|
}
|
|
10494
10978
|
}
|
|
10495
10979
|
},
|
|
@@ -10505,17 +10989,19 @@ var openapi_default = {
|
|
|
10505
10989
|
properties: {
|
|
10506
10990
|
extraction_id: {
|
|
10507
10991
|
type: "string",
|
|
10508
|
-
format: "uuid"
|
|
10992
|
+
format: "uuid",
|
|
10993
|
+
example: "d1a2b3c4-5678-9abc-def0-1234567890ab"
|
|
10509
10994
|
},
|
|
10510
10995
|
request_id: {
|
|
10511
10996
|
type: "string",
|
|
10512
|
-
|
|
10997
|
+
example: "req_x7y8z9a0b1c2d3e4"
|
|
10513
10998
|
},
|
|
10514
10999
|
status: {
|
|
10515
11000
|
type: "string",
|
|
10516
11001
|
enum: [
|
|
10517
11002
|
"complete"
|
|
10518
|
-
]
|
|
11003
|
+
],
|
|
11004
|
+
example: "complete"
|
|
10519
11005
|
},
|
|
10520
11006
|
document: {
|
|
10521
11007
|
$ref: "#/components/schemas/ExtractDocumentSummary"
|
|
@@ -10542,7 +11028,8 @@ var openapi_default = {
|
|
|
10542
11028
|
"string",
|
|
10543
11029
|
"null"
|
|
10544
11030
|
],
|
|
10545
|
-
format: "uuid"
|
|
11031
|
+
format: "uuid",
|
|
11032
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
10546
11033
|
},
|
|
10547
11034
|
definition: {
|
|
10548
11035
|
type: "object",
|
|
@@ -10627,10 +11114,12 @@ var openapi_default = {
|
|
|
10627
11114
|
properties: {
|
|
10628
11115
|
request_id: {
|
|
10629
11116
|
type: "string",
|
|
10630
|
-
format: "uuid"
|
|
11117
|
+
format: "uuid",
|
|
11118
|
+
example: "req_x7y8z9a0b1c2d3e4"
|
|
10631
11119
|
},
|
|
10632
11120
|
status: {
|
|
10633
11121
|
type: "string",
|
|
11122
|
+
example: "completed",
|
|
10634
11123
|
enum: [
|
|
10635
11124
|
"processing"
|
|
10636
11125
|
]
|
|
@@ -10645,10 +11134,12 @@ var openapi_default = {
|
|
|
10645
11134
|
properties: {
|
|
10646
11135
|
id: {
|
|
10647
11136
|
type: "string",
|
|
10648
|
-
format: "uuid"
|
|
11137
|
+
format: "uuid",
|
|
11138
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
10649
11139
|
},
|
|
10650
11140
|
status: {
|
|
10651
11141
|
type: "string",
|
|
11142
|
+
example: "completed",
|
|
10652
11143
|
enum: [
|
|
10653
11144
|
"queued"
|
|
10654
11145
|
]
|
|
@@ -10670,10 +11161,12 @@ var openapi_default = {
|
|
|
10670
11161
|
properties: {
|
|
10671
11162
|
id: {
|
|
10672
11163
|
type: "string",
|
|
10673
|
-
format: "uuid"
|
|
11164
|
+
format: "uuid",
|
|
11165
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
10674
11166
|
},
|
|
10675
11167
|
filename: {
|
|
10676
|
-
type: "string"
|
|
11168
|
+
type: "string",
|
|
11169
|
+
example: "invoice-042.pdf"
|
|
10677
11170
|
},
|
|
10678
11171
|
pages: {
|
|
10679
11172
|
type: "integer"
|
|
@@ -10696,7 +11189,8 @@ var openapi_default = {
|
|
|
10696
11189
|
properties: {
|
|
10697
11190
|
id: {
|
|
10698
11191
|
type: "string",
|
|
10699
|
-
format: "uuid"
|
|
11192
|
+
format: "uuid",
|
|
11193
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
10700
11194
|
},
|
|
10701
11195
|
filename: {
|
|
10702
11196
|
type: "string",
|
|
@@ -10738,7 +11232,8 @@ var openapi_default = {
|
|
|
10738
11232
|
properties: {
|
|
10739
11233
|
id: {
|
|
10740
11234
|
type: "string",
|
|
10741
|
-
format: "uuid"
|
|
11235
|
+
format: "uuid",
|
|
11236
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
10742
11237
|
},
|
|
10743
11238
|
filename: {
|
|
10744
11239
|
type: "string",
|
|
@@ -10772,6 +11267,7 @@ var openapi_default = {
|
|
|
10772
11267
|
},
|
|
10773
11268
|
status: {
|
|
10774
11269
|
type: "string",
|
|
11270
|
+
example: "completed",
|
|
10775
11271
|
enum: [
|
|
10776
11272
|
"pending",
|
|
10777
11273
|
"processing",
|
|
@@ -10787,7 +11283,8 @@ var openapi_default = {
|
|
|
10787
11283
|
"string",
|
|
10788
11284
|
"null"
|
|
10789
11285
|
],
|
|
10790
|
-
format: "uuid"
|
|
11286
|
+
format: "uuid",
|
|
11287
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
10791
11288
|
},
|
|
10792
11289
|
type: {
|
|
10793
11290
|
type: "string",
|
|
@@ -10804,11 +11301,13 @@ var openapi_default = {
|
|
|
10804
11301
|
"string",
|
|
10805
11302
|
"null"
|
|
10806
11303
|
],
|
|
10807
|
-
format: "uuid"
|
|
11304
|
+
format: "uuid",
|
|
11305
|
+
example: "d1a2b3c4-5678-9abc-def0-1234567890ab"
|
|
10808
11306
|
},
|
|
10809
11307
|
created_at: {
|
|
10810
11308
|
type: "string",
|
|
10811
|
-
format: "date-time"
|
|
11309
|
+
format: "date-time",
|
|
11310
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
10812
11311
|
},
|
|
10813
11312
|
links: {
|
|
10814
11313
|
type: "object",
|
|
@@ -10832,10 +11331,12 @@ var openapi_default = {
|
|
|
10832
11331
|
properties: {
|
|
10833
11332
|
id: {
|
|
10834
11333
|
type: "string",
|
|
10835
|
-
format: "uuid"
|
|
11334
|
+
format: "uuid",
|
|
11335
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
10836
11336
|
},
|
|
10837
11337
|
status: {
|
|
10838
11338
|
type: "string",
|
|
11339
|
+
example: "completed",
|
|
10839
11340
|
enum: [
|
|
10840
11341
|
"complete",
|
|
10841
11342
|
"failed",
|
|
@@ -10844,10 +11345,12 @@ var openapi_default = {
|
|
|
10844
11345
|
},
|
|
10845
11346
|
document_id: {
|
|
10846
11347
|
type: "string",
|
|
10847
|
-
format: "uuid"
|
|
11348
|
+
format: "uuid",
|
|
11349
|
+
example: "f0e1d2c3-b4a5-9687-8765-432109876543"
|
|
10848
11350
|
},
|
|
10849
11351
|
document_filename: {
|
|
10850
|
-
type: "string"
|
|
11352
|
+
type: "string",
|
|
11353
|
+
example: "invoice-042.pdf"
|
|
10851
11354
|
},
|
|
10852
11355
|
confidence_overall: {
|
|
10853
11356
|
type: "number",
|
|
@@ -10855,7 +11358,8 @@ var openapi_default = {
|
|
|
10855
11358
|
},
|
|
10856
11359
|
created_at: {
|
|
10857
11360
|
type: "string",
|
|
10858
|
-
format: "date-time"
|
|
11361
|
+
format: "date-time",
|
|
11362
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
10859
11363
|
},
|
|
10860
11364
|
links: {
|
|
10861
11365
|
type: "object",
|
|
@@ -10882,10 +11386,12 @@ var openapi_default = {
|
|
|
10882
11386
|
properties: {
|
|
10883
11387
|
id: {
|
|
10884
11388
|
type: "string",
|
|
10885
|
-
format: "uuid"
|
|
11389
|
+
format: "uuid",
|
|
11390
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
10886
11391
|
},
|
|
10887
11392
|
status: {
|
|
10888
11393
|
type: "string",
|
|
11394
|
+
example: "completed",
|
|
10889
11395
|
enum: [
|
|
10890
11396
|
"complete",
|
|
10891
11397
|
"failed",
|
|
@@ -10897,10 +11403,12 @@ var openapi_default = {
|
|
|
10897
11403
|
properties: {
|
|
10898
11404
|
id: {
|
|
10899
11405
|
type: "string",
|
|
10900
|
-
format: "uuid"
|
|
11406
|
+
format: "uuid",
|
|
11407
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
10901
11408
|
},
|
|
10902
11409
|
filename: {
|
|
10903
|
-
type: "string"
|
|
11410
|
+
type: "string",
|
|
11411
|
+
example: "invoice-042.pdf"
|
|
10904
11412
|
},
|
|
10905
11413
|
pages: {
|
|
10906
11414
|
type: "integer"
|
|
@@ -10953,13 +11461,15 @@ var openapi_default = {
|
|
|
10953
11461
|
type: "integer"
|
|
10954
11462
|
},
|
|
10955
11463
|
region: {
|
|
10956
|
-
type: "string"
|
|
11464
|
+
type: "string",
|
|
11465
|
+
example: "eu-west"
|
|
10957
11466
|
}
|
|
10958
11467
|
}
|
|
10959
11468
|
},
|
|
10960
11469
|
created_at: {
|
|
10961
11470
|
type: "string",
|
|
10962
|
-
format: "date-time"
|
|
11471
|
+
format: "date-time",
|
|
11472
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
10963
11473
|
},
|
|
10964
11474
|
links: {
|
|
10965
11475
|
type: "object",
|
|
@@ -10991,7 +11501,8 @@ var openapi_default = {
|
|
|
10991
11501
|
properties: {
|
|
10992
11502
|
id: {
|
|
10993
11503
|
type: "string",
|
|
10994
|
-
format: "uuid"
|
|
11504
|
+
format: "uuid",
|
|
11505
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
10995
11506
|
},
|
|
10996
11507
|
name: {
|
|
10997
11508
|
type: "string",
|
|
@@ -11064,11 +11575,13 @@ var openapi_default = {
|
|
|
11064
11575
|
},
|
|
11065
11576
|
created_at: {
|
|
11066
11577
|
type: "string",
|
|
11067
|
-
format: "date-time"
|
|
11578
|
+
format: "date-time",
|
|
11579
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
11068
11580
|
},
|
|
11069
11581
|
updated_at: {
|
|
11070
11582
|
type: "string",
|
|
11071
|
-
format: "date-time"
|
|
11583
|
+
format: "date-time",
|
|
11584
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
11072
11585
|
},
|
|
11073
11586
|
links: {
|
|
11074
11587
|
type: "object",
|
|
@@ -11145,13 +11658,16 @@ var openapi_default = {
|
|
|
11145
11658
|
],
|
|
11146
11659
|
properties: {
|
|
11147
11660
|
field_name: {
|
|
11148
|
-
type: "string"
|
|
11661
|
+
type: "string",
|
|
11662
|
+
example: "invoice_number"
|
|
11149
11663
|
},
|
|
11150
11664
|
display_name: {
|
|
11151
|
-
type: "string"
|
|
11665
|
+
type: "string",
|
|
11666
|
+
example: "Invoice Number"
|
|
11152
11667
|
},
|
|
11153
11668
|
data_type: {
|
|
11154
|
-
type: "string"
|
|
11669
|
+
type: "string",
|
|
11670
|
+
example: "string"
|
|
11155
11671
|
},
|
|
11156
11672
|
description: {
|
|
11157
11673
|
type: "string"
|
|
@@ -11215,13 +11731,16 @@ var openapi_default = {
|
|
|
11215
11731
|
],
|
|
11216
11732
|
properties: {
|
|
11217
11733
|
field_name: {
|
|
11218
|
-
type: "string"
|
|
11734
|
+
type: "string",
|
|
11735
|
+
example: "invoice_number"
|
|
11219
11736
|
},
|
|
11220
11737
|
display_name: {
|
|
11221
|
-
type: "string"
|
|
11738
|
+
type: "string",
|
|
11739
|
+
example: "Invoice Number"
|
|
11222
11740
|
},
|
|
11223
11741
|
data_type: {
|
|
11224
|
-
type: "string"
|
|
11742
|
+
type: "string",
|
|
11743
|
+
example: "string"
|
|
11225
11744
|
},
|
|
11226
11745
|
description: {
|
|
11227
11746
|
type: "string"
|
|
@@ -11243,7 +11762,8 @@ var openapi_default = {
|
|
|
11243
11762
|
properties: {
|
|
11244
11763
|
id: {
|
|
11245
11764
|
type: "string",
|
|
11246
|
-
format: "uuid"
|
|
11765
|
+
format: "uuid",
|
|
11766
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
11247
11767
|
},
|
|
11248
11768
|
name: {
|
|
11249
11769
|
type: [
|
|
@@ -11254,6 +11774,7 @@ var openapi_default = {
|
|
|
11254
11774
|
},
|
|
11255
11775
|
status: {
|
|
11256
11776
|
type: "string",
|
|
11777
|
+
example: "completed",
|
|
11257
11778
|
enum: [
|
|
11258
11779
|
"pending",
|
|
11259
11780
|
"queued",
|
|
@@ -11284,7 +11805,8 @@ var openapi_default = {
|
|
|
11284
11805
|
properties: {
|
|
11285
11806
|
id: {
|
|
11286
11807
|
type: "string",
|
|
11287
|
-
format: "uuid"
|
|
11808
|
+
format: "uuid",
|
|
11809
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
11288
11810
|
},
|
|
11289
11811
|
name: {
|
|
11290
11812
|
type: "string"
|
|
@@ -11355,27 +11877,31 @@ var openapi_default = {
|
|
|
11355
11877
|
type: "string"
|
|
11356
11878
|
},
|
|
11357
11879
|
message: {
|
|
11358
|
-
type: "string"
|
|
11880
|
+
type: "string",
|
|
11881
|
+
example: "Re-extraction started."
|
|
11359
11882
|
}
|
|
11360
11883
|
}
|
|
11361
11884
|
},
|
|
11362
11885
|
created_at: {
|
|
11363
11886
|
type: "string",
|
|
11364
|
-
format: "date-time"
|
|
11887
|
+
format: "date-time",
|
|
11888
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
11365
11889
|
},
|
|
11366
11890
|
started_at: {
|
|
11367
11891
|
type: [
|
|
11368
11892
|
"string",
|
|
11369
11893
|
"null"
|
|
11370
11894
|
],
|
|
11371
|
-
format: "date-time"
|
|
11895
|
+
format: "date-time",
|
|
11896
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
11372
11897
|
},
|
|
11373
11898
|
completed_at: {
|
|
11374
11899
|
type: [
|
|
11375
11900
|
"string",
|
|
11376
11901
|
"null"
|
|
11377
11902
|
],
|
|
11378
|
-
format: "date-time"
|
|
11903
|
+
format: "date-time",
|
|
11904
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
11379
11905
|
},
|
|
11380
11906
|
links: {
|
|
11381
11907
|
type: "object",
|
|
@@ -11406,7 +11932,8 @@ var openapi_default = {
|
|
|
11406
11932
|
properties: {
|
|
11407
11933
|
id: {
|
|
11408
11934
|
type: "string",
|
|
11409
|
-
format: "uuid"
|
|
11935
|
+
format: "uuid",
|
|
11936
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
11410
11937
|
},
|
|
11411
11938
|
name: {
|
|
11412
11939
|
type: "string",
|
|
@@ -11418,12 +11945,12 @@ var openapi_default = {
|
|
|
11418
11945
|
},
|
|
11419
11946
|
status: {
|
|
11420
11947
|
type: "string",
|
|
11948
|
+
example: "completed",
|
|
11421
11949
|
enum: [
|
|
11422
11950
|
"active",
|
|
11423
11951
|
"syncing",
|
|
11424
11952
|
"error"
|
|
11425
|
-
]
|
|
11426
|
-
example: "active"
|
|
11953
|
+
]
|
|
11427
11954
|
},
|
|
11428
11955
|
document_count: {
|
|
11429
11956
|
type: "integer",
|
|
@@ -11437,7 +11964,8 @@ var openapi_default = {
|
|
|
11437
11964
|
properties: {
|
|
11438
11965
|
id: {
|
|
11439
11966
|
type: "string",
|
|
11440
|
-
format: "uuid"
|
|
11967
|
+
format: "uuid",
|
|
11968
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
11441
11969
|
}
|
|
11442
11970
|
}
|
|
11443
11971
|
},
|
|
@@ -11448,7 +11976,8 @@ var openapi_default = {
|
|
|
11448
11976
|
},
|
|
11449
11977
|
created_at: {
|
|
11450
11978
|
type: "string",
|
|
11451
|
-
format: "date-time"
|
|
11979
|
+
format: "date-time",
|
|
11980
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
11452
11981
|
},
|
|
11453
11982
|
links: {
|
|
11454
11983
|
type: "object",
|
|
@@ -11481,6 +12010,7 @@ var openapi_default = {
|
|
|
11481
12010
|
default_schema_id: {
|
|
11482
12011
|
type: "string",
|
|
11483
12012
|
format: "uuid",
|
|
12013
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
11484
12014
|
description: "Optional schema ID to apply by default to documents in this source."
|
|
11485
12015
|
}
|
|
11486
12016
|
}
|
|
@@ -11497,6 +12027,7 @@ var openapi_default = {
|
|
|
11497
12027
|
"null"
|
|
11498
12028
|
],
|
|
11499
12029
|
format: "uuid",
|
|
12030
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
11500
12031
|
description: "Set to null to remove the default schema."
|
|
11501
12032
|
}
|
|
11502
12033
|
}
|
|
@@ -11507,13 +12038,16 @@ var openapi_default = {
|
|
|
11507
12038
|
document_id: {
|
|
11508
12039
|
type: "string",
|
|
11509
12040
|
format: "uuid",
|
|
12041
|
+
example: "f0e1d2c3-b4a5-9687-8765-432109876543",
|
|
11510
12042
|
description: "ID of the created document (absent if duplicate)."
|
|
11511
12043
|
},
|
|
11512
12044
|
filename: {
|
|
11513
|
-
type: "string"
|
|
12045
|
+
type: "string",
|
|
12046
|
+
example: "invoice-042.pdf"
|
|
11514
12047
|
},
|
|
11515
12048
|
status: {
|
|
11516
12049
|
type: "string",
|
|
12050
|
+
example: "completed",
|
|
11517
12051
|
enum: [
|
|
11518
12052
|
"queued",
|
|
11519
12053
|
"duplicate"
|
|
@@ -11522,10 +12056,12 @@ var openapi_default = {
|
|
|
11522
12056
|
},
|
|
11523
12057
|
source_id: {
|
|
11524
12058
|
type: "string",
|
|
11525
|
-
format: "uuid"
|
|
12059
|
+
format: "uuid",
|
|
12060
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
11526
12061
|
},
|
|
11527
12062
|
message: {
|
|
11528
12063
|
type: "string",
|
|
12064
|
+
example: "Re-extraction started.",
|
|
11529
12065
|
description: "Present when status is `duplicate`."
|
|
11530
12066
|
},
|
|
11531
12067
|
existing_document_id: {
|
|
@@ -11534,6 +12070,7 @@ var openapi_default = {
|
|
|
11534
12070
|
"null"
|
|
11535
12071
|
],
|
|
11536
12072
|
format: "uuid",
|
|
12073
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
11537
12074
|
description: "Present when status is `duplicate`."
|
|
11538
12075
|
},
|
|
11539
12076
|
links: {
|
|
@@ -11554,13 +12091,16 @@ var openapi_default = {
|
|
|
11554
12091
|
properties: {
|
|
11555
12092
|
id: {
|
|
11556
12093
|
type: "string",
|
|
11557
|
-
format: "uuid"
|
|
12094
|
+
format: "uuid",
|
|
12095
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
11558
12096
|
},
|
|
11559
12097
|
filename: {
|
|
11560
|
-
type: "string"
|
|
12098
|
+
type: "string",
|
|
12099
|
+
example: "invoice-042.pdf"
|
|
11561
12100
|
},
|
|
11562
12101
|
status: {
|
|
11563
12102
|
type: "string",
|
|
12103
|
+
example: "completed",
|
|
11564
12104
|
enum: [
|
|
11565
12105
|
"pending",
|
|
11566
12106
|
"processing",
|
|
@@ -11579,7 +12119,8 @@ var openapi_default = {
|
|
|
11579
12119
|
},
|
|
11580
12120
|
created_at: {
|
|
11581
12121
|
type: "string",
|
|
11582
|
-
format: "date-time"
|
|
12122
|
+
format: "date-time",
|
|
12123
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
11583
12124
|
},
|
|
11584
12125
|
links: {
|
|
11585
12126
|
type: "object",
|
|
@@ -11600,15 +12141,16 @@ var openapi_default = {
|
|
|
11600
12141
|
schema_id: {
|
|
11601
12142
|
type: "string",
|
|
11602
12143
|
format: "uuid",
|
|
11603
|
-
|
|
11604
|
-
|
|
12144
|
+
example: "b2c3d4e5-f6a7-8901-bcde-f12345678901",
|
|
12145
|
+
description: "User schema UUID to run this job against."
|
|
11605
12146
|
},
|
|
11606
12147
|
document_ids: {
|
|
11607
12148
|
type: "array",
|
|
11608
12149
|
description: "Optional list of document UUIDs to process. If omitted or empty, all\ncompleted documents for the authenticated customer are used.\n",
|
|
11609
12150
|
items: {
|
|
11610
12151
|
type: "string",
|
|
11611
|
-
format: "uuid"
|
|
12152
|
+
format: "uuid",
|
|
12153
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
11612
12154
|
}
|
|
11613
12155
|
},
|
|
11614
12156
|
name: {
|
|
@@ -11633,10 +12175,12 @@ var openapi_default = {
|
|
|
11633
12175
|
id: {
|
|
11634
12176
|
type: "string",
|
|
11635
12177
|
format: "uuid",
|
|
12178
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
11636
12179
|
description: "The newly created job's UUID."
|
|
11637
12180
|
},
|
|
11638
12181
|
status: {
|
|
11639
12182
|
type: "string",
|
|
12183
|
+
example: "completed",
|
|
11640
12184
|
enum: [
|
|
11641
12185
|
"pending"
|
|
11642
12186
|
],
|
|
@@ -11672,7 +12216,8 @@ var openapi_default = {
|
|
|
11672
12216
|
properties: {
|
|
11673
12217
|
job_id: {
|
|
11674
12218
|
type: "string",
|
|
11675
|
-
format: "uuid"
|
|
12219
|
+
format: "uuid",
|
|
12220
|
+
example: "c3d4e5f6-a7b8-9012-cdef-123456789012"
|
|
11676
12221
|
},
|
|
11677
12222
|
job_status: {
|
|
11678
12223
|
type: "string",
|
|
@@ -11693,7 +12238,8 @@ var openapi_default = {
|
|
|
11693
12238
|
properties: {
|
|
11694
12239
|
id: {
|
|
11695
12240
|
type: "string",
|
|
11696
|
-
format: "uuid"
|
|
12241
|
+
format: "uuid",
|
|
12242
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
11697
12243
|
},
|
|
11698
12244
|
name: {
|
|
11699
12245
|
type: "string"
|
|
@@ -11714,17 +12260,21 @@ var openapi_default = {
|
|
|
11714
12260
|
id: {
|
|
11715
12261
|
type: "string",
|
|
11716
12262
|
format: "uuid",
|
|
12263
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
11717
12264
|
description: "The result row's UUID."
|
|
11718
12265
|
},
|
|
11719
12266
|
document_id: {
|
|
11720
12267
|
type: "string",
|
|
11721
|
-
format: "uuid"
|
|
12268
|
+
format: "uuid",
|
|
12269
|
+
example: "f0e1d2c3-b4a5-9687-8765-432109876543"
|
|
11722
12270
|
},
|
|
11723
12271
|
filename: {
|
|
11724
|
-
type: "string"
|
|
12272
|
+
type: "string",
|
|
12273
|
+
example: "invoice-042.pdf"
|
|
11725
12274
|
},
|
|
11726
12275
|
status: {
|
|
11727
12276
|
type: "string",
|
|
12277
|
+
example: "completed",
|
|
11728
12278
|
description: "Per-row status (e.g. `complete`, `partial`, `failed`)."
|
|
11729
12279
|
},
|
|
11730
12280
|
values: {
|
|
@@ -11773,7 +12323,8 @@ var openapi_default = {
|
|
|
11773
12323
|
properties: {
|
|
11774
12324
|
id: {
|
|
11775
12325
|
type: "string",
|
|
11776
|
-
format: "uuid"
|
|
12326
|
+
format: "uuid",
|
|
12327
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
11777
12328
|
},
|
|
11778
12329
|
name: {
|
|
11779
12330
|
type: "string",
|
|
@@ -11789,14 +12340,16 @@ var openapi_default = {
|
|
|
11789
12340
|
},
|
|
11790
12341
|
created_at: {
|
|
11791
12342
|
type: "string",
|
|
11792
|
-
format: "date-time"
|
|
12343
|
+
format: "date-time",
|
|
12344
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
11793
12345
|
},
|
|
11794
12346
|
updated_at: {
|
|
11795
12347
|
type: [
|
|
11796
12348
|
"string",
|
|
11797
12349
|
"null"
|
|
11798
12350
|
],
|
|
11799
|
-
format: "date-time"
|
|
12351
|
+
format: "date-time",
|
|
12352
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
11800
12353
|
},
|
|
11801
12354
|
links: {
|
|
11802
12355
|
type: "object",
|
|
@@ -11947,14 +12500,14 @@ var openapi_default = {
|
|
|
11947
12500
|
},
|
|
11948
12501
|
match_type: {
|
|
11949
12502
|
type: "string",
|
|
12503
|
+
example: "exact",
|
|
11950
12504
|
enum: [
|
|
11951
12505
|
"exact",
|
|
11952
12506
|
"fuzzy",
|
|
11953
12507
|
"date_range",
|
|
11954
12508
|
"numeric_range"
|
|
11955
12509
|
],
|
|
11956
|
-
description: "Matching strategy applied to this pair."
|
|
11957
|
-
example: "fuzzy"
|
|
12510
|
+
description: "Matching strategy applied to this pair."
|
|
11958
12511
|
},
|
|
11959
12512
|
weight: {
|
|
11960
12513
|
type: "number",
|
|
@@ -11977,7 +12530,8 @@ var openapi_default = {
|
|
|
11977
12530
|
properties: {
|
|
11978
12531
|
id: {
|
|
11979
12532
|
type: "string",
|
|
11980
|
-
format: "uuid"
|
|
12533
|
+
format: "uuid",
|
|
12534
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
11981
12535
|
},
|
|
11982
12536
|
name: {
|
|
11983
12537
|
type: "string",
|
|
@@ -11985,7 +12539,8 @@ var openapi_default = {
|
|
|
11985
12539
|
},
|
|
11986
12540
|
reference_data_id: {
|
|
11987
12541
|
type: "string",
|
|
11988
|
-
format: "uuid"
|
|
12542
|
+
format: "uuid",
|
|
12543
|
+
example: "b8c9d0e1-f2a3-4567-bcde-678901234567"
|
|
11989
12544
|
},
|
|
11990
12545
|
target_type: {
|
|
11991
12546
|
type: "string",
|
|
@@ -12017,14 +12572,16 @@ var openapi_default = {
|
|
|
12017
12572
|
},
|
|
12018
12573
|
created_at: {
|
|
12019
12574
|
type: "string",
|
|
12020
|
-
format: "date-time"
|
|
12575
|
+
format: "date-time",
|
|
12576
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
12021
12577
|
},
|
|
12022
12578
|
updated_at: {
|
|
12023
12579
|
type: [
|
|
12024
12580
|
"string",
|
|
12025
12581
|
"null"
|
|
12026
12582
|
],
|
|
12027
|
-
format: "date-time"
|
|
12583
|
+
format: "date-time",
|
|
12584
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
12028
12585
|
},
|
|
12029
12586
|
links: {
|
|
12030
12587
|
type: "object",
|
|
@@ -12054,6 +12611,7 @@ var openapi_default = {
|
|
|
12054
12611
|
reference_data_id: {
|
|
12055
12612
|
type: "string",
|
|
12056
12613
|
format: "uuid",
|
|
12614
|
+
example: "b8c9d0e1-f2a3-4567-bcde-678901234567",
|
|
12057
12615
|
description: "UUID of the reference dataset to match against."
|
|
12058
12616
|
},
|
|
12059
12617
|
field_mappings: {
|
|
@@ -12131,14 +12689,17 @@ var openapi_default = {
|
|
|
12131
12689
|
properties: {
|
|
12132
12690
|
id: {
|
|
12133
12691
|
type: "string",
|
|
12134
|
-
format: "uuid"
|
|
12692
|
+
format: "uuid",
|
|
12693
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
12135
12694
|
},
|
|
12136
12695
|
matching_config_id: {
|
|
12137
12696
|
type: "string",
|
|
12138
|
-
format: "uuid"
|
|
12697
|
+
format: "uuid",
|
|
12698
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
12139
12699
|
},
|
|
12140
12700
|
status: {
|
|
12141
12701
|
type: "string",
|
|
12702
|
+
example: "completed",
|
|
12142
12703
|
enum: [
|
|
12143
12704
|
"queued",
|
|
12144
12705
|
"running",
|
|
@@ -12175,14 +12736,16 @@ var openapi_default = {
|
|
|
12175
12736
|
"string",
|
|
12176
12737
|
"null"
|
|
12177
12738
|
],
|
|
12178
|
-
format: "date-time"
|
|
12739
|
+
format: "date-time",
|
|
12740
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
12179
12741
|
},
|
|
12180
12742
|
completed_at: {
|
|
12181
12743
|
type: [
|
|
12182
12744
|
"string",
|
|
12183
12745
|
"null"
|
|
12184
12746
|
],
|
|
12185
|
-
format: "date-time"
|
|
12747
|
+
format: "date-time",
|
|
12748
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
12186
12749
|
},
|
|
12187
12750
|
error: {
|
|
12188
12751
|
type: [
|
|
@@ -12192,7 +12755,8 @@ var openapi_default = {
|
|
|
12192
12755
|
},
|
|
12193
12756
|
created_at: {
|
|
12194
12757
|
type: "string",
|
|
12195
|
-
format: "date-time"
|
|
12758
|
+
format: "date-time",
|
|
12759
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
12196
12760
|
},
|
|
12197
12761
|
links: {
|
|
12198
12762
|
type: "object",
|
|
@@ -12231,11 +12795,13 @@ var openapi_default = {
|
|
|
12231
12795
|
properties: {
|
|
12232
12796
|
id: {
|
|
12233
12797
|
type: "string",
|
|
12234
|
-
format: "uuid"
|
|
12798
|
+
format: "uuid",
|
|
12799
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
12235
12800
|
},
|
|
12236
12801
|
document_id: {
|
|
12237
12802
|
type: "string",
|
|
12238
|
-
format: "uuid"
|
|
12803
|
+
format: "uuid",
|
|
12804
|
+
example: "f0e1d2c3-b4a5-9687-8765-432109876543"
|
|
12239
12805
|
},
|
|
12240
12806
|
document_filename: {
|
|
12241
12807
|
type: [
|
|
@@ -12248,7 +12814,8 @@ var openapi_default = {
|
|
|
12248
12814
|
"string",
|
|
12249
12815
|
"null"
|
|
12250
12816
|
],
|
|
12251
|
-
format: "uuid"
|
|
12817
|
+
format: "uuid",
|
|
12818
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
12252
12819
|
},
|
|
12253
12820
|
confidence: {
|
|
12254
12821
|
type: "number",
|
|
@@ -12258,6 +12825,7 @@ var openapi_default = {
|
|
|
12258
12825
|
},
|
|
12259
12826
|
status: {
|
|
12260
12827
|
type: "string",
|
|
12828
|
+
example: "completed",
|
|
12261
12829
|
description: "Per-result status (e.g. `auto_accepted`, `needs_review`, `no_match`)."
|
|
12262
12830
|
},
|
|
12263
12831
|
evidence: {
|
|
@@ -12280,15 +12848,16 @@ var openapi_default = {
|
|
|
12280
12848
|
properties: {
|
|
12281
12849
|
id: {
|
|
12282
12850
|
type: "string",
|
|
12283
|
-
format: "uuid"
|
|
12851
|
+
format: "uuid",
|
|
12852
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
12284
12853
|
},
|
|
12285
12854
|
name: {
|
|
12286
12855
|
type: "string"
|
|
12287
12856
|
},
|
|
12288
12857
|
trigger_type: {
|
|
12289
12858
|
type: "string",
|
|
12290
|
-
|
|
12291
|
-
|
|
12859
|
+
example: "document_classified",
|
|
12860
|
+
description: "Trigger kind. Always `document_classified` for rules created via this API."
|
|
12292
12861
|
},
|
|
12293
12862
|
conditions: {
|
|
12294
12863
|
type: "object",
|
|
@@ -12297,8 +12866,8 @@ var openapi_default = {
|
|
|
12297
12866
|
},
|
|
12298
12867
|
action_type: {
|
|
12299
12868
|
type: "string",
|
|
12300
|
-
|
|
12301
|
-
|
|
12869
|
+
example: "route_to_schema",
|
|
12870
|
+
description: "Resolved action kind. Defaults to `route_to_schema` when not specified on the request body."
|
|
12302
12871
|
},
|
|
12303
12872
|
actions: {
|
|
12304
12873
|
type: "object",
|
|
@@ -12324,18 +12893,21 @@ var openapi_default = {
|
|
|
12324
12893
|
"string",
|
|
12325
12894
|
"null"
|
|
12326
12895
|
],
|
|
12327
|
-
format: "uuid"
|
|
12896
|
+
format: "uuid",
|
|
12897
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
12328
12898
|
},
|
|
12329
12899
|
created_at: {
|
|
12330
12900
|
type: "string",
|
|
12331
|
-
format: "date-time"
|
|
12901
|
+
format: "date-time",
|
|
12902
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
12332
12903
|
},
|
|
12333
12904
|
updated_at: {
|
|
12334
12905
|
type: [
|
|
12335
12906
|
"string",
|
|
12336
12907
|
"null"
|
|
12337
12908
|
],
|
|
12338
|
-
format: "date-time"
|
|
12909
|
+
format: "date-time",
|
|
12910
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
12339
12911
|
},
|
|
12340
12912
|
links: {
|
|
12341
12913
|
type: "object",
|
|
@@ -12422,11 +12994,13 @@ var openapi_default = {
|
|
|
12422
12994
|
properties: {
|
|
12423
12995
|
id: {
|
|
12424
12996
|
type: "string",
|
|
12425
|
-
format: "uuid"
|
|
12997
|
+
format: "uuid",
|
|
12998
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
12426
12999
|
},
|
|
12427
13000
|
customer_id: {
|
|
12428
13001
|
type: "string",
|
|
12429
|
-
format: "uuid"
|
|
13002
|
+
format: "uuid",
|
|
13003
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
12430
13004
|
},
|
|
12431
13005
|
name: {
|
|
12432
13006
|
type: "string",
|
|
@@ -12465,7 +13039,8 @@ var openapi_default = {
|
|
|
12465
13039
|
"string",
|
|
12466
13040
|
"null"
|
|
12467
13041
|
],
|
|
12468
|
-
format: "date-time"
|
|
13042
|
+
format: "date-time",
|
|
13043
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
12469
13044
|
},
|
|
12470
13045
|
last_delivery_status: {
|
|
12471
13046
|
type: [
|
|
@@ -12475,11 +13050,13 @@ var openapi_default = {
|
|
|
12475
13050
|
},
|
|
12476
13051
|
created_at: {
|
|
12477
13052
|
type: "string",
|
|
12478
|
-
format: "date-time"
|
|
13053
|
+
format: "date-time",
|
|
13054
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
12479
13055
|
},
|
|
12480
13056
|
updated_at: {
|
|
12481
13057
|
type: "string",
|
|
12482
|
-
format: "date-time"
|
|
13058
|
+
format: "date-time",
|
|
13059
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
12483
13060
|
}
|
|
12484
13061
|
}
|
|
12485
13062
|
},
|
|
@@ -12706,11 +13283,13 @@ var openapi_default = {
|
|
|
12706
13283
|
properties: {
|
|
12707
13284
|
id: {
|
|
12708
13285
|
type: "string",
|
|
12709
|
-
format: "uuid"
|
|
13286
|
+
format: "uuid",
|
|
13287
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
12710
13288
|
},
|
|
12711
13289
|
customer_id: {
|
|
12712
13290
|
type: "string",
|
|
12713
|
-
format: "uuid"
|
|
13291
|
+
format: "uuid",
|
|
13292
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
12714
13293
|
},
|
|
12715
13294
|
name: {
|
|
12716
13295
|
type: "string"
|
|
@@ -12724,7 +13303,8 @@ var openapi_default = {
|
|
|
12724
13303
|
},
|
|
12725
13304
|
destination_id: {
|
|
12726
13305
|
type: "string",
|
|
12727
|
-
format: "uuid"
|
|
13306
|
+
format: "uuid",
|
|
13307
|
+
example: "e1f2a3b4-c5d6-7890-efab-901234567890"
|
|
12728
13308
|
},
|
|
12729
13309
|
field_map: {
|
|
12730
13310
|
$ref: "#/components/schemas/FieldMap"
|
|
@@ -12751,11 +13331,13 @@ var openapi_default = {
|
|
|
12751
13331
|
},
|
|
12752
13332
|
created_at: {
|
|
12753
13333
|
type: "string",
|
|
12754
|
-
format: "date-time"
|
|
13334
|
+
format: "date-time",
|
|
13335
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
12755
13336
|
},
|
|
12756
13337
|
updated_at: {
|
|
12757
13338
|
type: "string",
|
|
12758
|
-
format: "date-time"
|
|
13339
|
+
format: "date-time",
|
|
13340
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
12759
13341
|
}
|
|
12760
13342
|
}
|
|
12761
13343
|
},
|
|
@@ -12780,7 +13362,8 @@ var openapi_default = {
|
|
|
12780
13362
|
},
|
|
12781
13363
|
destination_id: {
|
|
12782
13364
|
type: "string",
|
|
12783
|
-
format: "uuid"
|
|
13365
|
+
format: "uuid",
|
|
13366
|
+
example: "e1f2a3b4-c5d6-7890-efab-901234567890"
|
|
12784
13367
|
},
|
|
12785
13368
|
field_map: {
|
|
12786
13369
|
$ref: "#/components/schemas/FieldMap"
|
|
@@ -12815,7 +13398,8 @@ var openapi_default = {
|
|
|
12815
13398
|
},
|
|
12816
13399
|
destination_id: {
|
|
12817
13400
|
type: "string",
|
|
12818
|
-
format: "uuid"
|
|
13401
|
+
format: "uuid",
|
|
13402
|
+
example: "e1f2a3b4-c5d6-7890-efab-901234567890"
|
|
12819
13403
|
},
|
|
12820
13404
|
field_map: {
|
|
12821
13405
|
$ref: "#/components/schemas/FieldMap"
|
|
@@ -12851,15 +13435,18 @@ var openapi_default = {
|
|
|
12851
13435
|
properties: {
|
|
12852
13436
|
id: {
|
|
12853
13437
|
type: "string",
|
|
12854
|
-
format: "uuid"
|
|
13438
|
+
format: "uuid",
|
|
13439
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
12855
13440
|
},
|
|
12856
13441
|
customer_id: {
|
|
12857
13442
|
type: "string",
|
|
12858
|
-
format: "uuid"
|
|
13443
|
+
format: "uuid",
|
|
13444
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
12859
13445
|
},
|
|
12860
13446
|
binding_id: {
|
|
12861
13447
|
type: "string",
|
|
12862
|
-
format: "uuid"
|
|
13448
|
+
format: "uuid",
|
|
13449
|
+
example: "d0e1f2a3-b4c5-6789-defa-890123456789"
|
|
12863
13450
|
},
|
|
12864
13451
|
event_id: {
|
|
12865
13452
|
type: "string",
|
|
@@ -12871,6 +13458,7 @@ var openapi_default = {
|
|
|
12871
13458
|
},
|
|
12872
13459
|
status: {
|
|
12873
13460
|
type: "string",
|
|
13461
|
+
example: "completed",
|
|
12874
13462
|
enum: [
|
|
12875
13463
|
"in_flight",
|
|
12876
13464
|
"succeeded",
|
|
@@ -12922,11 +13510,13 @@ var openapi_default = {
|
|
|
12922
13510
|
"string",
|
|
12923
13511
|
"null"
|
|
12924
13512
|
],
|
|
12925
|
-
format: "date-time"
|
|
13513
|
+
format: "date-time",
|
|
13514
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
12926
13515
|
},
|
|
12927
13516
|
created_at: {
|
|
12928
13517
|
type: "string",
|
|
12929
|
-
format: "date-time"
|
|
13518
|
+
format: "date-time",
|
|
13519
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
12930
13520
|
}
|
|
12931
13521
|
}
|
|
12932
13522
|
},
|
|
@@ -12945,15 +13535,18 @@ var openapi_default = {
|
|
|
12945
13535
|
properties: {
|
|
12946
13536
|
id: {
|
|
12947
13537
|
type: "string",
|
|
12948
|
-
format: "uuid"
|
|
13538
|
+
format: "uuid",
|
|
13539
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
12949
13540
|
},
|
|
12950
13541
|
customer_id: {
|
|
12951
13542
|
type: "string",
|
|
12952
|
-
format: "uuid"
|
|
13543
|
+
format: "uuid",
|
|
13544
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
12953
13545
|
},
|
|
12954
13546
|
binding_id: {
|
|
12955
13547
|
type: "string",
|
|
12956
|
-
format: "uuid"
|
|
13548
|
+
format: "uuid",
|
|
13549
|
+
example: "d0e1f2a3-b4c5-6789-defa-890123456789"
|
|
12957
13550
|
},
|
|
12958
13551
|
event_id: {
|
|
12959
13552
|
type: "string",
|
|
@@ -12965,10 +13558,12 @@ var openapi_default = {
|
|
|
12965
13558
|
"null"
|
|
12966
13559
|
],
|
|
12967
13560
|
format: "uuid",
|
|
13561
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
12968
13562
|
description: "FK to the last DeliveryItem attempt (nullable \u2014 `ON DELETE SET NULL`)."
|
|
12969
13563
|
},
|
|
12970
13564
|
error_code: {
|
|
12971
|
-
type: "string"
|
|
13565
|
+
type: "string",
|
|
13566
|
+
example: "delivery_timeout"
|
|
12972
13567
|
},
|
|
12973
13568
|
error_message: {
|
|
12974
13569
|
type: [
|
|
@@ -12981,7 +13576,8 @@ var openapi_default = {
|
|
|
12981
13576
|
},
|
|
12982
13577
|
created_at: {
|
|
12983
13578
|
type: "string",
|
|
12984
|
-
format: "date-time"
|
|
13579
|
+
format: "date-time",
|
|
13580
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
12985
13581
|
}
|
|
12986
13582
|
}
|
|
12987
13583
|
},
|
|
@@ -13003,7 +13599,8 @@ var openapi_default = {
|
|
|
13003
13599
|
},
|
|
13004
13600
|
customer_id: {
|
|
13005
13601
|
type: "string",
|
|
13006
|
-
format: "uuid"
|
|
13602
|
+
format: "uuid",
|
|
13603
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
13007
13604
|
},
|
|
13008
13605
|
event_type: {
|
|
13009
13606
|
type: "string"
|
|
@@ -13021,14 +13618,16 @@ var openapi_default = {
|
|
|
13021
13618
|
},
|
|
13022
13619
|
created_at: {
|
|
13023
13620
|
type: "string",
|
|
13024
|
-
format: "date-time"
|
|
13621
|
+
format: "date-time",
|
|
13622
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
13025
13623
|
},
|
|
13026
13624
|
processed_at: {
|
|
13027
13625
|
type: [
|
|
13028
13626
|
"string",
|
|
13029
13627
|
"null"
|
|
13030
13628
|
],
|
|
13031
|
-
format: "date-time"
|
|
13629
|
+
format: "date-time",
|
|
13630
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
13032
13631
|
},
|
|
13033
13632
|
processing_attempts: {
|
|
13034
13633
|
type: "integer"
|
|
@@ -13065,6 +13664,7 @@ var openapi_default = {
|
|
|
13065
13664
|
},
|
|
13066
13665
|
label: {
|
|
13067
13666
|
type: "string",
|
|
13667
|
+
example: "Customer Onboarding",
|
|
13068
13668
|
description: 'Short human-readable label, e.g. "Document markdown content". Falls back to `type` if unknown.'
|
|
13069
13669
|
},
|
|
13070
13670
|
description: {
|
|
@@ -13871,6 +14471,7 @@ var openapi_default = {
|
|
|
13871
14471
|
source_id: {
|
|
13872
14472
|
type: "string",
|
|
13873
14473
|
format: "uuid",
|
|
14474
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
13874
14475
|
description: "Optional source connection UUID to narrow the result set."
|
|
13875
14476
|
},
|
|
13876
14477
|
conditions: {
|
|
@@ -13979,31 +14580,36 @@ var openapi_default = {
|
|
|
13979
14580
|
properties: {
|
|
13980
14581
|
id: {
|
|
13981
14582
|
type: "string",
|
|
13982
|
-
format: "uuid"
|
|
14583
|
+
format: "uuid",
|
|
14584
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
13983
14585
|
},
|
|
13984
14586
|
run_id: {
|
|
13985
14587
|
type: [
|
|
13986
14588
|
"string",
|
|
13987
14589
|
"null"
|
|
13988
14590
|
],
|
|
13989
|
-
format: "uuid"
|
|
14591
|
+
format: "uuid",
|
|
14592
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
13990
14593
|
},
|
|
13991
14594
|
document_id: {
|
|
13992
14595
|
type: [
|
|
13993
14596
|
"string",
|
|
13994
14597
|
"null"
|
|
13995
14598
|
],
|
|
13996
|
-
format: "uuid"
|
|
14599
|
+
format: "uuid",
|
|
14600
|
+
example: "f0e1d2c3-b4a5-9687-8765-432109876543"
|
|
13997
14601
|
},
|
|
13998
14602
|
schema_id: {
|
|
13999
14603
|
type: [
|
|
14000
14604
|
"string",
|
|
14001
14605
|
"null"
|
|
14002
14606
|
],
|
|
14003
|
-
format: "uuid"
|
|
14607
|
+
format: "uuid",
|
|
14608
|
+
example: "b2c3d4e5-f6a7-8901-bcde-f12345678901"
|
|
14004
14609
|
},
|
|
14005
14610
|
status: {
|
|
14006
14611
|
type: "string",
|
|
14612
|
+
example: "completed",
|
|
14007
14613
|
description: "Review status (e.g. `pending`, `approved`, `rejected`)."
|
|
14008
14614
|
},
|
|
14009
14615
|
overall_confidence: {
|
|
@@ -14032,11 +14638,13 @@ var openapi_default = {
|
|
|
14032
14638
|
"string",
|
|
14033
14639
|
"null"
|
|
14034
14640
|
],
|
|
14035
|
-
format: "date-time"
|
|
14641
|
+
format: "date-time",
|
|
14642
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14036
14643
|
},
|
|
14037
14644
|
created_at: {
|
|
14038
14645
|
type: "string",
|
|
14039
|
-
format: "date-time"
|
|
14646
|
+
format: "date-time",
|
|
14647
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14040
14648
|
},
|
|
14041
14649
|
links: {
|
|
14042
14650
|
type: "object",
|
|
@@ -14114,7 +14722,8 @@ var openapi_default = {
|
|
|
14114
14722
|
description: "Non-empty list of validation-record UUIDs.",
|
|
14115
14723
|
items: {
|
|
14116
14724
|
type: "string",
|
|
14117
|
-
format: "uuid"
|
|
14725
|
+
format: "uuid",
|
|
14726
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
14118
14727
|
}
|
|
14119
14728
|
},
|
|
14120
14729
|
action: {
|
|
@@ -14154,10 +14763,12 @@ var openapi_default = {
|
|
|
14154
14763
|
properties: {
|
|
14155
14764
|
id: {
|
|
14156
14765
|
type: "string",
|
|
14157
|
-
format: "uuid"
|
|
14766
|
+
format: "uuid",
|
|
14767
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
14158
14768
|
},
|
|
14159
14769
|
status: {
|
|
14160
14770
|
type: "string",
|
|
14771
|
+
example: "completed",
|
|
14161
14772
|
description: "Per-record outcome (`approved`, `rejected`, or `error`)."
|
|
14162
14773
|
},
|
|
14163
14774
|
error: {
|
|
@@ -14178,7 +14789,8 @@ var openapi_default = {
|
|
|
14178
14789
|
properties: {
|
|
14179
14790
|
id: {
|
|
14180
14791
|
type: "string",
|
|
14181
|
-
format: "uuid"
|
|
14792
|
+
format: "uuid",
|
|
14793
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
14182
14794
|
},
|
|
14183
14795
|
name: {
|
|
14184
14796
|
type: "string"
|
|
@@ -14194,7 +14806,8 @@ var openapi_default = {
|
|
|
14194
14806
|
"string",
|
|
14195
14807
|
"null"
|
|
14196
14808
|
],
|
|
14197
|
-
format: "uuid"
|
|
14809
|
+
format: "uuid",
|
|
14810
|
+
example: "b2c3d4e5-f6a7-8901-bcde-f12345678901"
|
|
14198
14811
|
},
|
|
14199
14812
|
document_count: {
|
|
14200
14813
|
type: [
|
|
@@ -14204,7 +14817,8 @@ var openapi_default = {
|
|
|
14204
14817
|
},
|
|
14205
14818
|
created_at: {
|
|
14206
14819
|
type: "string",
|
|
14207
|
-
format: "date-time"
|
|
14820
|
+
format: "date-time",
|
|
14821
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14208
14822
|
},
|
|
14209
14823
|
links: {
|
|
14210
14824
|
type: "object",
|
|
@@ -14255,14 +14869,16 @@ var openapi_default = {
|
|
|
14255
14869
|
properties: {
|
|
14256
14870
|
id: {
|
|
14257
14871
|
type: "string",
|
|
14258
|
-
format: "uuid"
|
|
14872
|
+
format: "uuid",
|
|
14873
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
14259
14874
|
},
|
|
14260
14875
|
document_id: {
|
|
14261
14876
|
type: [
|
|
14262
14877
|
"string",
|
|
14263
14878
|
"null"
|
|
14264
14879
|
],
|
|
14265
|
-
format: "uuid"
|
|
14880
|
+
format: "uuid",
|
|
14881
|
+
example: "f0e1d2c3-b4a5-9687-8765-432109876543"
|
|
14266
14882
|
},
|
|
14267
14883
|
expected_data: {
|
|
14268
14884
|
type: "object",
|
|
@@ -14277,7 +14893,8 @@ var openapi_default = {
|
|
|
14277
14893
|
},
|
|
14278
14894
|
created_at: {
|
|
14279
14895
|
type: "string",
|
|
14280
|
-
format: "date-time"
|
|
14896
|
+
format: "date-time",
|
|
14897
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14281
14898
|
}
|
|
14282
14899
|
}
|
|
14283
14900
|
},
|
|
@@ -14290,7 +14907,8 @@ var openapi_default = {
|
|
|
14290
14907
|
properties: {
|
|
14291
14908
|
id: {
|
|
14292
14909
|
type: "string",
|
|
14293
|
-
format: "uuid"
|
|
14910
|
+
format: "uuid",
|
|
14911
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
14294
14912
|
},
|
|
14295
14913
|
name: {
|
|
14296
14914
|
type: [
|
|
@@ -14303,17 +14921,20 @@ var openapi_default = {
|
|
|
14303
14921
|
"string",
|
|
14304
14922
|
"null"
|
|
14305
14923
|
],
|
|
14306
|
-
format: "uuid"
|
|
14924
|
+
format: "uuid",
|
|
14925
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
14307
14926
|
},
|
|
14308
14927
|
user_schema_id: {
|
|
14309
14928
|
type: [
|
|
14310
14929
|
"string",
|
|
14311
14930
|
"null"
|
|
14312
14931
|
],
|
|
14313
|
-
format: "uuid"
|
|
14932
|
+
format: "uuid",
|
|
14933
|
+
example: "b2c3d4e5-f6a7-8901-bcde-f12345678901"
|
|
14314
14934
|
},
|
|
14315
14935
|
status: {
|
|
14316
14936
|
type: "string",
|
|
14937
|
+
example: "completed",
|
|
14317
14938
|
description: "Benchmark run status."
|
|
14318
14939
|
},
|
|
14319
14940
|
accuracy_overall: {
|
|
@@ -14366,18 +14987,21 @@ var openapi_default = {
|
|
|
14366
14987
|
"string",
|
|
14367
14988
|
"null"
|
|
14368
14989
|
],
|
|
14369
|
-
format: "uuid"
|
|
14990
|
+
format: "uuid",
|
|
14991
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
14370
14992
|
},
|
|
14371
14993
|
created_at: {
|
|
14372
14994
|
type: "string",
|
|
14373
|
-
format: "date-time"
|
|
14995
|
+
format: "date-time",
|
|
14996
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14374
14997
|
},
|
|
14375
14998
|
completed_at: {
|
|
14376
14999
|
type: [
|
|
14377
15000
|
"string",
|
|
14378
15001
|
"null"
|
|
14379
15002
|
],
|
|
14380
|
-
format: "date-time"
|
|
15003
|
+
format: "date-time",
|
|
15004
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14381
15005
|
},
|
|
14382
15006
|
links: {
|
|
14383
15007
|
type: "object",
|
|
@@ -14415,21 +15039,24 @@ var openapi_default = {
|
|
|
14415
15039
|
properties: {
|
|
14416
15040
|
id: {
|
|
14417
15041
|
type: "string",
|
|
14418
|
-
format: "uuid"
|
|
15042
|
+
format: "uuid",
|
|
15043
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
14419
15044
|
},
|
|
14420
15045
|
document_id: {
|
|
14421
15046
|
type: [
|
|
14422
15047
|
"string",
|
|
14423
15048
|
"null"
|
|
14424
15049
|
],
|
|
14425
|
-
format: "uuid"
|
|
15050
|
+
format: "uuid",
|
|
15051
|
+
example: "f0e1d2c3-b4a5-9687-8765-432109876543"
|
|
14426
15052
|
},
|
|
14427
15053
|
ground_truth_entry_id: {
|
|
14428
15054
|
type: [
|
|
14429
15055
|
"string",
|
|
14430
15056
|
"null"
|
|
14431
15057
|
],
|
|
14432
|
-
format: "uuid"
|
|
15058
|
+
format: "uuid",
|
|
15059
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
14433
15060
|
},
|
|
14434
15061
|
accuracy: {
|
|
14435
15062
|
type: [
|
|
@@ -14447,7 +15074,8 @@ var openapi_default = {
|
|
|
14447
15074
|
},
|
|
14448
15075
|
created_at: {
|
|
14449
15076
|
type: "string",
|
|
14450
|
-
format: "date-time"
|
|
15077
|
+
format: "date-time",
|
|
15078
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14451
15079
|
}
|
|
14452
15080
|
}
|
|
14453
15081
|
},
|
|
@@ -14467,10 +15095,12 @@ var openapi_default = {
|
|
|
14467
15095
|
properties: {
|
|
14468
15096
|
id: {
|
|
14469
15097
|
type: "string",
|
|
14470
|
-
format: "uuid"
|
|
15098
|
+
format: "uuid",
|
|
15099
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
14471
15100
|
},
|
|
14472
15101
|
status: {
|
|
14473
15102
|
type: "string",
|
|
15103
|
+
example: "completed",
|
|
14474
15104
|
enum: [
|
|
14475
15105
|
"accumulating",
|
|
14476
15106
|
"submitted",
|
|
@@ -14482,6 +15112,7 @@ var openapi_default = {
|
|
|
14482
15112
|
},
|
|
14483
15113
|
provider: {
|
|
14484
15114
|
type: "string",
|
|
15115
|
+
example: "anthropic",
|
|
14485
15116
|
enum: [
|
|
14486
15117
|
"anthropic",
|
|
14487
15118
|
"bedrock"
|
|
@@ -14504,14 +15135,16 @@ var openapi_default = {
|
|
|
14504
15135
|
"string",
|
|
14505
15136
|
"null"
|
|
14506
15137
|
],
|
|
14507
|
-
format: "date-time"
|
|
15138
|
+
format: "date-time",
|
|
15139
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14508
15140
|
},
|
|
14509
15141
|
completed_at: {
|
|
14510
15142
|
type: [
|
|
14511
15143
|
"string",
|
|
14512
15144
|
"null"
|
|
14513
15145
|
],
|
|
14514
|
-
format: "date-time"
|
|
15146
|
+
format: "date-time",
|
|
15147
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14515
15148
|
},
|
|
14516
15149
|
error_message: {
|
|
14517
15150
|
type: [
|
|
@@ -14521,11 +15154,13 @@ var openapi_default = {
|
|
|
14521
15154
|
},
|
|
14522
15155
|
created_at: {
|
|
14523
15156
|
type: "string",
|
|
14524
|
-
format: "date-time"
|
|
15157
|
+
format: "date-time",
|
|
15158
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14525
15159
|
},
|
|
14526
15160
|
updated_at: {
|
|
14527
15161
|
type: "string",
|
|
14528
|
-
format: "date-time"
|
|
15162
|
+
format: "date-time",
|
|
15163
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14529
15164
|
},
|
|
14530
15165
|
links: {
|
|
14531
15166
|
type: "object",
|
|
@@ -14558,11 +15193,13 @@ var openapi_default = {
|
|
|
14558
15193
|
properties: {
|
|
14559
15194
|
id: {
|
|
14560
15195
|
type: "string",
|
|
14561
|
-
format: "uuid"
|
|
15196
|
+
format: "uuid",
|
|
15197
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
14562
15198
|
},
|
|
14563
15199
|
document_id: {
|
|
14564
15200
|
type: "string",
|
|
14565
|
-
format: "uuid"
|
|
15201
|
+
format: "uuid",
|
|
15202
|
+
example: "f0e1d2c3-b4a5-9687-8765-432109876543"
|
|
14566
15203
|
},
|
|
14567
15204
|
document_filename: {
|
|
14568
15205
|
type: [
|
|
@@ -14577,7 +15214,8 @@ var openapi_default = {
|
|
|
14577
15214
|
]
|
|
14578
15215
|
},
|
|
14579
15216
|
status: {
|
|
14580
|
-
type: "string"
|
|
15217
|
+
type: "string",
|
|
15218
|
+
example: "completed"
|
|
14581
15219
|
},
|
|
14582
15220
|
error_message: {
|
|
14583
15221
|
type: [
|
|
@@ -14587,14 +15225,16 @@ var openapi_default = {
|
|
|
14587
15225
|
},
|
|
14588
15226
|
created_at: {
|
|
14589
15227
|
type: "string",
|
|
14590
|
-
format: "date-time"
|
|
15228
|
+
format: "date-time",
|
|
15229
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14591
15230
|
},
|
|
14592
15231
|
processed_at: {
|
|
14593
15232
|
type: [
|
|
14594
15233
|
"string",
|
|
14595
15234
|
"null"
|
|
14596
15235
|
],
|
|
14597
|
-
format: "date-time"
|
|
15236
|
+
format: "date-time",
|
|
15237
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14598
15238
|
}
|
|
14599
15239
|
}
|
|
14600
15240
|
}
|
|
@@ -14619,6 +15259,7 @@ var openapi_default = {
|
|
|
14619
15259
|
},
|
|
14620
15260
|
case_key: {
|
|
14621
15261
|
type: "string",
|
|
15262
|
+
example: "7a3f2b1c",
|
|
14622
15263
|
pattern: "^[a-fA-F0-9]{8,64}$"
|
|
14623
15264
|
},
|
|
14624
15265
|
label: {
|
|
@@ -14635,7 +15276,8 @@ var openapi_default = {
|
|
|
14635
15276
|
"string",
|
|
14636
15277
|
"null"
|
|
14637
15278
|
],
|
|
14638
|
-
format: "date-time"
|
|
15279
|
+
format: "date-time",
|
|
15280
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14639
15281
|
},
|
|
14640
15282
|
links: {
|
|
14641
15283
|
type: "object",
|
|
@@ -14661,7 +15303,8 @@ var openapi_default = {
|
|
|
14661
15303
|
type: "string"
|
|
14662
15304
|
},
|
|
14663
15305
|
case_key: {
|
|
14664
|
-
type: "string"
|
|
15306
|
+
type: "string",
|
|
15307
|
+
example: "7a3f2b1c"
|
|
14665
15308
|
},
|
|
14666
15309
|
label: {
|
|
14667
15310
|
type: [
|
|
@@ -14682,10 +15325,12 @@ var openapi_default = {
|
|
|
14682
15325
|
properties: {
|
|
14683
15326
|
id: {
|
|
14684
15327
|
type: "string",
|
|
14685
|
-
format: "uuid"
|
|
15328
|
+
format: "uuid",
|
|
15329
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
14686
15330
|
},
|
|
14687
15331
|
filename: {
|
|
14688
|
-
type: "string"
|
|
15332
|
+
type: "string",
|
|
15333
|
+
example: "invoice-042.pdf"
|
|
14689
15334
|
},
|
|
14690
15335
|
document_type: {
|
|
14691
15336
|
type: [
|
|
@@ -14698,7 +15343,8 @@ var openapi_default = {
|
|
|
14698
15343
|
"string",
|
|
14699
15344
|
"null"
|
|
14700
15345
|
],
|
|
14701
|
-
format: "date-time"
|
|
15346
|
+
format: "date-time",
|
|
15347
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14702
15348
|
}
|
|
14703
15349
|
}
|
|
14704
15350
|
}
|
|
@@ -14711,7 +15357,8 @@ var openapi_default = {
|
|
|
14711
15357
|
"string",
|
|
14712
15358
|
"null"
|
|
14713
15359
|
],
|
|
14714
|
-
format: "date-time"
|
|
15360
|
+
format: "date-time",
|
|
15361
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14715
15362
|
},
|
|
14716
15363
|
links: {
|
|
14717
15364
|
type: "object",
|
|
@@ -14737,7 +15384,8 @@ var openapi_default = {
|
|
|
14737
15384
|
properties: {
|
|
14738
15385
|
id: {
|
|
14739
15386
|
type: "string",
|
|
14740
|
-
format: "uuid"
|
|
15387
|
+
format: "uuid",
|
|
15388
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
14741
15389
|
},
|
|
14742
15390
|
name: {
|
|
14743
15391
|
type: "string"
|
|
@@ -14781,10 +15429,12 @@ var openapi_default = {
|
|
|
14781
15429
|
properties: {
|
|
14782
15430
|
id: {
|
|
14783
15431
|
type: "string",
|
|
14784
|
-
format: "uuid"
|
|
15432
|
+
format: "uuid",
|
|
15433
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
14785
15434
|
},
|
|
14786
15435
|
canonical_name: {
|
|
14787
|
-
type: "string"
|
|
15436
|
+
type: "string",
|
|
15437
|
+
example: "invoice_number"
|
|
14788
15438
|
},
|
|
14789
15439
|
display_name: {
|
|
14790
15440
|
type: [
|
|
@@ -14793,7 +15443,8 @@ var openapi_default = {
|
|
|
14793
15443
|
]
|
|
14794
15444
|
},
|
|
14795
15445
|
data_type: {
|
|
14796
|
-
type: "string"
|
|
15446
|
+
type: "string",
|
|
15447
|
+
example: "string"
|
|
14797
15448
|
},
|
|
14798
15449
|
tier: {
|
|
14799
15450
|
type: "integer"
|
|
@@ -14815,11 +15466,13 @@ var openapi_default = {
|
|
|
14815
15466
|
},
|
|
14816
15467
|
created_at: {
|
|
14817
15468
|
type: "string",
|
|
14818
|
-
format: "date-time"
|
|
15469
|
+
format: "date-time",
|
|
15470
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14819
15471
|
},
|
|
14820
15472
|
updated_at: {
|
|
14821
15473
|
type: "string",
|
|
14822
|
-
format: "date-time"
|
|
15474
|
+
format: "date-time",
|
|
15475
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14823
15476
|
},
|
|
14824
15477
|
links: {
|
|
14825
15478
|
type: "object",
|
|
@@ -14850,11 +15503,13 @@ var openapi_default = {
|
|
|
14850
15503
|
properties: {
|
|
14851
15504
|
id: {
|
|
14852
15505
|
type: "string",
|
|
14853
|
-
format: "uuid"
|
|
15506
|
+
format: "uuid",
|
|
15507
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
14854
15508
|
},
|
|
14855
15509
|
document_id: {
|
|
14856
15510
|
type: "string",
|
|
14857
|
-
format: "uuid"
|
|
15511
|
+
format: "uuid",
|
|
15512
|
+
example: "f0e1d2c3-b4a5-9687-8765-432109876543"
|
|
14858
15513
|
},
|
|
14859
15514
|
document_filename: {
|
|
14860
15515
|
type: [
|
|
@@ -14873,7 +15528,8 @@ var openapi_default = {
|
|
|
14873
15528
|
},
|
|
14874
15529
|
created_at: {
|
|
14875
15530
|
type: "string",
|
|
14876
|
-
format: "date-time"
|
|
15531
|
+
format: "date-time",
|
|
15532
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14877
15533
|
}
|
|
14878
15534
|
}
|
|
14879
15535
|
}
|
|
@@ -14897,10 +15553,12 @@ var openapi_default = {
|
|
|
14897
15553
|
properties: {
|
|
14898
15554
|
id: {
|
|
14899
15555
|
type: "string",
|
|
14900
|
-
format: "uuid"
|
|
15556
|
+
format: "uuid",
|
|
15557
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
14901
15558
|
},
|
|
14902
15559
|
canonical_name: {
|
|
14903
|
-
type: "string"
|
|
15560
|
+
type: "string",
|
|
15561
|
+
example: "invoice_number"
|
|
14904
15562
|
},
|
|
14905
15563
|
display_name: {
|
|
14906
15564
|
type: [
|
|
@@ -14909,7 +15567,8 @@ var openapi_default = {
|
|
|
14909
15567
|
]
|
|
14910
15568
|
},
|
|
14911
15569
|
data_type: {
|
|
14912
|
-
type: "string"
|
|
15570
|
+
type: "string",
|
|
15571
|
+
example: "string"
|
|
14913
15572
|
},
|
|
14914
15573
|
tier: {
|
|
14915
15574
|
type: "integer"
|
|
@@ -14956,7 +15615,8 @@ var openapi_default = {
|
|
|
14956
15615
|
properties: {
|
|
14957
15616
|
id: {
|
|
14958
15617
|
type: "string",
|
|
14959
|
-
format: "uuid"
|
|
15618
|
+
format: "uuid",
|
|
15619
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
14960
15620
|
},
|
|
14961
15621
|
name: {
|
|
14962
15622
|
type: "string"
|
|
@@ -14973,7 +15633,8 @@ var openapi_default = {
|
|
|
14973
15633
|
},
|
|
14974
15634
|
created_at: {
|
|
14975
15635
|
type: "string",
|
|
14976
|
-
format: "date-time"
|
|
15636
|
+
format: "date-time",
|
|
15637
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14977
15638
|
},
|
|
14978
15639
|
links: {
|
|
14979
15640
|
type: "object",
|
|
@@ -15006,11 +15667,13 @@ var openapi_default = {
|
|
|
15006
15667
|
properties: {
|
|
15007
15668
|
from: {
|
|
15008
15669
|
type: "string",
|
|
15009
|
-
format: "date-time"
|
|
15670
|
+
format: "date-time",
|
|
15671
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
15010
15672
|
},
|
|
15011
15673
|
to: {
|
|
15012
15674
|
type: "string",
|
|
15013
|
-
format: "date-time"
|
|
15675
|
+
format: "date-time",
|
|
15676
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
15014
15677
|
}
|
|
15015
15678
|
}
|
|
15016
15679
|
},
|
|
@@ -15084,7 +15747,8 @@ var openapi_default = {
|
|
|
15084
15747
|
properties: {
|
|
15085
15748
|
document_id: {
|
|
15086
15749
|
type: "string",
|
|
15087
|
-
format: "uuid"
|
|
15750
|
+
format: "uuid",
|
|
15751
|
+
example: "f0e1d2c3-b4a5-9687-8765-432109876543"
|
|
15088
15752
|
},
|
|
15089
15753
|
totals: {
|
|
15090
15754
|
type: "object",
|
|
@@ -15150,7 +15814,8 @@ var openapi_default = {
|
|
|
15150
15814
|
},
|
|
15151
15815
|
created_at: {
|
|
15152
15816
|
type: "string",
|
|
15153
|
-
format: "date-time"
|
|
15817
|
+
format: "date-time",
|
|
15818
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
15154
15819
|
}
|
|
15155
15820
|
}
|
|
15156
15821
|
}
|
|
@@ -15179,14 +15844,17 @@ var openapi_default = {
|
|
|
15179
15844
|
properties: {
|
|
15180
15845
|
id: {
|
|
15181
15846
|
type: "string",
|
|
15182
|
-
format: "uuid"
|
|
15847
|
+
format: "uuid",
|
|
15848
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
15183
15849
|
},
|
|
15184
15850
|
source_run_id: {
|
|
15185
15851
|
type: "string",
|
|
15186
|
-
format: "uuid"
|
|
15852
|
+
format: "uuid",
|
|
15853
|
+
example: "f2a3b4c5-d6e7-8901-fabc-012345678901"
|
|
15187
15854
|
},
|
|
15188
15855
|
status: {
|
|
15189
15856
|
type: "string",
|
|
15857
|
+
example: "completed",
|
|
15190
15858
|
enum: [
|
|
15191
15859
|
"pending",
|
|
15192
15860
|
"running",
|
|
@@ -15202,14 +15870,16 @@ var openapi_default = {
|
|
|
15202
15870
|
},
|
|
15203
15871
|
created_at: {
|
|
15204
15872
|
type: "string",
|
|
15205
|
-
format: "date-time"
|
|
15873
|
+
format: "date-time",
|
|
15874
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
15206
15875
|
},
|
|
15207
15876
|
completed_at: {
|
|
15208
15877
|
type: [
|
|
15209
15878
|
"string",
|
|
15210
15879
|
"null"
|
|
15211
15880
|
],
|
|
15212
|
-
format: "date-time"
|
|
15881
|
+
format: "date-time",
|
|
15882
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
15213
15883
|
},
|
|
15214
15884
|
links: {
|
|
15215
15885
|
type: "object",
|
|
@@ -15232,10 +15902,12 @@ var openapi_default = {
|
|
|
15232
15902
|
],
|
|
15233
15903
|
properties: {
|
|
15234
15904
|
field_name: {
|
|
15235
|
-
type: "string"
|
|
15905
|
+
type: "string",
|
|
15906
|
+
example: "invoice_number"
|
|
15236
15907
|
},
|
|
15237
15908
|
category: {
|
|
15238
15909
|
type: "string",
|
|
15910
|
+
example: "identity",
|
|
15239
15911
|
enum: [
|
|
15240
15912
|
"identity",
|
|
15241
15913
|
"transaction",
|
|
@@ -15267,7 +15939,8 @@ var openapi_default = {
|
|
|
15267
15939
|
properties: {
|
|
15268
15940
|
id: {
|
|
15269
15941
|
type: "string",
|
|
15270
|
-
format: "uuid"
|
|
15942
|
+
format: "uuid",
|
|
15943
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
15271
15944
|
},
|
|
15272
15945
|
name: {
|
|
15273
15946
|
type: "string"
|
|
@@ -15286,11 +15959,13 @@ var openapi_default = {
|
|
|
15286
15959
|
},
|
|
15287
15960
|
created_at: {
|
|
15288
15961
|
type: "string",
|
|
15289
|
-
format: "date-time"
|
|
15962
|
+
format: "date-time",
|
|
15963
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
15290
15964
|
},
|
|
15291
15965
|
updated_at: {
|
|
15292
15966
|
type: "string",
|
|
15293
|
-
format: "date-time"
|
|
15967
|
+
format: "date-time",
|
|
15968
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
15294
15969
|
},
|
|
15295
15970
|
links: {
|
|
15296
15971
|
type: "object",
|
|
@@ -15316,11 +15991,13 @@ var openapi_default = {
|
|
|
15316
15991
|
properties: {
|
|
15317
15992
|
id: {
|
|
15318
15993
|
type: "string",
|
|
15319
|
-
format: "uuid"
|
|
15994
|
+
format: "uuid",
|
|
15995
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
15320
15996
|
},
|
|
15321
15997
|
class_id: {
|
|
15322
15998
|
type: "string",
|
|
15323
|
-
format: "uuid"
|
|
15999
|
+
format: "uuid",
|
|
16000
|
+
example: "a7b8c9d0-e1f2-3456-abcd-567890123456"
|
|
15324
16001
|
},
|
|
15325
16002
|
from_version: {
|
|
15326
16003
|
type: [
|
|
@@ -15336,6 +16013,7 @@ var openapi_default = {
|
|
|
15336
16013
|
},
|
|
15337
16014
|
status: {
|
|
15338
16015
|
type: "string",
|
|
16016
|
+
example: "completed",
|
|
15339
16017
|
enum: [
|
|
15340
16018
|
"pending",
|
|
15341
16019
|
"approved",
|
|
@@ -15352,14 +16030,16 @@ var openapi_default = {
|
|
|
15352
16030
|
},
|
|
15353
16031
|
created_at: {
|
|
15354
16032
|
type: "string",
|
|
15355
|
-
format: "date-time"
|
|
16033
|
+
format: "date-time",
|
|
16034
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
15356
16035
|
},
|
|
15357
16036
|
decided_at: {
|
|
15358
16037
|
type: [
|
|
15359
16038
|
"string",
|
|
15360
16039
|
"null"
|
|
15361
16040
|
],
|
|
15362
|
-
format: "date-time"
|
|
16041
|
+
format: "date-time",
|
|
16042
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
15363
16043
|
}
|
|
15364
16044
|
}
|
|
15365
16045
|
},
|
|
@@ -15374,7 +16054,8 @@ var openapi_default = {
|
|
|
15374
16054
|
properties: {
|
|
15375
16055
|
id: {
|
|
15376
16056
|
type: "string",
|
|
15377
|
-
format: "uuid"
|
|
16057
|
+
format: "uuid",
|
|
16058
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
15378
16059
|
},
|
|
15379
16060
|
name: {
|
|
15380
16061
|
type: "string"
|
|
@@ -15398,11 +16079,13 @@ var openapi_default = {
|
|
|
15398
16079
|
},
|
|
15399
16080
|
created_at: {
|
|
15400
16081
|
type: "string",
|
|
15401
|
-
format: "date-time"
|
|
16082
|
+
format: "date-time",
|
|
16083
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
15402
16084
|
},
|
|
15403
16085
|
updated_at: {
|
|
15404
16086
|
type: "string",
|
|
15405
|
-
format: "date-time"
|
|
16087
|
+
format: "date-time",
|
|
16088
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
15406
16089
|
}
|
|
15407
16090
|
}
|
|
15408
16091
|
},
|
|
@@ -15444,7 +16127,8 @@ var openapi_default = {
|
|
|
15444
16127
|
properties: {
|
|
15445
16128
|
id: {
|
|
15446
16129
|
type: "string",
|
|
15447
|
-
format: "uuid"
|
|
16130
|
+
format: "uuid",
|
|
16131
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
15448
16132
|
},
|
|
15449
16133
|
name: {
|
|
15450
16134
|
type: "string"
|
|
@@ -15460,7 +16144,8 @@ var openapi_default = {
|
|
|
15460
16144
|
"string",
|
|
15461
16145
|
"null"
|
|
15462
16146
|
],
|
|
15463
|
-
format: "uuid"
|
|
16147
|
+
format: "uuid",
|
|
16148
|
+
example: "b2c3d4e5-f6a7-8901-bcde-f12345678901"
|
|
15464
16149
|
},
|
|
15465
16150
|
rules: {
|
|
15466
16151
|
type: "array",
|
|
@@ -15469,7 +16154,8 @@ var openapi_default = {
|
|
|
15469
16154
|
properties: {
|
|
15470
16155
|
id: {
|
|
15471
16156
|
type: "string",
|
|
15472
|
-
format: "uuid"
|
|
16157
|
+
format: "uuid",
|
|
16158
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
15473
16159
|
},
|
|
15474
16160
|
type: {
|
|
15475
16161
|
type: "string"
|
|
@@ -15483,11 +16169,13 @@ var openapi_default = {
|
|
|
15483
16169
|
},
|
|
15484
16170
|
created_at: {
|
|
15485
16171
|
type: "string",
|
|
15486
|
-
format: "date-time"
|
|
16172
|
+
format: "date-time",
|
|
16173
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
15487
16174
|
},
|
|
15488
16175
|
updated_at: {
|
|
15489
16176
|
type: "string",
|
|
15490
|
-
format: "date-time"
|
|
16177
|
+
format: "date-time",
|
|
16178
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
15491
16179
|
}
|
|
15492
16180
|
}
|
|
15493
16181
|
},
|
|
@@ -15505,7 +16193,8 @@ var openapi_default = {
|
|
|
15505
16193
|
},
|
|
15506
16194
|
schema_id: {
|
|
15507
16195
|
type: "string",
|
|
15508
|
-
format: "uuid"
|
|
16196
|
+
format: "uuid",
|
|
16197
|
+
example: "b2c3d4e5-f6a7-8901-bcde-f12345678901"
|
|
15509
16198
|
}
|
|
15510
16199
|
}
|
|
15511
16200
|
},
|
|
@@ -15519,7 +16208,8 @@ var openapi_default = {
|
|
|
15519
16208
|
properties: {
|
|
15520
16209
|
id: {
|
|
15521
16210
|
type: "string",
|
|
15522
|
-
format: "uuid"
|
|
16211
|
+
format: "uuid",
|
|
16212
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
15523
16213
|
},
|
|
15524
16214
|
name: {
|
|
15525
16215
|
type: "string"
|
|
@@ -15538,7 +16228,8 @@ var openapi_default = {
|
|
|
15538
16228
|
},
|
|
15539
16229
|
created_at: {
|
|
15540
16230
|
type: "string",
|
|
15541
|
-
format: "date-time"
|
|
16231
|
+
format: "date-time",
|
|
16232
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
15542
16233
|
},
|
|
15543
16234
|
links: {
|
|
15544
16235
|
type: "object",
|
|
@@ -15560,21 +16251,25 @@ var openapi_default = {
|
|
|
15560
16251
|
properties: {
|
|
15561
16252
|
id: {
|
|
15562
16253
|
type: "string",
|
|
15563
|
-
format: "uuid"
|
|
16254
|
+
format: "uuid",
|
|
16255
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
15564
16256
|
},
|
|
15565
16257
|
golden_sample_id: {
|
|
15566
16258
|
type: "string",
|
|
15567
|
-
format: "uuid"
|
|
16259
|
+
format: "uuid",
|
|
16260
|
+
example: "e5f6a7b8-c9d0-1234-efab-345678901234"
|
|
15568
16261
|
},
|
|
15569
16262
|
schema_id: {
|
|
15570
16263
|
type: [
|
|
15571
16264
|
"string",
|
|
15572
16265
|
"null"
|
|
15573
16266
|
],
|
|
15574
|
-
format: "uuid"
|
|
16267
|
+
format: "uuid",
|
|
16268
|
+
example: "b2c3d4e5-f6a7-8901-bcde-f12345678901"
|
|
15575
16269
|
},
|
|
15576
16270
|
status: {
|
|
15577
16271
|
type: "string",
|
|
16272
|
+
example: "completed",
|
|
15578
16273
|
enum: [
|
|
15579
16274
|
"pending",
|
|
15580
16275
|
"running",
|
|
@@ -15597,14 +16292,16 @@ var openapi_default = {
|
|
|
15597
16292
|
},
|
|
15598
16293
|
created_at: {
|
|
15599
16294
|
type: "string",
|
|
15600
|
-
format: "date-time"
|
|
16295
|
+
format: "date-time",
|
|
16296
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
15601
16297
|
},
|
|
15602
16298
|
completed_at: {
|
|
15603
16299
|
type: [
|
|
15604
16300
|
"string",
|
|
15605
16301
|
"null"
|
|
15606
16302
|
],
|
|
15607
|
-
format: "date-time"
|
|
16303
|
+
format: "date-time",
|
|
16304
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
15608
16305
|
},
|
|
15609
16306
|
links: {
|
|
15610
16307
|
type: "object",
|