@talonic/docs 0.10.0 → 0.11.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 +745 -253
- package/dist/tailwind-preset.d.cts +45 -0
- package/dist/tailwind-preset.d.ts +45 -0
- package/openapi.json +745 -253
- 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',
|
|
8
8
|
contact: {
|
|
9
9
|
name: "Talonic Support",
|
|
10
10
|
email: "support@talonic.ai",
|
|
@@ -172,6 +172,7 @@ var openapi_default = {
|
|
|
172
172
|
document_id: {
|
|
173
173
|
type: "string",
|
|
174
174
|
format: "uuid",
|
|
175
|
+
example: "f0e1d2c3-b4a5-9687-8765-432109876543",
|
|
175
176
|
description: "ID of an already-uploaded document to re-extract."
|
|
176
177
|
},
|
|
177
178
|
schema: {
|
|
@@ -181,6 +182,7 @@ var openapi_default = {
|
|
|
181
182
|
schema_id: {
|
|
182
183
|
type: "string",
|
|
183
184
|
format: "uuid",
|
|
185
|
+
example: "b2c3d4e5-f6a7-8901-bcde-f12345678901",
|
|
184
186
|
description: "ID of a saved schema to use for extraction."
|
|
185
187
|
},
|
|
186
188
|
instructions: {
|
|
@@ -233,6 +235,77 @@ var openapi_default = {
|
|
|
233
235
|
"application/json": {
|
|
234
236
|
schema: {
|
|
235
237
|
$ref: "#/components/schemas/ExtractSyncResponse"
|
|
238
|
+
},
|
|
239
|
+
example: {
|
|
240
|
+
extraction_id: "d1a2b3c4-5678-9abc-def0-1234567890ab",
|
|
241
|
+
request_id: "req_x7y8z9a0b1c2d3e4",
|
|
242
|
+
status: "complete",
|
|
243
|
+
document: {
|
|
244
|
+
id: "f0e1d2c3-b4a5-9687-8765-432109876543",
|
|
245
|
+
filename: "invoice-042.pdf",
|
|
246
|
+
pages: 3,
|
|
247
|
+
size_bytes: 245760,
|
|
248
|
+
type_detected: "Invoice",
|
|
249
|
+
language_detected: "en"
|
|
250
|
+
},
|
|
251
|
+
data: {
|
|
252
|
+
invoice_number: "INV-2024-0042",
|
|
253
|
+
invoice_date: "2024-03-15",
|
|
254
|
+
vendor_name: "Acme Corp",
|
|
255
|
+
total_amount: 1250,
|
|
256
|
+
currency: "EUR",
|
|
257
|
+
line_items: [
|
|
258
|
+
{
|
|
259
|
+
description: "Consulting services",
|
|
260
|
+
quantity: 10,
|
|
261
|
+
unit_price: 100,
|
|
262
|
+
amount: 1e3
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
description: "Expenses",
|
|
266
|
+
quantity: 1,
|
|
267
|
+
unit_price: 250,
|
|
268
|
+
amount: 250
|
|
269
|
+
}
|
|
270
|
+
]
|
|
271
|
+
},
|
|
272
|
+
schema: {
|
|
273
|
+
source: "inferred",
|
|
274
|
+
id: null,
|
|
275
|
+
definition: {
|
|
276
|
+
type: "object",
|
|
277
|
+
properties: {
|
|
278
|
+
invoice_number: {
|
|
279
|
+
type: "string"
|
|
280
|
+
},
|
|
281
|
+
total_amount: {
|
|
282
|
+
type: "number"
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
},
|
|
286
|
+
save_url: "https://app.talonic.com/schemas/save?from=d1a2b3c4-5678-9abc-def0-1234567890ab"
|
|
287
|
+
},
|
|
288
|
+
confidence: {
|
|
289
|
+
overall: 0.94,
|
|
290
|
+
fields: {
|
|
291
|
+
invoice_number: 0.99,
|
|
292
|
+
invoice_date: 0.97,
|
|
293
|
+
vendor_name: 0.88,
|
|
294
|
+
total_amount: 0.98,
|
|
295
|
+
currency: 0.95,
|
|
296
|
+
line_items: 0.85
|
|
297
|
+
}
|
|
298
|
+
},
|
|
299
|
+
processing: {
|
|
300
|
+
duration_ms: 3420,
|
|
301
|
+
pages_processed: 3,
|
|
302
|
+
region: "eu-west"
|
|
303
|
+
},
|
|
304
|
+
links: {
|
|
305
|
+
self: "/v1/extractions/d1a2b3c4-5678-9abc-def0-1234567890ab",
|
|
306
|
+
document: "/v1/documents/f0e1d2c3-b4a5-9687-8765-432109876543",
|
|
307
|
+
dashboard: "https://app.talonic.com/extractions/d1a2b3c4-5678-9abc-def0-1234567890ab"
|
|
308
|
+
}
|
|
236
309
|
}
|
|
237
310
|
}
|
|
238
311
|
}
|
|
@@ -322,7 +395,8 @@ var openapi_default = {
|
|
|
322
395
|
in: "query",
|
|
323
396
|
schema: {
|
|
324
397
|
type: "string",
|
|
325
|
-
format: "uuid"
|
|
398
|
+
format: "uuid",
|
|
399
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
326
400
|
},
|
|
327
401
|
description: "Filter by source connection ID."
|
|
328
402
|
},
|
|
@@ -408,6 +482,50 @@ var openapi_default = {
|
|
|
408
482
|
}
|
|
409
483
|
}
|
|
410
484
|
]
|
|
485
|
+
},
|
|
486
|
+
example: {
|
|
487
|
+
data: [
|
|
488
|
+
{
|
|
489
|
+
id: "f0e1d2c3-b4a5-9687-8765-432109876543",
|
|
490
|
+
filename: "contract-2024.pdf",
|
|
491
|
+
pages: 12,
|
|
492
|
+
size_bytes: 1048576,
|
|
493
|
+
mime_type: "application/pdf",
|
|
494
|
+
type_detected: "Service Contract",
|
|
495
|
+
language_detected: "en",
|
|
496
|
+
status: "completed",
|
|
497
|
+
source: {
|
|
498
|
+
id: "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
499
|
+
type: "api"
|
|
500
|
+
},
|
|
501
|
+
triage: {
|
|
502
|
+
sensitivity: "confidential",
|
|
503
|
+
department: "Legal",
|
|
504
|
+
jurisdiction: "EU",
|
|
505
|
+
pii_detected: true,
|
|
506
|
+
pii_categories: [
|
|
507
|
+
"name",
|
|
508
|
+
"address"
|
|
509
|
+
],
|
|
510
|
+
regulated_data: false,
|
|
511
|
+
confidentiality_marking: "internal"
|
|
512
|
+
},
|
|
513
|
+
extraction_count: 1,
|
|
514
|
+
latest_extraction_id: "d1a2b3c4-5678-9abc-def0-1234567890ab",
|
|
515
|
+
created_at: "2026-04-25T14:30:00.000Z",
|
|
516
|
+
links: {
|
|
517
|
+
self: "/v1/documents/f0e1d2c3-b4a5-9687-8765-432109876543",
|
|
518
|
+
extractions: "/v1/documents/f0e1d2c3-b4a5-9687-8765-432109876543/extractions",
|
|
519
|
+
dashboard: "https://app.talonic.com/documents/f0e1d2c3-b4a5-9687-8765-432109876543"
|
|
520
|
+
}
|
|
521
|
+
}
|
|
522
|
+
],
|
|
523
|
+
pagination: {
|
|
524
|
+
total: 142,
|
|
525
|
+
limit: 20,
|
|
526
|
+
has_more: true,
|
|
527
|
+
next_cursor: "ZDFhMmIzYzR8MjAyNi0wNC0yNVQxNDozMDowMC4wMDBa"
|
|
528
|
+
}
|
|
411
529
|
}
|
|
412
530
|
}
|
|
413
531
|
}
|
|
@@ -581,16 +699,19 @@ var openapi_default = {
|
|
|
581
699
|
properties: {
|
|
582
700
|
id: {
|
|
583
701
|
type: "string",
|
|
584
|
-
format: "uuid"
|
|
702
|
+
format: "uuid",
|
|
703
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
585
704
|
},
|
|
586
705
|
status: {
|
|
587
706
|
type: "string",
|
|
707
|
+
example: "completed",
|
|
588
708
|
enum: [
|
|
589
709
|
"processing"
|
|
590
710
|
]
|
|
591
711
|
},
|
|
592
712
|
message: {
|
|
593
|
-
type: "string"
|
|
713
|
+
type: "string",
|
|
714
|
+
example: "Re-extraction started."
|
|
594
715
|
},
|
|
595
716
|
links: {
|
|
596
717
|
type: "object",
|
|
@@ -651,10 +772,12 @@ var openapi_default = {
|
|
|
651
772
|
document_id: {
|
|
652
773
|
type: "string",
|
|
653
774
|
format: "uuid",
|
|
775
|
+
example: "f0e1d2c3-b4a5-9687-8765-432109876543",
|
|
654
776
|
description: "ID of the document the markdown was produced from."
|
|
655
777
|
},
|
|
656
778
|
markdown: {
|
|
657
779
|
type: "string",
|
|
780
|
+
example: "# Invoice INV-2024-0042\nVendor: Acme Corp...",
|
|
658
781
|
description: "Full OCR-converted markdown body."
|
|
659
782
|
}
|
|
660
783
|
}
|
|
@@ -696,7 +819,8 @@ var openapi_default = {
|
|
|
696
819
|
in: "query",
|
|
697
820
|
schema: {
|
|
698
821
|
type: "string",
|
|
699
|
-
format: "uuid"
|
|
822
|
+
format: "uuid",
|
|
823
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
700
824
|
},
|
|
701
825
|
description: "Filter by document ID."
|
|
702
826
|
},
|
|
@@ -850,8 +974,15 @@ var openapi_default = {
|
|
|
850
974
|
description: "Key-value pairs of extracted field names and values.",
|
|
851
975
|
example: {
|
|
852
976
|
invoice_number: "INV-2024-0042",
|
|
977
|
+
invoice_date: "2024-03-15",
|
|
978
|
+
vendor_name: "Acme Corp",
|
|
979
|
+
vendor_address: "123 Main St, Berlin, DE",
|
|
853
980
|
total_amount: 1250,
|
|
854
|
-
|
|
981
|
+
currency: "EUR",
|
|
982
|
+
tax_rate: 19,
|
|
983
|
+
tax_amount: 199.58,
|
|
984
|
+
payment_terms: "Net 30",
|
|
985
|
+
due_date: "2024-04-14"
|
|
855
986
|
}
|
|
856
987
|
}
|
|
857
988
|
},
|
|
@@ -1029,6 +1160,36 @@ var openapi_default = {
|
|
|
1029
1160
|
"application/json": {
|
|
1030
1161
|
schema: {
|
|
1031
1162
|
$ref: "#/components/schemas/SchemaCreateRequest"
|
|
1163
|
+
},
|
|
1164
|
+
example: {
|
|
1165
|
+
name: "Invoice Schema",
|
|
1166
|
+
description: "Standard invoice fields for AP processing.",
|
|
1167
|
+
definition: {
|
|
1168
|
+
properties: {
|
|
1169
|
+
invoice_number: {
|
|
1170
|
+
type: "string",
|
|
1171
|
+
title: "Invoice Number",
|
|
1172
|
+
description: "Unique identifier on the invoice."
|
|
1173
|
+
},
|
|
1174
|
+
vendor_name: {
|
|
1175
|
+
type: "string",
|
|
1176
|
+
title: "Vendor Name"
|
|
1177
|
+
},
|
|
1178
|
+
total_amount: {
|
|
1179
|
+
type: "number",
|
|
1180
|
+
title: "Total Amount",
|
|
1181
|
+
description: "Total invoice amount including tax."
|
|
1182
|
+
},
|
|
1183
|
+
invoice_date: {
|
|
1184
|
+
type: "string",
|
|
1185
|
+
title: "Invoice Date"
|
|
1186
|
+
}
|
|
1187
|
+
},
|
|
1188
|
+
required: [
|
|
1189
|
+
"invoice_number",
|
|
1190
|
+
"total_amount"
|
|
1191
|
+
]
|
|
1192
|
+
}
|
|
1032
1193
|
}
|
|
1033
1194
|
}
|
|
1034
1195
|
}
|
|
@@ -1040,6 +1201,47 @@ var openapi_default = {
|
|
|
1040
1201
|
"application/json": {
|
|
1041
1202
|
schema: {
|
|
1042
1203
|
$ref: "#/components/schemas/SchemaResponse"
|
|
1204
|
+
},
|
|
1205
|
+
example: {
|
|
1206
|
+
id: "b2c3d4e5-f6a7-8901-bcde-f12345678901",
|
|
1207
|
+
name: "Invoice Schema",
|
|
1208
|
+
description: "Standard invoice fields for AP processing.",
|
|
1209
|
+
definition: {
|
|
1210
|
+
type: "object",
|
|
1211
|
+
properties: {
|
|
1212
|
+
invoice_number: {
|
|
1213
|
+
type: "string",
|
|
1214
|
+
title: "Invoice Number",
|
|
1215
|
+
description: "Unique identifier on the invoice."
|
|
1216
|
+
},
|
|
1217
|
+
vendor_name: {
|
|
1218
|
+
type: "string",
|
|
1219
|
+
title: "Vendor Name"
|
|
1220
|
+
},
|
|
1221
|
+
total_amount: {
|
|
1222
|
+
type: "number",
|
|
1223
|
+
title: "Total Amount",
|
|
1224
|
+
description: "Total invoice amount including tax."
|
|
1225
|
+
},
|
|
1226
|
+
invoice_date: {
|
|
1227
|
+
type: "string",
|
|
1228
|
+
title: "Invoice Date"
|
|
1229
|
+
}
|
|
1230
|
+
},
|
|
1231
|
+
required: [
|
|
1232
|
+
"invoice_number",
|
|
1233
|
+
"total_amount"
|
|
1234
|
+
]
|
|
1235
|
+
},
|
|
1236
|
+
field_count: 4,
|
|
1237
|
+
version: 1,
|
|
1238
|
+
created_at: "2026-04-25T14:30:00.000Z",
|
|
1239
|
+
updated_at: "2026-04-25T14:30:00.000Z",
|
|
1240
|
+
links: {
|
|
1241
|
+
self: "/v1/schemas/b2c3d4e5-f6a7-8901-bcde-f12345678901",
|
|
1242
|
+
extractions: "/v1/extractions?schema_id=b2c3d4e5-f6a7-8901-bcde-f12345678901",
|
|
1243
|
+
dashboard: "https://app.talonic.com/schemas/b2c3d4e5-f6a7-8901-bcde-f12345678901"
|
|
1244
|
+
}
|
|
1043
1245
|
}
|
|
1044
1246
|
}
|
|
1045
1247
|
}
|
|
@@ -1752,6 +1954,17 @@ var openapi_default = {
|
|
|
1752
1954
|
"application/json": {
|
|
1753
1955
|
schema: {
|
|
1754
1956
|
$ref: "#/components/schemas/IngestDocumentResponse"
|
|
1957
|
+
},
|
|
1958
|
+
example: {
|
|
1959
|
+
document_id: "f0e1d2c3-b4a5-9687-8765-432109876543",
|
|
1960
|
+
filename: "receipt-march.pdf",
|
|
1961
|
+
status: "queued",
|
|
1962
|
+
processing_mode: "realtime",
|
|
1963
|
+
source_id: "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
1964
|
+
links: {
|
|
1965
|
+
document: "/v1/documents/f0e1d2c3-b4a5-9687-8765-432109876543",
|
|
1966
|
+
source: "/v1/sources/a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
1967
|
+
}
|
|
1755
1968
|
}
|
|
1756
1969
|
}
|
|
1757
1970
|
}
|
|
@@ -2348,7 +2561,8 @@ var openapi_default = {
|
|
|
2348
2561
|
in: "query",
|
|
2349
2562
|
schema: {
|
|
2350
2563
|
type: "string",
|
|
2351
|
-
format: "uuid"
|
|
2564
|
+
format: "uuid",
|
|
2565
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
2352
2566
|
},
|
|
2353
2567
|
description: "Filter to runs that belong to a specific matching configuration."
|
|
2354
2568
|
}
|
|
@@ -4880,7 +5094,8 @@ var openapi_default = {
|
|
|
4880
5094
|
in: "query",
|
|
4881
5095
|
schema: {
|
|
4882
5096
|
type: "string",
|
|
4883
|
-
format: "uuid"
|
|
5097
|
+
format: "uuid",
|
|
5098
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
4884
5099
|
},
|
|
4885
5100
|
description: "Filter by cluster."
|
|
4886
5101
|
}
|
|
@@ -5026,10 +5241,12 @@ var openapi_default = {
|
|
|
5026
5241
|
properties: {
|
|
5027
5242
|
id: {
|
|
5028
5243
|
type: "string",
|
|
5029
|
-
format: "uuid"
|
|
5244
|
+
format: "uuid",
|
|
5245
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
5030
5246
|
},
|
|
5031
5247
|
canonical_name: {
|
|
5032
|
-
type: "string"
|
|
5248
|
+
type: "string",
|
|
5249
|
+
example: "invoice_number"
|
|
5033
5250
|
},
|
|
5034
5251
|
similarity: {
|
|
5035
5252
|
type: "number",
|
|
@@ -5050,6 +5267,7 @@ var openapi_default = {
|
|
|
5050
5267
|
},
|
|
5051
5268
|
message: {
|
|
5052
5269
|
type: "string",
|
|
5270
|
+
example: "Re-extraction started.",
|
|
5053
5271
|
description: "Present when the field has no embedding."
|
|
5054
5272
|
}
|
|
5055
5273
|
}
|
|
@@ -5413,6 +5631,7 @@ var openapi_default = {
|
|
|
5413
5631
|
source_run_id: {
|
|
5414
5632
|
type: "string",
|
|
5415
5633
|
format: "uuid",
|
|
5634
|
+
example: "f2a3b4c5-d6e7-8901-fabc-012345678901",
|
|
5416
5635
|
description: "ID of the source run to resolve against."
|
|
5417
5636
|
}
|
|
5418
5637
|
}
|
|
@@ -5667,7 +5886,8 @@ var openapi_default = {
|
|
|
5667
5886
|
type: "array",
|
|
5668
5887
|
items: {
|
|
5669
5888
|
type: "string",
|
|
5670
|
-
format: "uuid"
|
|
5889
|
+
format: "uuid",
|
|
5890
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
5671
5891
|
}
|
|
5672
5892
|
}
|
|
5673
5893
|
}
|
|
@@ -5843,10 +6063,12 @@ var openapi_default = {
|
|
|
5843
6063
|
type: "object",
|
|
5844
6064
|
properties: {
|
|
5845
6065
|
status: {
|
|
5846
|
-
type: "string"
|
|
6066
|
+
type: "string",
|
|
6067
|
+
example: "completed"
|
|
5847
6068
|
},
|
|
5848
6069
|
message: {
|
|
5849
|
-
type: "string"
|
|
6070
|
+
type: "string",
|
|
6071
|
+
example: "Re-extraction started."
|
|
5850
6072
|
}
|
|
5851
6073
|
}
|
|
5852
6074
|
}
|
|
@@ -5879,7 +6101,8 @@ var openapi_default = {
|
|
|
5879
6101
|
type: "object",
|
|
5880
6102
|
properties: {
|
|
5881
6103
|
status: {
|
|
5882
|
-
type: "string"
|
|
6104
|
+
type: "string",
|
|
6105
|
+
example: "completed"
|
|
5883
6106
|
},
|
|
5884
6107
|
processed: {
|
|
5885
6108
|
type: "integer"
|
|
@@ -5889,7 +6112,8 @@ var openapi_default = {
|
|
|
5889
6112
|
},
|
|
5890
6113
|
started_at: {
|
|
5891
6114
|
type: "string",
|
|
5892
|
-
format: "date-time"
|
|
6115
|
+
format: "date-time",
|
|
6116
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
5893
6117
|
}
|
|
5894
6118
|
}
|
|
5895
6119
|
}
|
|
@@ -5957,7 +6181,8 @@ var openapi_default = {
|
|
|
5957
6181
|
required: true,
|
|
5958
6182
|
schema: {
|
|
5959
6183
|
type: "string",
|
|
5960
|
-
format: "uuid"
|
|
6184
|
+
format: "uuid",
|
|
6185
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
5961
6186
|
},
|
|
5962
6187
|
description: "Job run ID."
|
|
5963
6188
|
}
|
|
@@ -6001,7 +6226,8 @@ var openapi_default = {
|
|
|
6001
6226
|
required: true,
|
|
6002
6227
|
schema: {
|
|
6003
6228
|
type: "string",
|
|
6004
|
-
format: "uuid"
|
|
6229
|
+
format: "uuid",
|
|
6230
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
6005
6231
|
},
|
|
6006
6232
|
description: "Job run ID."
|
|
6007
6233
|
}
|
|
@@ -6053,7 +6279,8 @@ var openapi_default = {
|
|
|
6053
6279
|
required: true,
|
|
6054
6280
|
schema: {
|
|
6055
6281
|
type: "string",
|
|
6056
|
-
format: "uuid"
|
|
6282
|
+
format: "uuid",
|
|
6283
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
6057
6284
|
},
|
|
6058
6285
|
description: "Job run ID."
|
|
6059
6286
|
},
|
|
@@ -6063,7 +6290,8 @@ var openapi_default = {
|
|
|
6063
6290
|
required: true,
|
|
6064
6291
|
schema: {
|
|
6065
6292
|
type: "string",
|
|
6066
|
-
format: "uuid"
|
|
6293
|
+
format: "uuid",
|
|
6294
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
6067
6295
|
},
|
|
6068
6296
|
description: "Document ID to compare."
|
|
6069
6297
|
},
|
|
@@ -6116,7 +6344,8 @@ var openapi_default = {
|
|
|
6116
6344
|
required: true,
|
|
6117
6345
|
schema: {
|
|
6118
6346
|
type: "string",
|
|
6119
|
-
format: "uuid"
|
|
6347
|
+
format: "uuid",
|
|
6348
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
6120
6349
|
},
|
|
6121
6350
|
description: "Job run ID."
|
|
6122
6351
|
}
|
|
@@ -6135,10 +6364,12 @@ var openapi_default = {
|
|
|
6135
6364
|
properties: {
|
|
6136
6365
|
document_id: {
|
|
6137
6366
|
type: "string",
|
|
6138
|
-
format: "uuid"
|
|
6367
|
+
format: "uuid",
|
|
6368
|
+
example: "f0e1d2c3-b4a5-9687-8765-432109876543"
|
|
6139
6369
|
},
|
|
6140
6370
|
field_name: {
|
|
6141
|
-
type: "string"
|
|
6371
|
+
type: "string",
|
|
6372
|
+
example: "invoice_number"
|
|
6142
6373
|
},
|
|
6143
6374
|
value: {
|
|
6144
6375
|
description: "The override value to apply."
|
|
@@ -6194,7 +6425,8 @@ var openapi_default = {
|
|
|
6194
6425
|
required: true,
|
|
6195
6426
|
schema: {
|
|
6196
6427
|
type: "string",
|
|
6197
|
-
format: "uuid"
|
|
6428
|
+
format: "uuid",
|
|
6429
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
6198
6430
|
},
|
|
6199
6431
|
description: "Job run ID."
|
|
6200
6432
|
}
|
|
@@ -6213,10 +6445,12 @@ var openapi_default = {
|
|
|
6213
6445
|
properties: {
|
|
6214
6446
|
document_id: {
|
|
6215
6447
|
type: "string",
|
|
6216
|
-
format: "uuid"
|
|
6448
|
+
format: "uuid",
|
|
6449
|
+
example: "f0e1d2c3-b4a5-9687-8765-432109876543"
|
|
6217
6450
|
},
|
|
6218
6451
|
field_name: {
|
|
6219
|
-
type: "string"
|
|
6452
|
+
type: "string",
|
|
6453
|
+
example: "invoice_number"
|
|
6220
6454
|
},
|
|
6221
6455
|
decision: {
|
|
6222
6456
|
type: "string",
|
|
@@ -6367,7 +6601,8 @@ var openapi_default = {
|
|
|
6367
6601
|
},
|
|
6368
6602
|
created_at: {
|
|
6369
6603
|
type: "string",
|
|
6370
|
-
format: "date-time"
|
|
6604
|
+
format: "date-time",
|
|
6605
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
6371
6606
|
}
|
|
6372
6607
|
}
|
|
6373
6608
|
}
|
|
@@ -6430,7 +6665,8 @@ var openapi_default = {
|
|
|
6430
6665
|
},
|
|
6431
6666
|
created_at: {
|
|
6432
6667
|
type: "string",
|
|
6433
|
-
format: "date-time"
|
|
6668
|
+
format: "date-time",
|
|
6669
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
6434
6670
|
}
|
|
6435
6671
|
}
|
|
6436
6672
|
}
|
|
@@ -6580,11 +6816,13 @@ var openapi_default = {
|
|
|
6580
6816
|
properties: {
|
|
6581
6817
|
source_class_id: {
|
|
6582
6818
|
type: "string",
|
|
6583
|
-
format: "uuid"
|
|
6819
|
+
format: "uuid",
|
|
6820
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
6584
6821
|
},
|
|
6585
6822
|
target_class_id: {
|
|
6586
6823
|
type: "string",
|
|
6587
|
-
format: "uuid"
|
|
6824
|
+
format: "uuid",
|
|
6825
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
6588
6826
|
},
|
|
6589
6827
|
relationship: {
|
|
6590
6828
|
type: "string"
|
|
@@ -6636,7 +6874,8 @@ var openapi_default = {
|
|
|
6636
6874
|
},
|
|
6637
6875
|
class_id: {
|
|
6638
6876
|
type: "string",
|
|
6639
|
-
format: "uuid"
|
|
6877
|
+
format: "uuid",
|
|
6878
|
+
example: "a7b8c9d0-e1f2-3456-abcd-567890123456"
|
|
6640
6879
|
},
|
|
6641
6880
|
class_name: {
|
|
6642
6881
|
type: "string"
|
|
@@ -7199,7 +7438,8 @@ var openapi_default = {
|
|
|
7199
7438
|
properties: {
|
|
7200
7439
|
rule_id: {
|
|
7201
7440
|
type: "string",
|
|
7202
|
-
format: "uuid"
|
|
7441
|
+
format: "uuid",
|
|
7442
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
7203
7443
|
}
|
|
7204
7444
|
}
|
|
7205
7445
|
}
|
|
@@ -7257,7 +7497,8 @@ var openapi_default = {
|
|
|
7257
7497
|
properties: {
|
|
7258
7498
|
check_id: {
|
|
7259
7499
|
type: "string",
|
|
7260
|
-
format: "uuid"
|
|
7500
|
+
format: "uuid",
|
|
7501
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
7261
7502
|
},
|
|
7262
7503
|
check_name: {
|
|
7263
7504
|
type: "string"
|
|
@@ -7365,10 +7606,12 @@ var openapi_default = {
|
|
|
7365
7606
|
properties: {
|
|
7366
7607
|
id: {
|
|
7367
7608
|
type: "string",
|
|
7368
|
-
format: "uuid"
|
|
7609
|
+
format: "uuid",
|
|
7610
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
7369
7611
|
},
|
|
7370
7612
|
status: {
|
|
7371
|
-
type: "string"
|
|
7613
|
+
type: "string",
|
|
7614
|
+
example: "completed"
|
|
7372
7615
|
}
|
|
7373
7616
|
}
|
|
7374
7617
|
}
|
|
@@ -7409,10 +7652,12 @@ var openapi_default = {
|
|
|
7409
7652
|
properties: {
|
|
7410
7653
|
id: {
|
|
7411
7654
|
type: "string",
|
|
7412
|
-
format: "uuid"
|
|
7655
|
+
format: "uuid",
|
|
7656
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
7413
7657
|
},
|
|
7414
7658
|
status: {
|
|
7415
|
-
type: "string"
|
|
7659
|
+
type: "string",
|
|
7660
|
+
example: "completed"
|
|
7416
7661
|
}
|
|
7417
7662
|
}
|
|
7418
7663
|
}
|
|
@@ -7446,7 +7691,8 @@ var openapi_default = {
|
|
|
7446
7691
|
required: true,
|
|
7447
7692
|
schema: {
|
|
7448
7693
|
type: "string",
|
|
7449
|
-
format: "uuid"
|
|
7694
|
+
format: "uuid",
|
|
7695
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
7450
7696
|
},
|
|
7451
7697
|
description: "Structuring run ID."
|
|
7452
7698
|
}
|
|
@@ -7840,11 +8086,13 @@ var openapi_default = {
|
|
|
7840
8086
|
golden_sample_id: {
|
|
7841
8087
|
type: "string",
|
|
7842
8088
|
format: "uuid",
|
|
8089
|
+
example: "e5f6a7b8-c9d0-1234-efab-345678901234",
|
|
7843
8090
|
description: "Golden sample dataset to validate against."
|
|
7844
8091
|
},
|
|
7845
8092
|
schema_id: {
|
|
7846
8093
|
type: "string",
|
|
7847
8094
|
format: "uuid",
|
|
8095
|
+
example: "b2c3d4e5-f6a7-8901-bcde-f12345678901",
|
|
7848
8096
|
description: "Optional schema to scope the validation."
|
|
7849
8097
|
}
|
|
7850
8098
|
}
|
|
@@ -8024,11 +8272,13 @@ var openapi_default = {
|
|
|
8024
8272
|
format: "float"
|
|
8025
8273
|
},
|
|
8026
8274
|
currency: {
|
|
8027
|
-
type: "string"
|
|
8275
|
+
type: "string",
|
|
8276
|
+
example: "USD"
|
|
8028
8277
|
},
|
|
8029
8278
|
updated_at: {
|
|
8030
8279
|
type: "string",
|
|
8031
|
-
format: "date-time"
|
|
8280
|
+
format: "date-time",
|
|
8281
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
8032
8282
|
}
|
|
8033
8283
|
}
|
|
8034
8284
|
}
|
|
@@ -8083,7 +8333,8 @@ var openapi_default = {
|
|
|
8083
8333
|
properties: {
|
|
8084
8334
|
id: {
|
|
8085
8335
|
type: "string",
|
|
8086
|
-
format: "uuid"
|
|
8336
|
+
format: "uuid",
|
|
8337
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
8087
8338
|
},
|
|
8088
8339
|
type: {
|
|
8089
8340
|
type: "string",
|
|
@@ -8101,7 +8352,8 @@ var openapi_default = {
|
|
|
8101
8352
|
},
|
|
8102
8353
|
created_at: {
|
|
8103
8354
|
type: "string",
|
|
8104
|
-
format: "date-time"
|
|
8355
|
+
format: "date-time",
|
|
8356
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
8105
8357
|
}
|
|
8106
8358
|
}
|
|
8107
8359
|
}
|
|
@@ -8321,7 +8573,8 @@ var openapi_default = {
|
|
|
8321
8573
|
},
|
|
8322
8574
|
created_at: {
|
|
8323
8575
|
type: "string",
|
|
8324
|
-
format: "date-time"
|
|
8576
|
+
format: "date-time",
|
|
8577
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
8325
8578
|
}
|
|
8326
8579
|
}
|
|
8327
8580
|
}
|
|
@@ -8372,6 +8625,7 @@ var openapi_default = {
|
|
|
8372
8625
|
properties: {
|
|
8373
8626
|
status: {
|
|
8374
8627
|
type: "string",
|
|
8628
|
+
example: "completed",
|
|
8375
8629
|
description: "New status (e.g. open, in_review, resolved, archived)."
|
|
8376
8630
|
}
|
|
8377
8631
|
}
|
|
@@ -8439,11 +8693,13 @@ var openapi_default = {
|
|
|
8439
8693
|
properties: {
|
|
8440
8694
|
source_document_id: {
|
|
8441
8695
|
type: "string",
|
|
8442
|
-
format: "uuid"
|
|
8696
|
+
format: "uuid",
|
|
8697
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
8443
8698
|
},
|
|
8444
8699
|
target_document_id: {
|
|
8445
8700
|
type: "string",
|
|
8446
|
-
format: "uuid"
|
|
8701
|
+
format: "uuid",
|
|
8702
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
8447
8703
|
},
|
|
8448
8704
|
entity_value: {
|
|
8449
8705
|
type: "string"
|
|
@@ -8497,11 +8753,13 @@ var openapi_default = {
|
|
|
8497
8753
|
properties: {
|
|
8498
8754
|
source_document_id: {
|
|
8499
8755
|
type: "string",
|
|
8500
|
-
format: "uuid"
|
|
8756
|
+
format: "uuid",
|
|
8757
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
8501
8758
|
},
|
|
8502
8759
|
target_document_id: {
|
|
8503
8760
|
type: "string",
|
|
8504
|
-
format: "uuid"
|
|
8761
|
+
format: "uuid",
|
|
8762
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
8505
8763
|
},
|
|
8506
8764
|
entity_value: {
|
|
8507
8765
|
type: "string"
|
|
@@ -8561,11 +8819,13 @@ var openapi_default = {
|
|
|
8561
8819
|
properties: {
|
|
8562
8820
|
source_document_id: {
|
|
8563
8821
|
type: "string",
|
|
8564
|
-
format: "uuid"
|
|
8822
|
+
format: "uuid",
|
|
8823
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
8565
8824
|
},
|
|
8566
8825
|
target_document_id: {
|
|
8567
8826
|
type: "string",
|
|
8568
|
-
format: "uuid"
|
|
8827
|
+
format: "uuid",
|
|
8828
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
8569
8829
|
},
|
|
8570
8830
|
entity_value: {
|
|
8571
8831
|
type: "string"
|
|
@@ -8636,7 +8896,8 @@ var openapi_default = {
|
|
|
8636
8896
|
type: "array",
|
|
8637
8897
|
items: {
|
|
8638
8898
|
type: "string",
|
|
8639
|
-
format: "uuid"
|
|
8899
|
+
format: "uuid",
|
|
8900
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
8640
8901
|
},
|
|
8641
8902
|
description: "Document IDs to move to the new case."
|
|
8642
8903
|
}
|
|
@@ -8842,7 +9103,8 @@ var openapi_default = {
|
|
|
8842
9103
|
type: "array",
|
|
8843
9104
|
items: {
|
|
8844
9105
|
type: "string",
|
|
8845
|
-
format: "uuid"
|
|
9106
|
+
format: "uuid",
|
|
9107
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
8846
9108
|
}
|
|
8847
9109
|
}
|
|
8848
9110
|
}
|
|
@@ -8909,7 +9171,8 @@ var openapi_default = {
|
|
|
8909
9171
|
type: "array",
|
|
8910
9172
|
items: {
|
|
8911
9173
|
type: "string",
|
|
8912
|
-
format: "uuid"
|
|
9174
|
+
format: "uuid",
|
|
9175
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
8913
9176
|
}
|
|
8914
9177
|
}
|
|
8915
9178
|
}
|
|
@@ -9039,6 +9302,7 @@ var openapi_default = {
|
|
|
9039
9302
|
config_id: {
|
|
9040
9303
|
type: "string",
|
|
9041
9304
|
format: "uuid",
|
|
9305
|
+
example: "c9d0e1f2-a3b4-5678-cdef-789012345678",
|
|
9042
9306
|
description: "Matching configuration ID."
|
|
9043
9307
|
}
|
|
9044
9308
|
}
|
|
@@ -9093,6 +9357,7 @@ var openapi_default = {
|
|
|
9093
9357
|
run_id: {
|
|
9094
9358
|
type: "string",
|
|
9095
9359
|
format: "uuid",
|
|
9360
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
9096
9361
|
description: "Matching run ID to resolve."
|
|
9097
9362
|
}
|
|
9098
9363
|
}
|
|
@@ -9157,7 +9422,8 @@ var openapi_default = {
|
|
|
9157
9422
|
properties: {
|
|
9158
9423
|
id: {
|
|
9159
9424
|
type: "string",
|
|
9160
|
-
format: "uuid"
|
|
9425
|
+
format: "uuid",
|
|
9426
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
9161
9427
|
},
|
|
9162
9428
|
name: {
|
|
9163
9429
|
type: "string"
|
|
@@ -9435,7 +9701,8 @@ var openapi_default = {
|
|
|
9435
9701
|
type: "object",
|
|
9436
9702
|
properties: {
|
|
9437
9703
|
status: {
|
|
9438
|
-
type: "string"
|
|
9704
|
+
type: "string",
|
|
9705
|
+
example: "completed"
|
|
9439
9706
|
},
|
|
9440
9707
|
processed: {
|
|
9441
9708
|
type: "integer"
|
|
@@ -9494,7 +9761,8 @@ var openapi_default = {
|
|
|
9494
9761
|
properties: {
|
|
9495
9762
|
document_id: {
|
|
9496
9763
|
type: "string",
|
|
9497
|
-
format: "uuid"
|
|
9764
|
+
format: "uuid",
|
|
9765
|
+
example: "f0e1d2c3-b4a5-9687-8765-432109876543"
|
|
9498
9766
|
},
|
|
9499
9767
|
reference_id: {
|
|
9500
9768
|
type: "string"
|
|
@@ -9568,12 +9836,14 @@ var openapi_default = {
|
|
|
9568
9836
|
type: "array",
|
|
9569
9837
|
items: {
|
|
9570
9838
|
type: "string",
|
|
9571
|
-
format: "uuid"
|
|
9839
|
+
format: "uuid",
|
|
9840
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
9572
9841
|
}
|
|
9573
9842
|
},
|
|
9574
9843
|
assignee_id: {
|
|
9575
9844
|
type: "string",
|
|
9576
9845
|
format: "uuid",
|
|
9846
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
9577
9847
|
description: "User ID of the assignee."
|
|
9578
9848
|
}
|
|
9579
9849
|
}
|
|
@@ -9729,14 +9999,16 @@ var openapi_default = {
|
|
|
9729
9999
|
properties: {
|
|
9730
10000
|
document_id: {
|
|
9731
10001
|
type: "string",
|
|
9732
|
-
format: "uuid"
|
|
10002
|
+
format: "uuid",
|
|
10003
|
+
example: "f0e1d2c3-b4a5-9687-8765-432109876543"
|
|
9733
10004
|
},
|
|
9734
10005
|
expected_data: {
|
|
9735
10006
|
type: "object",
|
|
9736
10007
|
additionalProperties: true
|
|
9737
10008
|
},
|
|
9738
10009
|
notes: {
|
|
9739
|
-
type: "string"
|
|
10010
|
+
type: "string",
|
|
10011
|
+
example: "Reviewed and confirmed."
|
|
9740
10012
|
}
|
|
9741
10013
|
}
|
|
9742
10014
|
}
|
|
@@ -9786,7 +10058,8 @@ var openapi_default = {
|
|
|
9786
10058
|
required: true,
|
|
9787
10059
|
schema: {
|
|
9788
10060
|
type: "string",
|
|
9789
|
-
format: "uuid"
|
|
10061
|
+
format: "uuid",
|
|
10062
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
9790
10063
|
},
|
|
9791
10064
|
description: "Entry ID."
|
|
9792
10065
|
}
|
|
@@ -9803,7 +10076,8 @@ var openapi_default = {
|
|
|
9803
10076
|
additionalProperties: true
|
|
9804
10077
|
},
|
|
9805
10078
|
notes: {
|
|
9806
|
-
type: "string"
|
|
10079
|
+
type: "string",
|
|
10080
|
+
example: "Reviewed and confirmed."
|
|
9807
10081
|
}
|
|
9808
10082
|
}
|
|
9809
10083
|
}
|
|
@@ -9848,7 +10122,8 @@ var openapi_default = {
|
|
|
9848
10122
|
required: true,
|
|
9849
10123
|
schema: {
|
|
9850
10124
|
type: "string",
|
|
9851
|
-
format: "uuid"
|
|
10125
|
+
format: "uuid",
|
|
10126
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
9852
10127
|
},
|
|
9853
10128
|
description: "Entry ID."
|
|
9854
10129
|
}
|
|
@@ -9938,7 +10213,8 @@ var openapi_default = {
|
|
|
9938
10213
|
required: true,
|
|
9939
10214
|
schema: {
|
|
9940
10215
|
type: "string",
|
|
9941
|
-
format: "uuid"
|
|
10216
|
+
format: "uuid",
|
|
10217
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
9942
10218
|
},
|
|
9943
10219
|
description: "ID of the benchmark run to compare against."
|
|
9944
10220
|
}
|
|
@@ -10191,7 +10467,8 @@ var openapi_default = {
|
|
|
10191
10467
|
required: true,
|
|
10192
10468
|
schema: {
|
|
10193
10469
|
type: "string",
|
|
10194
|
-
format: "uuid"
|
|
10470
|
+
format: "uuid",
|
|
10471
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
10195
10472
|
},
|
|
10196
10473
|
description: "Resource UUID."
|
|
10197
10474
|
},
|
|
@@ -10418,6 +10695,7 @@ var openapi_default = {
|
|
|
10418
10695
|
},
|
|
10419
10696
|
message: {
|
|
10420
10697
|
type: "string",
|
|
10698
|
+
example: "Re-extraction started.",
|
|
10421
10699
|
description: "Human-readable error description."
|
|
10422
10700
|
},
|
|
10423
10701
|
request_id: {
|
|
@@ -10489,7 +10767,8 @@ var openapi_default = {
|
|
|
10489
10767
|
},
|
|
10490
10768
|
id: {
|
|
10491
10769
|
type: "string",
|
|
10492
|
-
format: "uuid"
|
|
10770
|
+
format: "uuid",
|
|
10771
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
10493
10772
|
}
|
|
10494
10773
|
}
|
|
10495
10774
|
},
|
|
@@ -10505,17 +10784,19 @@ var openapi_default = {
|
|
|
10505
10784
|
properties: {
|
|
10506
10785
|
extraction_id: {
|
|
10507
10786
|
type: "string",
|
|
10508
|
-
format: "uuid"
|
|
10787
|
+
format: "uuid",
|
|
10788
|
+
example: "d1a2b3c4-5678-9abc-def0-1234567890ab"
|
|
10509
10789
|
},
|
|
10510
10790
|
request_id: {
|
|
10511
10791
|
type: "string",
|
|
10512
|
-
|
|
10792
|
+
example: "req_x7y8z9a0b1c2d3e4"
|
|
10513
10793
|
},
|
|
10514
10794
|
status: {
|
|
10515
10795
|
type: "string",
|
|
10516
10796
|
enum: [
|
|
10517
10797
|
"complete"
|
|
10518
|
-
]
|
|
10798
|
+
],
|
|
10799
|
+
example: "complete"
|
|
10519
10800
|
},
|
|
10520
10801
|
document: {
|
|
10521
10802
|
$ref: "#/components/schemas/ExtractDocumentSummary"
|
|
@@ -10542,7 +10823,8 @@ var openapi_default = {
|
|
|
10542
10823
|
"string",
|
|
10543
10824
|
"null"
|
|
10544
10825
|
],
|
|
10545
|
-
format: "uuid"
|
|
10826
|
+
format: "uuid",
|
|
10827
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
10546
10828
|
},
|
|
10547
10829
|
definition: {
|
|
10548
10830
|
type: "object",
|
|
@@ -10627,10 +10909,12 @@ var openapi_default = {
|
|
|
10627
10909
|
properties: {
|
|
10628
10910
|
request_id: {
|
|
10629
10911
|
type: "string",
|
|
10630
|
-
format: "uuid"
|
|
10912
|
+
format: "uuid",
|
|
10913
|
+
example: "req_x7y8z9a0b1c2d3e4"
|
|
10631
10914
|
},
|
|
10632
10915
|
status: {
|
|
10633
10916
|
type: "string",
|
|
10917
|
+
example: "completed",
|
|
10634
10918
|
enum: [
|
|
10635
10919
|
"processing"
|
|
10636
10920
|
]
|
|
@@ -10645,10 +10929,12 @@ var openapi_default = {
|
|
|
10645
10929
|
properties: {
|
|
10646
10930
|
id: {
|
|
10647
10931
|
type: "string",
|
|
10648
|
-
format: "uuid"
|
|
10932
|
+
format: "uuid",
|
|
10933
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
10649
10934
|
},
|
|
10650
10935
|
status: {
|
|
10651
10936
|
type: "string",
|
|
10937
|
+
example: "completed",
|
|
10652
10938
|
enum: [
|
|
10653
10939
|
"queued"
|
|
10654
10940
|
]
|
|
@@ -10670,10 +10956,12 @@ var openapi_default = {
|
|
|
10670
10956
|
properties: {
|
|
10671
10957
|
id: {
|
|
10672
10958
|
type: "string",
|
|
10673
|
-
format: "uuid"
|
|
10959
|
+
format: "uuid",
|
|
10960
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
10674
10961
|
},
|
|
10675
10962
|
filename: {
|
|
10676
|
-
type: "string"
|
|
10963
|
+
type: "string",
|
|
10964
|
+
example: "invoice-042.pdf"
|
|
10677
10965
|
},
|
|
10678
10966
|
pages: {
|
|
10679
10967
|
type: "integer"
|
|
@@ -10696,7 +10984,8 @@ var openapi_default = {
|
|
|
10696
10984
|
properties: {
|
|
10697
10985
|
id: {
|
|
10698
10986
|
type: "string",
|
|
10699
|
-
format: "uuid"
|
|
10987
|
+
format: "uuid",
|
|
10988
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
10700
10989
|
},
|
|
10701
10990
|
filename: {
|
|
10702
10991
|
type: "string",
|
|
@@ -10738,7 +11027,8 @@ var openapi_default = {
|
|
|
10738
11027
|
properties: {
|
|
10739
11028
|
id: {
|
|
10740
11029
|
type: "string",
|
|
10741
|
-
format: "uuid"
|
|
11030
|
+
format: "uuid",
|
|
11031
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
10742
11032
|
},
|
|
10743
11033
|
filename: {
|
|
10744
11034
|
type: "string",
|
|
@@ -10772,6 +11062,7 @@ var openapi_default = {
|
|
|
10772
11062
|
},
|
|
10773
11063
|
status: {
|
|
10774
11064
|
type: "string",
|
|
11065
|
+
example: "completed",
|
|
10775
11066
|
enum: [
|
|
10776
11067
|
"pending",
|
|
10777
11068
|
"processing",
|
|
@@ -10787,7 +11078,8 @@ var openapi_default = {
|
|
|
10787
11078
|
"string",
|
|
10788
11079
|
"null"
|
|
10789
11080
|
],
|
|
10790
|
-
format: "uuid"
|
|
11081
|
+
format: "uuid",
|
|
11082
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
10791
11083
|
},
|
|
10792
11084
|
type: {
|
|
10793
11085
|
type: "string",
|
|
@@ -10804,11 +11096,13 @@ var openapi_default = {
|
|
|
10804
11096
|
"string",
|
|
10805
11097
|
"null"
|
|
10806
11098
|
],
|
|
10807
|
-
format: "uuid"
|
|
11099
|
+
format: "uuid",
|
|
11100
|
+
example: "d1a2b3c4-5678-9abc-def0-1234567890ab"
|
|
10808
11101
|
},
|
|
10809
11102
|
created_at: {
|
|
10810
11103
|
type: "string",
|
|
10811
|
-
format: "date-time"
|
|
11104
|
+
format: "date-time",
|
|
11105
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
10812
11106
|
},
|
|
10813
11107
|
links: {
|
|
10814
11108
|
type: "object",
|
|
@@ -10832,10 +11126,12 @@ var openapi_default = {
|
|
|
10832
11126
|
properties: {
|
|
10833
11127
|
id: {
|
|
10834
11128
|
type: "string",
|
|
10835
|
-
format: "uuid"
|
|
11129
|
+
format: "uuid",
|
|
11130
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
10836
11131
|
},
|
|
10837
11132
|
status: {
|
|
10838
11133
|
type: "string",
|
|
11134
|
+
example: "completed",
|
|
10839
11135
|
enum: [
|
|
10840
11136
|
"complete",
|
|
10841
11137
|
"failed",
|
|
@@ -10844,10 +11140,12 @@ var openapi_default = {
|
|
|
10844
11140
|
},
|
|
10845
11141
|
document_id: {
|
|
10846
11142
|
type: "string",
|
|
10847
|
-
format: "uuid"
|
|
11143
|
+
format: "uuid",
|
|
11144
|
+
example: "f0e1d2c3-b4a5-9687-8765-432109876543"
|
|
10848
11145
|
},
|
|
10849
11146
|
document_filename: {
|
|
10850
|
-
type: "string"
|
|
11147
|
+
type: "string",
|
|
11148
|
+
example: "invoice-042.pdf"
|
|
10851
11149
|
},
|
|
10852
11150
|
confidence_overall: {
|
|
10853
11151
|
type: "number",
|
|
@@ -10855,7 +11153,8 @@ var openapi_default = {
|
|
|
10855
11153
|
},
|
|
10856
11154
|
created_at: {
|
|
10857
11155
|
type: "string",
|
|
10858
|
-
format: "date-time"
|
|
11156
|
+
format: "date-time",
|
|
11157
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
10859
11158
|
},
|
|
10860
11159
|
links: {
|
|
10861
11160
|
type: "object",
|
|
@@ -10882,10 +11181,12 @@ var openapi_default = {
|
|
|
10882
11181
|
properties: {
|
|
10883
11182
|
id: {
|
|
10884
11183
|
type: "string",
|
|
10885
|
-
format: "uuid"
|
|
11184
|
+
format: "uuid",
|
|
11185
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
10886
11186
|
},
|
|
10887
11187
|
status: {
|
|
10888
11188
|
type: "string",
|
|
11189
|
+
example: "completed",
|
|
10889
11190
|
enum: [
|
|
10890
11191
|
"complete",
|
|
10891
11192
|
"failed",
|
|
@@ -10897,10 +11198,12 @@ var openapi_default = {
|
|
|
10897
11198
|
properties: {
|
|
10898
11199
|
id: {
|
|
10899
11200
|
type: "string",
|
|
10900
|
-
format: "uuid"
|
|
11201
|
+
format: "uuid",
|
|
11202
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
10901
11203
|
},
|
|
10902
11204
|
filename: {
|
|
10903
|
-
type: "string"
|
|
11205
|
+
type: "string",
|
|
11206
|
+
example: "invoice-042.pdf"
|
|
10904
11207
|
},
|
|
10905
11208
|
pages: {
|
|
10906
11209
|
type: "integer"
|
|
@@ -10953,13 +11256,15 @@ var openapi_default = {
|
|
|
10953
11256
|
type: "integer"
|
|
10954
11257
|
},
|
|
10955
11258
|
region: {
|
|
10956
|
-
type: "string"
|
|
11259
|
+
type: "string",
|
|
11260
|
+
example: "eu-west"
|
|
10957
11261
|
}
|
|
10958
11262
|
}
|
|
10959
11263
|
},
|
|
10960
11264
|
created_at: {
|
|
10961
11265
|
type: "string",
|
|
10962
|
-
format: "date-time"
|
|
11266
|
+
format: "date-time",
|
|
11267
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
10963
11268
|
},
|
|
10964
11269
|
links: {
|
|
10965
11270
|
type: "object",
|
|
@@ -10991,7 +11296,8 @@ var openapi_default = {
|
|
|
10991
11296
|
properties: {
|
|
10992
11297
|
id: {
|
|
10993
11298
|
type: "string",
|
|
10994
|
-
format: "uuid"
|
|
11299
|
+
format: "uuid",
|
|
11300
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
10995
11301
|
},
|
|
10996
11302
|
name: {
|
|
10997
11303
|
type: "string",
|
|
@@ -11064,11 +11370,13 @@ var openapi_default = {
|
|
|
11064
11370
|
},
|
|
11065
11371
|
created_at: {
|
|
11066
11372
|
type: "string",
|
|
11067
|
-
format: "date-time"
|
|
11373
|
+
format: "date-time",
|
|
11374
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
11068
11375
|
},
|
|
11069
11376
|
updated_at: {
|
|
11070
11377
|
type: "string",
|
|
11071
|
-
format: "date-time"
|
|
11378
|
+
format: "date-time",
|
|
11379
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
11072
11380
|
},
|
|
11073
11381
|
links: {
|
|
11074
11382
|
type: "object",
|
|
@@ -11145,13 +11453,16 @@ var openapi_default = {
|
|
|
11145
11453
|
],
|
|
11146
11454
|
properties: {
|
|
11147
11455
|
field_name: {
|
|
11148
|
-
type: "string"
|
|
11456
|
+
type: "string",
|
|
11457
|
+
example: "invoice_number"
|
|
11149
11458
|
},
|
|
11150
11459
|
display_name: {
|
|
11151
|
-
type: "string"
|
|
11460
|
+
type: "string",
|
|
11461
|
+
example: "Invoice Number"
|
|
11152
11462
|
},
|
|
11153
11463
|
data_type: {
|
|
11154
|
-
type: "string"
|
|
11464
|
+
type: "string",
|
|
11465
|
+
example: "string"
|
|
11155
11466
|
},
|
|
11156
11467
|
description: {
|
|
11157
11468
|
type: "string"
|
|
@@ -11215,13 +11526,16 @@ var openapi_default = {
|
|
|
11215
11526
|
],
|
|
11216
11527
|
properties: {
|
|
11217
11528
|
field_name: {
|
|
11218
|
-
type: "string"
|
|
11529
|
+
type: "string",
|
|
11530
|
+
example: "invoice_number"
|
|
11219
11531
|
},
|
|
11220
11532
|
display_name: {
|
|
11221
|
-
type: "string"
|
|
11533
|
+
type: "string",
|
|
11534
|
+
example: "Invoice Number"
|
|
11222
11535
|
},
|
|
11223
11536
|
data_type: {
|
|
11224
|
-
type: "string"
|
|
11537
|
+
type: "string",
|
|
11538
|
+
example: "string"
|
|
11225
11539
|
},
|
|
11226
11540
|
description: {
|
|
11227
11541
|
type: "string"
|
|
@@ -11243,7 +11557,8 @@ var openapi_default = {
|
|
|
11243
11557
|
properties: {
|
|
11244
11558
|
id: {
|
|
11245
11559
|
type: "string",
|
|
11246
|
-
format: "uuid"
|
|
11560
|
+
format: "uuid",
|
|
11561
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
11247
11562
|
},
|
|
11248
11563
|
name: {
|
|
11249
11564
|
type: [
|
|
@@ -11254,6 +11569,7 @@ var openapi_default = {
|
|
|
11254
11569
|
},
|
|
11255
11570
|
status: {
|
|
11256
11571
|
type: "string",
|
|
11572
|
+
example: "completed",
|
|
11257
11573
|
enum: [
|
|
11258
11574
|
"pending",
|
|
11259
11575
|
"queued",
|
|
@@ -11284,7 +11600,8 @@ var openapi_default = {
|
|
|
11284
11600
|
properties: {
|
|
11285
11601
|
id: {
|
|
11286
11602
|
type: "string",
|
|
11287
|
-
format: "uuid"
|
|
11603
|
+
format: "uuid",
|
|
11604
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
11288
11605
|
},
|
|
11289
11606
|
name: {
|
|
11290
11607
|
type: "string"
|
|
@@ -11355,27 +11672,31 @@ var openapi_default = {
|
|
|
11355
11672
|
type: "string"
|
|
11356
11673
|
},
|
|
11357
11674
|
message: {
|
|
11358
|
-
type: "string"
|
|
11675
|
+
type: "string",
|
|
11676
|
+
example: "Re-extraction started."
|
|
11359
11677
|
}
|
|
11360
11678
|
}
|
|
11361
11679
|
},
|
|
11362
11680
|
created_at: {
|
|
11363
11681
|
type: "string",
|
|
11364
|
-
format: "date-time"
|
|
11682
|
+
format: "date-time",
|
|
11683
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
11365
11684
|
},
|
|
11366
11685
|
started_at: {
|
|
11367
11686
|
type: [
|
|
11368
11687
|
"string",
|
|
11369
11688
|
"null"
|
|
11370
11689
|
],
|
|
11371
|
-
format: "date-time"
|
|
11690
|
+
format: "date-time",
|
|
11691
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
11372
11692
|
},
|
|
11373
11693
|
completed_at: {
|
|
11374
11694
|
type: [
|
|
11375
11695
|
"string",
|
|
11376
11696
|
"null"
|
|
11377
11697
|
],
|
|
11378
|
-
format: "date-time"
|
|
11698
|
+
format: "date-time",
|
|
11699
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
11379
11700
|
},
|
|
11380
11701
|
links: {
|
|
11381
11702
|
type: "object",
|
|
@@ -11406,7 +11727,8 @@ var openapi_default = {
|
|
|
11406
11727
|
properties: {
|
|
11407
11728
|
id: {
|
|
11408
11729
|
type: "string",
|
|
11409
|
-
format: "uuid"
|
|
11730
|
+
format: "uuid",
|
|
11731
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
11410
11732
|
},
|
|
11411
11733
|
name: {
|
|
11412
11734
|
type: "string",
|
|
@@ -11418,12 +11740,12 @@ var openapi_default = {
|
|
|
11418
11740
|
},
|
|
11419
11741
|
status: {
|
|
11420
11742
|
type: "string",
|
|
11743
|
+
example: "completed",
|
|
11421
11744
|
enum: [
|
|
11422
11745
|
"active",
|
|
11423
11746
|
"syncing",
|
|
11424
11747
|
"error"
|
|
11425
|
-
]
|
|
11426
|
-
example: "active"
|
|
11748
|
+
]
|
|
11427
11749
|
},
|
|
11428
11750
|
document_count: {
|
|
11429
11751
|
type: "integer",
|
|
@@ -11437,7 +11759,8 @@ var openapi_default = {
|
|
|
11437
11759
|
properties: {
|
|
11438
11760
|
id: {
|
|
11439
11761
|
type: "string",
|
|
11440
|
-
format: "uuid"
|
|
11762
|
+
format: "uuid",
|
|
11763
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
11441
11764
|
}
|
|
11442
11765
|
}
|
|
11443
11766
|
},
|
|
@@ -11448,7 +11771,8 @@ var openapi_default = {
|
|
|
11448
11771
|
},
|
|
11449
11772
|
created_at: {
|
|
11450
11773
|
type: "string",
|
|
11451
|
-
format: "date-time"
|
|
11774
|
+
format: "date-time",
|
|
11775
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
11452
11776
|
},
|
|
11453
11777
|
links: {
|
|
11454
11778
|
type: "object",
|
|
@@ -11481,6 +11805,7 @@ var openapi_default = {
|
|
|
11481
11805
|
default_schema_id: {
|
|
11482
11806
|
type: "string",
|
|
11483
11807
|
format: "uuid",
|
|
11808
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
11484
11809
|
description: "Optional schema ID to apply by default to documents in this source."
|
|
11485
11810
|
}
|
|
11486
11811
|
}
|
|
@@ -11497,6 +11822,7 @@ var openapi_default = {
|
|
|
11497
11822
|
"null"
|
|
11498
11823
|
],
|
|
11499
11824
|
format: "uuid",
|
|
11825
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
11500
11826
|
description: "Set to null to remove the default schema."
|
|
11501
11827
|
}
|
|
11502
11828
|
}
|
|
@@ -11507,13 +11833,16 @@ var openapi_default = {
|
|
|
11507
11833
|
document_id: {
|
|
11508
11834
|
type: "string",
|
|
11509
11835
|
format: "uuid",
|
|
11836
|
+
example: "f0e1d2c3-b4a5-9687-8765-432109876543",
|
|
11510
11837
|
description: "ID of the created document (absent if duplicate)."
|
|
11511
11838
|
},
|
|
11512
11839
|
filename: {
|
|
11513
|
-
type: "string"
|
|
11840
|
+
type: "string",
|
|
11841
|
+
example: "invoice-042.pdf"
|
|
11514
11842
|
},
|
|
11515
11843
|
status: {
|
|
11516
11844
|
type: "string",
|
|
11845
|
+
example: "completed",
|
|
11517
11846
|
enum: [
|
|
11518
11847
|
"queued",
|
|
11519
11848
|
"duplicate"
|
|
@@ -11522,10 +11851,12 @@ var openapi_default = {
|
|
|
11522
11851
|
},
|
|
11523
11852
|
source_id: {
|
|
11524
11853
|
type: "string",
|
|
11525
|
-
format: "uuid"
|
|
11854
|
+
format: "uuid",
|
|
11855
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
11526
11856
|
},
|
|
11527
11857
|
message: {
|
|
11528
11858
|
type: "string",
|
|
11859
|
+
example: "Re-extraction started.",
|
|
11529
11860
|
description: "Present when status is `duplicate`."
|
|
11530
11861
|
},
|
|
11531
11862
|
existing_document_id: {
|
|
@@ -11534,6 +11865,7 @@ var openapi_default = {
|
|
|
11534
11865
|
"null"
|
|
11535
11866
|
],
|
|
11536
11867
|
format: "uuid",
|
|
11868
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
11537
11869
|
description: "Present when status is `duplicate`."
|
|
11538
11870
|
},
|
|
11539
11871
|
links: {
|
|
@@ -11554,13 +11886,16 @@ var openapi_default = {
|
|
|
11554
11886
|
properties: {
|
|
11555
11887
|
id: {
|
|
11556
11888
|
type: "string",
|
|
11557
|
-
format: "uuid"
|
|
11889
|
+
format: "uuid",
|
|
11890
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
11558
11891
|
},
|
|
11559
11892
|
filename: {
|
|
11560
|
-
type: "string"
|
|
11893
|
+
type: "string",
|
|
11894
|
+
example: "invoice-042.pdf"
|
|
11561
11895
|
},
|
|
11562
11896
|
status: {
|
|
11563
11897
|
type: "string",
|
|
11898
|
+
example: "completed",
|
|
11564
11899
|
enum: [
|
|
11565
11900
|
"pending",
|
|
11566
11901
|
"processing",
|
|
@@ -11579,7 +11914,8 @@ var openapi_default = {
|
|
|
11579
11914
|
},
|
|
11580
11915
|
created_at: {
|
|
11581
11916
|
type: "string",
|
|
11582
|
-
format: "date-time"
|
|
11917
|
+
format: "date-time",
|
|
11918
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
11583
11919
|
},
|
|
11584
11920
|
links: {
|
|
11585
11921
|
type: "object",
|
|
@@ -11600,15 +11936,16 @@ var openapi_default = {
|
|
|
11600
11936
|
schema_id: {
|
|
11601
11937
|
type: "string",
|
|
11602
11938
|
format: "uuid",
|
|
11603
|
-
|
|
11604
|
-
|
|
11939
|
+
example: "b2c3d4e5-f6a7-8901-bcde-f12345678901",
|
|
11940
|
+
description: "User schema UUID to run this job against."
|
|
11605
11941
|
},
|
|
11606
11942
|
document_ids: {
|
|
11607
11943
|
type: "array",
|
|
11608
11944
|
description: "Optional list of document UUIDs to process. If omitted or empty, all\ncompleted documents for the authenticated customer are used.\n",
|
|
11609
11945
|
items: {
|
|
11610
11946
|
type: "string",
|
|
11611
|
-
format: "uuid"
|
|
11947
|
+
format: "uuid",
|
|
11948
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
11612
11949
|
}
|
|
11613
11950
|
},
|
|
11614
11951
|
name: {
|
|
@@ -11633,10 +11970,12 @@ var openapi_default = {
|
|
|
11633
11970
|
id: {
|
|
11634
11971
|
type: "string",
|
|
11635
11972
|
format: "uuid",
|
|
11973
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
11636
11974
|
description: "The newly created job's UUID."
|
|
11637
11975
|
},
|
|
11638
11976
|
status: {
|
|
11639
11977
|
type: "string",
|
|
11978
|
+
example: "completed",
|
|
11640
11979
|
enum: [
|
|
11641
11980
|
"pending"
|
|
11642
11981
|
],
|
|
@@ -11672,7 +12011,8 @@ var openapi_default = {
|
|
|
11672
12011
|
properties: {
|
|
11673
12012
|
job_id: {
|
|
11674
12013
|
type: "string",
|
|
11675
|
-
format: "uuid"
|
|
12014
|
+
format: "uuid",
|
|
12015
|
+
example: "c3d4e5f6-a7b8-9012-cdef-123456789012"
|
|
11676
12016
|
},
|
|
11677
12017
|
job_status: {
|
|
11678
12018
|
type: "string",
|
|
@@ -11693,7 +12033,8 @@ var openapi_default = {
|
|
|
11693
12033
|
properties: {
|
|
11694
12034
|
id: {
|
|
11695
12035
|
type: "string",
|
|
11696
|
-
format: "uuid"
|
|
12036
|
+
format: "uuid",
|
|
12037
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
11697
12038
|
},
|
|
11698
12039
|
name: {
|
|
11699
12040
|
type: "string"
|
|
@@ -11714,17 +12055,21 @@ var openapi_default = {
|
|
|
11714
12055
|
id: {
|
|
11715
12056
|
type: "string",
|
|
11716
12057
|
format: "uuid",
|
|
12058
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
11717
12059
|
description: "The result row's UUID."
|
|
11718
12060
|
},
|
|
11719
12061
|
document_id: {
|
|
11720
12062
|
type: "string",
|
|
11721
|
-
format: "uuid"
|
|
12063
|
+
format: "uuid",
|
|
12064
|
+
example: "f0e1d2c3-b4a5-9687-8765-432109876543"
|
|
11722
12065
|
},
|
|
11723
12066
|
filename: {
|
|
11724
|
-
type: "string"
|
|
12067
|
+
type: "string",
|
|
12068
|
+
example: "invoice-042.pdf"
|
|
11725
12069
|
},
|
|
11726
12070
|
status: {
|
|
11727
12071
|
type: "string",
|
|
12072
|
+
example: "completed",
|
|
11728
12073
|
description: "Per-row status (e.g. `complete`, `partial`, `failed`)."
|
|
11729
12074
|
},
|
|
11730
12075
|
values: {
|
|
@@ -11773,7 +12118,8 @@ var openapi_default = {
|
|
|
11773
12118
|
properties: {
|
|
11774
12119
|
id: {
|
|
11775
12120
|
type: "string",
|
|
11776
|
-
format: "uuid"
|
|
12121
|
+
format: "uuid",
|
|
12122
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
11777
12123
|
},
|
|
11778
12124
|
name: {
|
|
11779
12125
|
type: "string",
|
|
@@ -11789,14 +12135,16 @@ var openapi_default = {
|
|
|
11789
12135
|
},
|
|
11790
12136
|
created_at: {
|
|
11791
12137
|
type: "string",
|
|
11792
|
-
format: "date-time"
|
|
12138
|
+
format: "date-time",
|
|
12139
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
11793
12140
|
},
|
|
11794
12141
|
updated_at: {
|
|
11795
12142
|
type: [
|
|
11796
12143
|
"string",
|
|
11797
12144
|
"null"
|
|
11798
12145
|
],
|
|
11799
|
-
format: "date-time"
|
|
12146
|
+
format: "date-time",
|
|
12147
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
11800
12148
|
},
|
|
11801
12149
|
links: {
|
|
11802
12150
|
type: "object",
|
|
@@ -11947,14 +12295,14 @@ var openapi_default = {
|
|
|
11947
12295
|
},
|
|
11948
12296
|
match_type: {
|
|
11949
12297
|
type: "string",
|
|
12298
|
+
example: "exact",
|
|
11950
12299
|
enum: [
|
|
11951
12300
|
"exact",
|
|
11952
12301
|
"fuzzy",
|
|
11953
12302
|
"date_range",
|
|
11954
12303
|
"numeric_range"
|
|
11955
12304
|
],
|
|
11956
|
-
description: "Matching strategy applied to this pair."
|
|
11957
|
-
example: "fuzzy"
|
|
12305
|
+
description: "Matching strategy applied to this pair."
|
|
11958
12306
|
},
|
|
11959
12307
|
weight: {
|
|
11960
12308
|
type: "number",
|
|
@@ -11977,7 +12325,8 @@ var openapi_default = {
|
|
|
11977
12325
|
properties: {
|
|
11978
12326
|
id: {
|
|
11979
12327
|
type: "string",
|
|
11980
|
-
format: "uuid"
|
|
12328
|
+
format: "uuid",
|
|
12329
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
11981
12330
|
},
|
|
11982
12331
|
name: {
|
|
11983
12332
|
type: "string",
|
|
@@ -11985,7 +12334,8 @@ var openapi_default = {
|
|
|
11985
12334
|
},
|
|
11986
12335
|
reference_data_id: {
|
|
11987
12336
|
type: "string",
|
|
11988
|
-
format: "uuid"
|
|
12337
|
+
format: "uuid",
|
|
12338
|
+
example: "b8c9d0e1-f2a3-4567-bcde-678901234567"
|
|
11989
12339
|
},
|
|
11990
12340
|
target_type: {
|
|
11991
12341
|
type: "string",
|
|
@@ -12017,14 +12367,16 @@ var openapi_default = {
|
|
|
12017
12367
|
},
|
|
12018
12368
|
created_at: {
|
|
12019
12369
|
type: "string",
|
|
12020
|
-
format: "date-time"
|
|
12370
|
+
format: "date-time",
|
|
12371
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
12021
12372
|
},
|
|
12022
12373
|
updated_at: {
|
|
12023
12374
|
type: [
|
|
12024
12375
|
"string",
|
|
12025
12376
|
"null"
|
|
12026
12377
|
],
|
|
12027
|
-
format: "date-time"
|
|
12378
|
+
format: "date-time",
|
|
12379
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
12028
12380
|
},
|
|
12029
12381
|
links: {
|
|
12030
12382
|
type: "object",
|
|
@@ -12054,6 +12406,7 @@ var openapi_default = {
|
|
|
12054
12406
|
reference_data_id: {
|
|
12055
12407
|
type: "string",
|
|
12056
12408
|
format: "uuid",
|
|
12409
|
+
example: "b8c9d0e1-f2a3-4567-bcde-678901234567",
|
|
12057
12410
|
description: "UUID of the reference dataset to match against."
|
|
12058
12411
|
},
|
|
12059
12412
|
field_mappings: {
|
|
@@ -12131,14 +12484,17 @@ var openapi_default = {
|
|
|
12131
12484
|
properties: {
|
|
12132
12485
|
id: {
|
|
12133
12486
|
type: "string",
|
|
12134
|
-
format: "uuid"
|
|
12487
|
+
format: "uuid",
|
|
12488
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
12135
12489
|
},
|
|
12136
12490
|
matching_config_id: {
|
|
12137
12491
|
type: "string",
|
|
12138
|
-
format: "uuid"
|
|
12492
|
+
format: "uuid",
|
|
12493
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
12139
12494
|
},
|
|
12140
12495
|
status: {
|
|
12141
12496
|
type: "string",
|
|
12497
|
+
example: "completed",
|
|
12142
12498
|
enum: [
|
|
12143
12499
|
"queued",
|
|
12144
12500
|
"running",
|
|
@@ -12175,14 +12531,16 @@ var openapi_default = {
|
|
|
12175
12531
|
"string",
|
|
12176
12532
|
"null"
|
|
12177
12533
|
],
|
|
12178
|
-
format: "date-time"
|
|
12534
|
+
format: "date-time",
|
|
12535
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
12179
12536
|
},
|
|
12180
12537
|
completed_at: {
|
|
12181
12538
|
type: [
|
|
12182
12539
|
"string",
|
|
12183
12540
|
"null"
|
|
12184
12541
|
],
|
|
12185
|
-
format: "date-time"
|
|
12542
|
+
format: "date-time",
|
|
12543
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
12186
12544
|
},
|
|
12187
12545
|
error: {
|
|
12188
12546
|
type: [
|
|
@@ -12192,7 +12550,8 @@ var openapi_default = {
|
|
|
12192
12550
|
},
|
|
12193
12551
|
created_at: {
|
|
12194
12552
|
type: "string",
|
|
12195
|
-
format: "date-time"
|
|
12553
|
+
format: "date-time",
|
|
12554
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
12196
12555
|
},
|
|
12197
12556
|
links: {
|
|
12198
12557
|
type: "object",
|
|
@@ -12231,11 +12590,13 @@ var openapi_default = {
|
|
|
12231
12590
|
properties: {
|
|
12232
12591
|
id: {
|
|
12233
12592
|
type: "string",
|
|
12234
|
-
format: "uuid"
|
|
12593
|
+
format: "uuid",
|
|
12594
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
12235
12595
|
},
|
|
12236
12596
|
document_id: {
|
|
12237
12597
|
type: "string",
|
|
12238
|
-
format: "uuid"
|
|
12598
|
+
format: "uuid",
|
|
12599
|
+
example: "f0e1d2c3-b4a5-9687-8765-432109876543"
|
|
12239
12600
|
},
|
|
12240
12601
|
document_filename: {
|
|
12241
12602
|
type: [
|
|
@@ -12248,7 +12609,8 @@ var openapi_default = {
|
|
|
12248
12609
|
"string",
|
|
12249
12610
|
"null"
|
|
12250
12611
|
],
|
|
12251
|
-
format: "uuid"
|
|
12612
|
+
format: "uuid",
|
|
12613
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
12252
12614
|
},
|
|
12253
12615
|
confidence: {
|
|
12254
12616
|
type: "number",
|
|
@@ -12258,6 +12620,7 @@ var openapi_default = {
|
|
|
12258
12620
|
},
|
|
12259
12621
|
status: {
|
|
12260
12622
|
type: "string",
|
|
12623
|
+
example: "completed",
|
|
12261
12624
|
description: "Per-result status (e.g. `auto_accepted`, `needs_review`, `no_match`)."
|
|
12262
12625
|
},
|
|
12263
12626
|
evidence: {
|
|
@@ -12280,15 +12643,16 @@ var openapi_default = {
|
|
|
12280
12643
|
properties: {
|
|
12281
12644
|
id: {
|
|
12282
12645
|
type: "string",
|
|
12283
|
-
format: "uuid"
|
|
12646
|
+
format: "uuid",
|
|
12647
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
12284
12648
|
},
|
|
12285
12649
|
name: {
|
|
12286
12650
|
type: "string"
|
|
12287
12651
|
},
|
|
12288
12652
|
trigger_type: {
|
|
12289
12653
|
type: "string",
|
|
12290
|
-
|
|
12291
|
-
|
|
12654
|
+
example: "document_classified",
|
|
12655
|
+
description: "Trigger kind. Always `document_classified` for rules created via this API."
|
|
12292
12656
|
},
|
|
12293
12657
|
conditions: {
|
|
12294
12658
|
type: "object",
|
|
@@ -12297,8 +12661,8 @@ var openapi_default = {
|
|
|
12297
12661
|
},
|
|
12298
12662
|
action_type: {
|
|
12299
12663
|
type: "string",
|
|
12300
|
-
|
|
12301
|
-
|
|
12664
|
+
example: "route_to_schema",
|
|
12665
|
+
description: "Resolved action kind. Defaults to `route_to_schema` when not specified on the request body."
|
|
12302
12666
|
},
|
|
12303
12667
|
actions: {
|
|
12304
12668
|
type: "object",
|
|
@@ -12324,18 +12688,21 @@ var openapi_default = {
|
|
|
12324
12688
|
"string",
|
|
12325
12689
|
"null"
|
|
12326
12690
|
],
|
|
12327
|
-
format: "uuid"
|
|
12691
|
+
format: "uuid",
|
|
12692
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
12328
12693
|
},
|
|
12329
12694
|
created_at: {
|
|
12330
12695
|
type: "string",
|
|
12331
|
-
format: "date-time"
|
|
12696
|
+
format: "date-time",
|
|
12697
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
12332
12698
|
},
|
|
12333
12699
|
updated_at: {
|
|
12334
12700
|
type: [
|
|
12335
12701
|
"string",
|
|
12336
12702
|
"null"
|
|
12337
12703
|
],
|
|
12338
|
-
format: "date-time"
|
|
12704
|
+
format: "date-time",
|
|
12705
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
12339
12706
|
},
|
|
12340
12707
|
links: {
|
|
12341
12708
|
type: "object",
|
|
@@ -12422,11 +12789,13 @@ var openapi_default = {
|
|
|
12422
12789
|
properties: {
|
|
12423
12790
|
id: {
|
|
12424
12791
|
type: "string",
|
|
12425
|
-
format: "uuid"
|
|
12792
|
+
format: "uuid",
|
|
12793
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
12426
12794
|
},
|
|
12427
12795
|
customer_id: {
|
|
12428
12796
|
type: "string",
|
|
12429
|
-
format: "uuid"
|
|
12797
|
+
format: "uuid",
|
|
12798
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
12430
12799
|
},
|
|
12431
12800
|
name: {
|
|
12432
12801
|
type: "string",
|
|
@@ -12465,7 +12834,8 @@ var openapi_default = {
|
|
|
12465
12834
|
"string",
|
|
12466
12835
|
"null"
|
|
12467
12836
|
],
|
|
12468
|
-
format: "date-time"
|
|
12837
|
+
format: "date-time",
|
|
12838
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
12469
12839
|
},
|
|
12470
12840
|
last_delivery_status: {
|
|
12471
12841
|
type: [
|
|
@@ -12475,11 +12845,13 @@ var openapi_default = {
|
|
|
12475
12845
|
},
|
|
12476
12846
|
created_at: {
|
|
12477
12847
|
type: "string",
|
|
12478
|
-
format: "date-time"
|
|
12848
|
+
format: "date-time",
|
|
12849
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
12479
12850
|
},
|
|
12480
12851
|
updated_at: {
|
|
12481
12852
|
type: "string",
|
|
12482
|
-
format: "date-time"
|
|
12853
|
+
format: "date-time",
|
|
12854
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
12483
12855
|
}
|
|
12484
12856
|
}
|
|
12485
12857
|
},
|
|
@@ -12706,11 +13078,13 @@ var openapi_default = {
|
|
|
12706
13078
|
properties: {
|
|
12707
13079
|
id: {
|
|
12708
13080
|
type: "string",
|
|
12709
|
-
format: "uuid"
|
|
13081
|
+
format: "uuid",
|
|
13082
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
12710
13083
|
},
|
|
12711
13084
|
customer_id: {
|
|
12712
13085
|
type: "string",
|
|
12713
|
-
format: "uuid"
|
|
13086
|
+
format: "uuid",
|
|
13087
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
12714
13088
|
},
|
|
12715
13089
|
name: {
|
|
12716
13090
|
type: "string"
|
|
@@ -12724,7 +13098,8 @@ var openapi_default = {
|
|
|
12724
13098
|
},
|
|
12725
13099
|
destination_id: {
|
|
12726
13100
|
type: "string",
|
|
12727
|
-
format: "uuid"
|
|
13101
|
+
format: "uuid",
|
|
13102
|
+
example: "e1f2a3b4-c5d6-7890-efab-901234567890"
|
|
12728
13103
|
},
|
|
12729
13104
|
field_map: {
|
|
12730
13105
|
$ref: "#/components/schemas/FieldMap"
|
|
@@ -12751,11 +13126,13 @@ var openapi_default = {
|
|
|
12751
13126
|
},
|
|
12752
13127
|
created_at: {
|
|
12753
13128
|
type: "string",
|
|
12754
|
-
format: "date-time"
|
|
13129
|
+
format: "date-time",
|
|
13130
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
12755
13131
|
},
|
|
12756
13132
|
updated_at: {
|
|
12757
13133
|
type: "string",
|
|
12758
|
-
format: "date-time"
|
|
13134
|
+
format: "date-time",
|
|
13135
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
12759
13136
|
}
|
|
12760
13137
|
}
|
|
12761
13138
|
},
|
|
@@ -12780,7 +13157,8 @@ var openapi_default = {
|
|
|
12780
13157
|
},
|
|
12781
13158
|
destination_id: {
|
|
12782
13159
|
type: "string",
|
|
12783
|
-
format: "uuid"
|
|
13160
|
+
format: "uuid",
|
|
13161
|
+
example: "e1f2a3b4-c5d6-7890-efab-901234567890"
|
|
12784
13162
|
},
|
|
12785
13163
|
field_map: {
|
|
12786
13164
|
$ref: "#/components/schemas/FieldMap"
|
|
@@ -12815,7 +13193,8 @@ var openapi_default = {
|
|
|
12815
13193
|
},
|
|
12816
13194
|
destination_id: {
|
|
12817
13195
|
type: "string",
|
|
12818
|
-
format: "uuid"
|
|
13196
|
+
format: "uuid",
|
|
13197
|
+
example: "e1f2a3b4-c5d6-7890-efab-901234567890"
|
|
12819
13198
|
},
|
|
12820
13199
|
field_map: {
|
|
12821
13200
|
$ref: "#/components/schemas/FieldMap"
|
|
@@ -12851,15 +13230,18 @@ var openapi_default = {
|
|
|
12851
13230
|
properties: {
|
|
12852
13231
|
id: {
|
|
12853
13232
|
type: "string",
|
|
12854
|
-
format: "uuid"
|
|
13233
|
+
format: "uuid",
|
|
13234
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
12855
13235
|
},
|
|
12856
13236
|
customer_id: {
|
|
12857
13237
|
type: "string",
|
|
12858
|
-
format: "uuid"
|
|
13238
|
+
format: "uuid",
|
|
13239
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
12859
13240
|
},
|
|
12860
13241
|
binding_id: {
|
|
12861
13242
|
type: "string",
|
|
12862
|
-
format: "uuid"
|
|
13243
|
+
format: "uuid",
|
|
13244
|
+
example: "d0e1f2a3-b4c5-6789-defa-890123456789"
|
|
12863
13245
|
},
|
|
12864
13246
|
event_id: {
|
|
12865
13247
|
type: "string",
|
|
@@ -12871,6 +13253,7 @@ var openapi_default = {
|
|
|
12871
13253
|
},
|
|
12872
13254
|
status: {
|
|
12873
13255
|
type: "string",
|
|
13256
|
+
example: "completed",
|
|
12874
13257
|
enum: [
|
|
12875
13258
|
"in_flight",
|
|
12876
13259
|
"succeeded",
|
|
@@ -12922,11 +13305,13 @@ var openapi_default = {
|
|
|
12922
13305
|
"string",
|
|
12923
13306
|
"null"
|
|
12924
13307
|
],
|
|
12925
|
-
format: "date-time"
|
|
13308
|
+
format: "date-time",
|
|
13309
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
12926
13310
|
},
|
|
12927
13311
|
created_at: {
|
|
12928
13312
|
type: "string",
|
|
12929
|
-
format: "date-time"
|
|
13313
|
+
format: "date-time",
|
|
13314
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
12930
13315
|
}
|
|
12931
13316
|
}
|
|
12932
13317
|
},
|
|
@@ -12945,15 +13330,18 @@ var openapi_default = {
|
|
|
12945
13330
|
properties: {
|
|
12946
13331
|
id: {
|
|
12947
13332
|
type: "string",
|
|
12948
|
-
format: "uuid"
|
|
13333
|
+
format: "uuid",
|
|
13334
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
12949
13335
|
},
|
|
12950
13336
|
customer_id: {
|
|
12951
13337
|
type: "string",
|
|
12952
|
-
format: "uuid"
|
|
13338
|
+
format: "uuid",
|
|
13339
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
12953
13340
|
},
|
|
12954
13341
|
binding_id: {
|
|
12955
13342
|
type: "string",
|
|
12956
|
-
format: "uuid"
|
|
13343
|
+
format: "uuid",
|
|
13344
|
+
example: "d0e1f2a3-b4c5-6789-defa-890123456789"
|
|
12957
13345
|
},
|
|
12958
13346
|
event_id: {
|
|
12959
13347
|
type: "string",
|
|
@@ -12965,10 +13353,12 @@ var openapi_default = {
|
|
|
12965
13353
|
"null"
|
|
12966
13354
|
],
|
|
12967
13355
|
format: "uuid",
|
|
13356
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
12968
13357
|
description: "FK to the last DeliveryItem attempt (nullable \u2014 `ON DELETE SET NULL`)."
|
|
12969
13358
|
},
|
|
12970
13359
|
error_code: {
|
|
12971
|
-
type: "string"
|
|
13360
|
+
type: "string",
|
|
13361
|
+
example: "delivery_timeout"
|
|
12972
13362
|
},
|
|
12973
13363
|
error_message: {
|
|
12974
13364
|
type: [
|
|
@@ -12981,7 +13371,8 @@ var openapi_default = {
|
|
|
12981
13371
|
},
|
|
12982
13372
|
created_at: {
|
|
12983
13373
|
type: "string",
|
|
12984
|
-
format: "date-time"
|
|
13374
|
+
format: "date-time",
|
|
13375
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
12985
13376
|
}
|
|
12986
13377
|
}
|
|
12987
13378
|
},
|
|
@@ -13003,7 +13394,8 @@ var openapi_default = {
|
|
|
13003
13394
|
},
|
|
13004
13395
|
customer_id: {
|
|
13005
13396
|
type: "string",
|
|
13006
|
-
format: "uuid"
|
|
13397
|
+
format: "uuid",
|
|
13398
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
13007
13399
|
},
|
|
13008
13400
|
event_type: {
|
|
13009
13401
|
type: "string"
|
|
@@ -13021,14 +13413,16 @@ var openapi_default = {
|
|
|
13021
13413
|
},
|
|
13022
13414
|
created_at: {
|
|
13023
13415
|
type: "string",
|
|
13024
|
-
format: "date-time"
|
|
13416
|
+
format: "date-time",
|
|
13417
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
13025
13418
|
},
|
|
13026
13419
|
processed_at: {
|
|
13027
13420
|
type: [
|
|
13028
13421
|
"string",
|
|
13029
13422
|
"null"
|
|
13030
13423
|
],
|
|
13031
|
-
format: "date-time"
|
|
13424
|
+
format: "date-time",
|
|
13425
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
13032
13426
|
},
|
|
13033
13427
|
processing_attempts: {
|
|
13034
13428
|
type: "integer"
|
|
@@ -13065,6 +13459,7 @@ var openapi_default = {
|
|
|
13065
13459
|
},
|
|
13066
13460
|
label: {
|
|
13067
13461
|
type: "string",
|
|
13462
|
+
example: "Customer Onboarding",
|
|
13068
13463
|
description: 'Short human-readable label, e.g. "Document markdown content". Falls back to `type` if unknown.'
|
|
13069
13464
|
},
|
|
13070
13465
|
description: {
|
|
@@ -13871,6 +14266,7 @@ var openapi_default = {
|
|
|
13871
14266
|
source_id: {
|
|
13872
14267
|
type: "string",
|
|
13873
14268
|
format: "uuid",
|
|
14269
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
|
|
13874
14270
|
description: "Optional source connection UUID to narrow the result set."
|
|
13875
14271
|
},
|
|
13876
14272
|
conditions: {
|
|
@@ -13979,31 +14375,36 @@ var openapi_default = {
|
|
|
13979
14375
|
properties: {
|
|
13980
14376
|
id: {
|
|
13981
14377
|
type: "string",
|
|
13982
|
-
format: "uuid"
|
|
14378
|
+
format: "uuid",
|
|
14379
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
13983
14380
|
},
|
|
13984
14381
|
run_id: {
|
|
13985
14382
|
type: [
|
|
13986
14383
|
"string",
|
|
13987
14384
|
"null"
|
|
13988
14385
|
],
|
|
13989
|
-
format: "uuid"
|
|
14386
|
+
format: "uuid",
|
|
14387
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
13990
14388
|
},
|
|
13991
14389
|
document_id: {
|
|
13992
14390
|
type: [
|
|
13993
14391
|
"string",
|
|
13994
14392
|
"null"
|
|
13995
14393
|
],
|
|
13996
|
-
format: "uuid"
|
|
14394
|
+
format: "uuid",
|
|
14395
|
+
example: "f0e1d2c3-b4a5-9687-8765-432109876543"
|
|
13997
14396
|
},
|
|
13998
14397
|
schema_id: {
|
|
13999
14398
|
type: [
|
|
14000
14399
|
"string",
|
|
14001
14400
|
"null"
|
|
14002
14401
|
],
|
|
14003
|
-
format: "uuid"
|
|
14402
|
+
format: "uuid",
|
|
14403
|
+
example: "b2c3d4e5-f6a7-8901-bcde-f12345678901"
|
|
14004
14404
|
},
|
|
14005
14405
|
status: {
|
|
14006
14406
|
type: "string",
|
|
14407
|
+
example: "completed",
|
|
14007
14408
|
description: "Review status (e.g. `pending`, `approved`, `rejected`)."
|
|
14008
14409
|
},
|
|
14009
14410
|
overall_confidence: {
|
|
@@ -14032,11 +14433,13 @@ var openapi_default = {
|
|
|
14032
14433
|
"string",
|
|
14033
14434
|
"null"
|
|
14034
14435
|
],
|
|
14035
|
-
format: "date-time"
|
|
14436
|
+
format: "date-time",
|
|
14437
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14036
14438
|
},
|
|
14037
14439
|
created_at: {
|
|
14038
14440
|
type: "string",
|
|
14039
|
-
format: "date-time"
|
|
14441
|
+
format: "date-time",
|
|
14442
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14040
14443
|
},
|
|
14041
14444
|
links: {
|
|
14042
14445
|
type: "object",
|
|
@@ -14114,7 +14517,8 @@ var openapi_default = {
|
|
|
14114
14517
|
description: "Non-empty list of validation-record UUIDs.",
|
|
14115
14518
|
items: {
|
|
14116
14519
|
type: "string",
|
|
14117
|
-
format: "uuid"
|
|
14520
|
+
format: "uuid",
|
|
14521
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
14118
14522
|
}
|
|
14119
14523
|
},
|
|
14120
14524
|
action: {
|
|
@@ -14154,10 +14558,12 @@ var openapi_default = {
|
|
|
14154
14558
|
properties: {
|
|
14155
14559
|
id: {
|
|
14156
14560
|
type: "string",
|
|
14157
|
-
format: "uuid"
|
|
14561
|
+
format: "uuid",
|
|
14562
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
14158
14563
|
},
|
|
14159
14564
|
status: {
|
|
14160
14565
|
type: "string",
|
|
14566
|
+
example: "completed",
|
|
14161
14567
|
description: "Per-record outcome (`approved`, `rejected`, or `error`)."
|
|
14162
14568
|
},
|
|
14163
14569
|
error: {
|
|
@@ -14178,7 +14584,8 @@ var openapi_default = {
|
|
|
14178
14584
|
properties: {
|
|
14179
14585
|
id: {
|
|
14180
14586
|
type: "string",
|
|
14181
|
-
format: "uuid"
|
|
14587
|
+
format: "uuid",
|
|
14588
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
14182
14589
|
},
|
|
14183
14590
|
name: {
|
|
14184
14591
|
type: "string"
|
|
@@ -14194,7 +14601,8 @@ var openapi_default = {
|
|
|
14194
14601
|
"string",
|
|
14195
14602
|
"null"
|
|
14196
14603
|
],
|
|
14197
|
-
format: "uuid"
|
|
14604
|
+
format: "uuid",
|
|
14605
|
+
example: "b2c3d4e5-f6a7-8901-bcde-f12345678901"
|
|
14198
14606
|
},
|
|
14199
14607
|
document_count: {
|
|
14200
14608
|
type: [
|
|
@@ -14204,7 +14612,8 @@ var openapi_default = {
|
|
|
14204
14612
|
},
|
|
14205
14613
|
created_at: {
|
|
14206
14614
|
type: "string",
|
|
14207
|
-
format: "date-time"
|
|
14615
|
+
format: "date-time",
|
|
14616
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14208
14617
|
},
|
|
14209
14618
|
links: {
|
|
14210
14619
|
type: "object",
|
|
@@ -14255,14 +14664,16 @@ var openapi_default = {
|
|
|
14255
14664
|
properties: {
|
|
14256
14665
|
id: {
|
|
14257
14666
|
type: "string",
|
|
14258
|
-
format: "uuid"
|
|
14667
|
+
format: "uuid",
|
|
14668
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
14259
14669
|
},
|
|
14260
14670
|
document_id: {
|
|
14261
14671
|
type: [
|
|
14262
14672
|
"string",
|
|
14263
14673
|
"null"
|
|
14264
14674
|
],
|
|
14265
|
-
format: "uuid"
|
|
14675
|
+
format: "uuid",
|
|
14676
|
+
example: "f0e1d2c3-b4a5-9687-8765-432109876543"
|
|
14266
14677
|
},
|
|
14267
14678
|
expected_data: {
|
|
14268
14679
|
type: "object",
|
|
@@ -14277,7 +14688,8 @@ var openapi_default = {
|
|
|
14277
14688
|
},
|
|
14278
14689
|
created_at: {
|
|
14279
14690
|
type: "string",
|
|
14280
|
-
format: "date-time"
|
|
14691
|
+
format: "date-time",
|
|
14692
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14281
14693
|
}
|
|
14282
14694
|
}
|
|
14283
14695
|
},
|
|
@@ -14290,7 +14702,8 @@ var openapi_default = {
|
|
|
14290
14702
|
properties: {
|
|
14291
14703
|
id: {
|
|
14292
14704
|
type: "string",
|
|
14293
|
-
format: "uuid"
|
|
14705
|
+
format: "uuid",
|
|
14706
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
14294
14707
|
},
|
|
14295
14708
|
name: {
|
|
14296
14709
|
type: [
|
|
@@ -14303,17 +14716,20 @@ var openapi_default = {
|
|
|
14303
14716
|
"string",
|
|
14304
14717
|
"null"
|
|
14305
14718
|
],
|
|
14306
|
-
format: "uuid"
|
|
14719
|
+
format: "uuid",
|
|
14720
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
14307
14721
|
},
|
|
14308
14722
|
user_schema_id: {
|
|
14309
14723
|
type: [
|
|
14310
14724
|
"string",
|
|
14311
14725
|
"null"
|
|
14312
14726
|
],
|
|
14313
|
-
format: "uuid"
|
|
14727
|
+
format: "uuid",
|
|
14728
|
+
example: "b2c3d4e5-f6a7-8901-bcde-f12345678901"
|
|
14314
14729
|
},
|
|
14315
14730
|
status: {
|
|
14316
14731
|
type: "string",
|
|
14732
|
+
example: "completed",
|
|
14317
14733
|
description: "Benchmark run status."
|
|
14318
14734
|
},
|
|
14319
14735
|
accuracy_overall: {
|
|
@@ -14366,18 +14782,21 @@ var openapi_default = {
|
|
|
14366
14782
|
"string",
|
|
14367
14783
|
"null"
|
|
14368
14784
|
],
|
|
14369
|
-
format: "uuid"
|
|
14785
|
+
format: "uuid",
|
|
14786
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
14370
14787
|
},
|
|
14371
14788
|
created_at: {
|
|
14372
14789
|
type: "string",
|
|
14373
|
-
format: "date-time"
|
|
14790
|
+
format: "date-time",
|
|
14791
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14374
14792
|
},
|
|
14375
14793
|
completed_at: {
|
|
14376
14794
|
type: [
|
|
14377
14795
|
"string",
|
|
14378
14796
|
"null"
|
|
14379
14797
|
],
|
|
14380
|
-
format: "date-time"
|
|
14798
|
+
format: "date-time",
|
|
14799
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14381
14800
|
},
|
|
14382
14801
|
links: {
|
|
14383
14802
|
type: "object",
|
|
@@ -14415,21 +14834,24 @@ var openapi_default = {
|
|
|
14415
14834
|
properties: {
|
|
14416
14835
|
id: {
|
|
14417
14836
|
type: "string",
|
|
14418
|
-
format: "uuid"
|
|
14837
|
+
format: "uuid",
|
|
14838
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
14419
14839
|
},
|
|
14420
14840
|
document_id: {
|
|
14421
14841
|
type: [
|
|
14422
14842
|
"string",
|
|
14423
14843
|
"null"
|
|
14424
14844
|
],
|
|
14425
|
-
format: "uuid"
|
|
14845
|
+
format: "uuid",
|
|
14846
|
+
example: "f0e1d2c3-b4a5-9687-8765-432109876543"
|
|
14426
14847
|
},
|
|
14427
14848
|
ground_truth_entry_id: {
|
|
14428
14849
|
type: [
|
|
14429
14850
|
"string",
|
|
14430
14851
|
"null"
|
|
14431
14852
|
],
|
|
14432
|
-
format: "uuid"
|
|
14853
|
+
format: "uuid",
|
|
14854
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
14433
14855
|
},
|
|
14434
14856
|
accuracy: {
|
|
14435
14857
|
type: [
|
|
@@ -14447,7 +14869,8 @@ var openapi_default = {
|
|
|
14447
14869
|
},
|
|
14448
14870
|
created_at: {
|
|
14449
14871
|
type: "string",
|
|
14450
|
-
format: "date-time"
|
|
14872
|
+
format: "date-time",
|
|
14873
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14451
14874
|
}
|
|
14452
14875
|
}
|
|
14453
14876
|
},
|
|
@@ -14467,10 +14890,12 @@ var openapi_default = {
|
|
|
14467
14890
|
properties: {
|
|
14468
14891
|
id: {
|
|
14469
14892
|
type: "string",
|
|
14470
|
-
format: "uuid"
|
|
14893
|
+
format: "uuid",
|
|
14894
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
14471
14895
|
},
|
|
14472
14896
|
status: {
|
|
14473
14897
|
type: "string",
|
|
14898
|
+
example: "completed",
|
|
14474
14899
|
enum: [
|
|
14475
14900
|
"accumulating",
|
|
14476
14901
|
"submitted",
|
|
@@ -14482,6 +14907,7 @@ var openapi_default = {
|
|
|
14482
14907
|
},
|
|
14483
14908
|
provider: {
|
|
14484
14909
|
type: "string",
|
|
14910
|
+
example: "anthropic",
|
|
14485
14911
|
enum: [
|
|
14486
14912
|
"anthropic",
|
|
14487
14913
|
"bedrock"
|
|
@@ -14504,14 +14930,16 @@ var openapi_default = {
|
|
|
14504
14930
|
"string",
|
|
14505
14931
|
"null"
|
|
14506
14932
|
],
|
|
14507
|
-
format: "date-time"
|
|
14933
|
+
format: "date-time",
|
|
14934
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14508
14935
|
},
|
|
14509
14936
|
completed_at: {
|
|
14510
14937
|
type: [
|
|
14511
14938
|
"string",
|
|
14512
14939
|
"null"
|
|
14513
14940
|
],
|
|
14514
|
-
format: "date-time"
|
|
14941
|
+
format: "date-time",
|
|
14942
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14515
14943
|
},
|
|
14516
14944
|
error_message: {
|
|
14517
14945
|
type: [
|
|
@@ -14521,11 +14949,13 @@ var openapi_default = {
|
|
|
14521
14949
|
},
|
|
14522
14950
|
created_at: {
|
|
14523
14951
|
type: "string",
|
|
14524
|
-
format: "date-time"
|
|
14952
|
+
format: "date-time",
|
|
14953
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14525
14954
|
},
|
|
14526
14955
|
updated_at: {
|
|
14527
14956
|
type: "string",
|
|
14528
|
-
format: "date-time"
|
|
14957
|
+
format: "date-time",
|
|
14958
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14529
14959
|
},
|
|
14530
14960
|
links: {
|
|
14531
14961
|
type: "object",
|
|
@@ -14558,11 +14988,13 @@ var openapi_default = {
|
|
|
14558
14988
|
properties: {
|
|
14559
14989
|
id: {
|
|
14560
14990
|
type: "string",
|
|
14561
|
-
format: "uuid"
|
|
14991
|
+
format: "uuid",
|
|
14992
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
14562
14993
|
},
|
|
14563
14994
|
document_id: {
|
|
14564
14995
|
type: "string",
|
|
14565
|
-
format: "uuid"
|
|
14996
|
+
format: "uuid",
|
|
14997
|
+
example: "f0e1d2c3-b4a5-9687-8765-432109876543"
|
|
14566
14998
|
},
|
|
14567
14999
|
document_filename: {
|
|
14568
15000
|
type: [
|
|
@@ -14577,7 +15009,8 @@ var openapi_default = {
|
|
|
14577
15009
|
]
|
|
14578
15010
|
},
|
|
14579
15011
|
status: {
|
|
14580
|
-
type: "string"
|
|
15012
|
+
type: "string",
|
|
15013
|
+
example: "completed"
|
|
14581
15014
|
},
|
|
14582
15015
|
error_message: {
|
|
14583
15016
|
type: [
|
|
@@ -14587,14 +15020,16 @@ var openapi_default = {
|
|
|
14587
15020
|
},
|
|
14588
15021
|
created_at: {
|
|
14589
15022
|
type: "string",
|
|
14590
|
-
format: "date-time"
|
|
15023
|
+
format: "date-time",
|
|
15024
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14591
15025
|
},
|
|
14592
15026
|
processed_at: {
|
|
14593
15027
|
type: [
|
|
14594
15028
|
"string",
|
|
14595
15029
|
"null"
|
|
14596
15030
|
],
|
|
14597
|
-
format: "date-time"
|
|
15031
|
+
format: "date-time",
|
|
15032
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14598
15033
|
}
|
|
14599
15034
|
}
|
|
14600
15035
|
}
|
|
@@ -14619,6 +15054,7 @@ var openapi_default = {
|
|
|
14619
15054
|
},
|
|
14620
15055
|
case_key: {
|
|
14621
15056
|
type: "string",
|
|
15057
|
+
example: "7a3f2b1c",
|
|
14622
15058
|
pattern: "^[a-fA-F0-9]{8,64}$"
|
|
14623
15059
|
},
|
|
14624
15060
|
label: {
|
|
@@ -14635,7 +15071,8 @@ var openapi_default = {
|
|
|
14635
15071
|
"string",
|
|
14636
15072
|
"null"
|
|
14637
15073
|
],
|
|
14638
|
-
format: "date-time"
|
|
15074
|
+
format: "date-time",
|
|
15075
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14639
15076
|
},
|
|
14640
15077
|
links: {
|
|
14641
15078
|
type: "object",
|
|
@@ -14661,7 +15098,8 @@ var openapi_default = {
|
|
|
14661
15098
|
type: "string"
|
|
14662
15099
|
},
|
|
14663
15100
|
case_key: {
|
|
14664
|
-
type: "string"
|
|
15101
|
+
type: "string",
|
|
15102
|
+
example: "7a3f2b1c"
|
|
14665
15103
|
},
|
|
14666
15104
|
label: {
|
|
14667
15105
|
type: [
|
|
@@ -14682,10 +15120,12 @@ var openapi_default = {
|
|
|
14682
15120
|
properties: {
|
|
14683
15121
|
id: {
|
|
14684
15122
|
type: "string",
|
|
14685
|
-
format: "uuid"
|
|
15123
|
+
format: "uuid",
|
|
15124
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
14686
15125
|
},
|
|
14687
15126
|
filename: {
|
|
14688
|
-
type: "string"
|
|
15127
|
+
type: "string",
|
|
15128
|
+
example: "invoice-042.pdf"
|
|
14689
15129
|
},
|
|
14690
15130
|
document_type: {
|
|
14691
15131
|
type: [
|
|
@@ -14698,7 +15138,8 @@ var openapi_default = {
|
|
|
14698
15138
|
"string",
|
|
14699
15139
|
"null"
|
|
14700
15140
|
],
|
|
14701
|
-
format: "date-time"
|
|
15141
|
+
format: "date-time",
|
|
15142
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14702
15143
|
}
|
|
14703
15144
|
}
|
|
14704
15145
|
}
|
|
@@ -14711,7 +15152,8 @@ var openapi_default = {
|
|
|
14711
15152
|
"string",
|
|
14712
15153
|
"null"
|
|
14713
15154
|
],
|
|
14714
|
-
format: "date-time"
|
|
15155
|
+
format: "date-time",
|
|
15156
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14715
15157
|
},
|
|
14716
15158
|
links: {
|
|
14717
15159
|
type: "object",
|
|
@@ -14737,7 +15179,8 @@ var openapi_default = {
|
|
|
14737
15179
|
properties: {
|
|
14738
15180
|
id: {
|
|
14739
15181
|
type: "string",
|
|
14740
|
-
format: "uuid"
|
|
15182
|
+
format: "uuid",
|
|
15183
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
14741
15184
|
},
|
|
14742
15185
|
name: {
|
|
14743
15186
|
type: "string"
|
|
@@ -14781,10 +15224,12 @@ var openapi_default = {
|
|
|
14781
15224
|
properties: {
|
|
14782
15225
|
id: {
|
|
14783
15226
|
type: "string",
|
|
14784
|
-
format: "uuid"
|
|
15227
|
+
format: "uuid",
|
|
15228
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
14785
15229
|
},
|
|
14786
15230
|
canonical_name: {
|
|
14787
|
-
type: "string"
|
|
15231
|
+
type: "string",
|
|
15232
|
+
example: "invoice_number"
|
|
14788
15233
|
},
|
|
14789
15234
|
display_name: {
|
|
14790
15235
|
type: [
|
|
@@ -14793,7 +15238,8 @@ var openapi_default = {
|
|
|
14793
15238
|
]
|
|
14794
15239
|
},
|
|
14795
15240
|
data_type: {
|
|
14796
|
-
type: "string"
|
|
15241
|
+
type: "string",
|
|
15242
|
+
example: "string"
|
|
14797
15243
|
},
|
|
14798
15244
|
tier: {
|
|
14799
15245
|
type: "integer"
|
|
@@ -14815,11 +15261,13 @@ var openapi_default = {
|
|
|
14815
15261
|
},
|
|
14816
15262
|
created_at: {
|
|
14817
15263
|
type: "string",
|
|
14818
|
-
format: "date-time"
|
|
15264
|
+
format: "date-time",
|
|
15265
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14819
15266
|
},
|
|
14820
15267
|
updated_at: {
|
|
14821
15268
|
type: "string",
|
|
14822
|
-
format: "date-time"
|
|
15269
|
+
format: "date-time",
|
|
15270
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14823
15271
|
},
|
|
14824
15272
|
links: {
|
|
14825
15273
|
type: "object",
|
|
@@ -14850,11 +15298,13 @@ var openapi_default = {
|
|
|
14850
15298
|
properties: {
|
|
14851
15299
|
id: {
|
|
14852
15300
|
type: "string",
|
|
14853
|
-
format: "uuid"
|
|
15301
|
+
format: "uuid",
|
|
15302
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
14854
15303
|
},
|
|
14855
15304
|
document_id: {
|
|
14856
15305
|
type: "string",
|
|
14857
|
-
format: "uuid"
|
|
15306
|
+
format: "uuid",
|
|
15307
|
+
example: "f0e1d2c3-b4a5-9687-8765-432109876543"
|
|
14858
15308
|
},
|
|
14859
15309
|
document_filename: {
|
|
14860
15310
|
type: [
|
|
@@ -14873,7 +15323,8 @@ var openapi_default = {
|
|
|
14873
15323
|
},
|
|
14874
15324
|
created_at: {
|
|
14875
15325
|
type: "string",
|
|
14876
|
-
format: "date-time"
|
|
15326
|
+
format: "date-time",
|
|
15327
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14877
15328
|
}
|
|
14878
15329
|
}
|
|
14879
15330
|
}
|
|
@@ -14897,10 +15348,12 @@ var openapi_default = {
|
|
|
14897
15348
|
properties: {
|
|
14898
15349
|
id: {
|
|
14899
15350
|
type: "string",
|
|
14900
|
-
format: "uuid"
|
|
15351
|
+
format: "uuid",
|
|
15352
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
14901
15353
|
},
|
|
14902
15354
|
canonical_name: {
|
|
14903
|
-
type: "string"
|
|
15355
|
+
type: "string",
|
|
15356
|
+
example: "invoice_number"
|
|
14904
15357
|
},
|
|
14905
15358
|
display_name: {
|
|
14906
15359
|
type: [
|
|
@@ -14909,7 +15362,8 @@ var openapi_default = {
|
|
|
14909
15362
|
]
|
|
14910
15363
|
},
|
|
14911
15364
|
data_type: {
|
|
14912
|
-
type: "string"
|
|
15365
|
+
type: "string",
|
|
15366
|
+
example: "string"
|
|
14913
15367
|
},
|
|
14914
15368
|
tier: {
|
|
14915
15369
|
type: "integer"
|
|
@@ -14956,7 +15410,8 @@ var openapi_default = {
|
|
|
14956
15410
|
properties: {
|
|
14957
15411
|
id: {
|
|
14958
15412
|
type: "string",
|
|
14959
|
-
format: "uuid"
|
|
15413
|
+
format: "uuid",
|
|
15414
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
14960
15415
|
},
|
|
14961
15416
|
name: {
|
|
14962
15417
|
type: "string"
|
|
@@ -14973,7 +15428,8 @@ var openapi_default = {
|
|
|
14973
15428
|
},
|
|
14974
15429
|
created_at: {
|
|
14975
15430
|
type: "string",
|
|
14976
|
-
format: "date-time"
|
|
15431
|
+
format: "date-time",
|
|
15432
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
14977
15433
|
},
|
|
14978
15434
|
links: {
|
|
14979
15435
|
type: "object",
|
|
@@ -15006,11 +15462,13 @@ var openapi_default = {
|
|
|
15006
15462
|
properties: {
|
|
15007
15463
|
from: {
|
|
15008
15464
|
type: "string",
|
|
15009
|
-
format: "date-time"
|
|
15465
|
+
format: "date-time",
|
|
15466
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
15010
15467
|
},
|
|
15011
15468
|
to: {
|
|
15012
15469
|
type: "string",
|
|
15013
|
-
format: "date-time"
|
|
15470
|
+
format: "date-time",
|
|
15471
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
15014
15472
|
}
|
|
15015
15473
|
}
|
|
15016
15474
|
},
|
|
@@ -15084,7 +15542,8 @@ var openapi_default = {
|
|
|
15084
15542
|
properties: {
|
|
15085
15543
|
document_id: {
|
|
15086
15544
|
type: "string",
|
|
15087
|
-
format: "uuid"
|
|
15545
|
+
format: "uuid",
|
|
15546
|
+
example: "f0e1d2c3-b4a5-9687-8765-432109876543"
|
|
15088
15547
|
},
|
|
15089
15548
|
totals: {
|
|
15090
15549
|
type: "object",
|
|
@@ -15150,7 +15609,8 @@ var openapi_default = {
|
|
|
15150
15609
|
},
|
|
15151
15610
|
created_at: {
|
|
15152
15611
|
type: "string",
|
|
15153
|
-
format: "date-time"
|
|
15612
|
+
format: "date-time",
|
|
15613
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
15154
15614
|
}
|
|
15155
15615
|
}
|
|
15156
15616
|
}
|
|
@@ -15179,14 +15639,17 @@ var openapi_default = {
|
|
|
15179
15639
|
properties: {
|
|
15180
15640
|
id: {
|
|
15181
15641
|
type: "string",
|
|
15182
|
-
format: "uuid"
|
|
15642
|
+
format: "uuid",
|
|
15643
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
15183
15644
|
},
|
|
15184
15645
|
source_run_id: {
|
|
15185
15646
|
type: "string",
|
|
15186
|
-
format: "uuid"
|
|
15647
|
+
format: "uuid",
|
|
15648
|
+
example: "f2a3b4c5-d6e7-8901-fabc-012345678901"
|
|
15187
15649
|
},
|
|
15188
15650
|
status: {
|
|
15189
15651
|
type: "string",
|
|
15652
|
+
example: "completed",
|
|
15190
15653
|
enum: [
|
|
15191
15654
|
"pending",
|
|
15192
15655
|
"running",
|
|
@@ -15202,14 +15665,16 @@ var openapi_default = {
|
|
|
15202
15665
|
},
|
|
15203
15666
|
created_at: {
|
|
15204
15667
|
type: "string",
|
|
15205
|
-
format: "date-time"
|
|
15668
|
+
format: "date-time",
|
|
15669
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
15206
15670
|
},
|
|
15207
15671
|
completed_at: {
|
|
15208
15672
|
type: [
|
|
15209
15673
|
"string",
|
|
15210
15674
|
"null"
|
|
15211
15675
|
],
|
|
15212
|
-
format: "date-time"
|
|
15676
|
+
format: "date-time",
|
|
15677
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
15213
15678
|
},
|
|
15214
15679
|
links: {
|
|
15215
15680
|
type: "object",
|
|
@@ -15232,10 +15697,12 @@ var openapi_default = {
|
|
|
15232
15697
|
],
|
|
15233
15698
|
properties: {
|
|
15234
15699
|
field_name: {
|
|
15235
|
-
type: "string"
|
|
15700
|
+
type: "string",
|
|
15701
|
+
example: "invoice_number"
|
|
15236
15702
|
},
|
|
15237
15703
|
category: {
|
|
15238
15704
|
type: "string",
|
|
15705
|
+
example: "identity",
|
|
15239
15706
|
enum: [
|
|
15240
15707
|
"identity",
|
|
15241
15708
|
"transaction",
|
|
@@ -15267,7 +15734,8 @@ var openapi_default = {
|
|
|
15267
15734
|
properties: {
|
|
15268
15735
|
id: {
|
|
15269
15736
|
type: "string",
|
|
15270
|
-
format: "uuid"
|
|
15737
|
+
format: "uuid",
|
|
15738
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
15271
15739
|
},
|
|
15272
15740
|
name: {
|
|
15273
15741
|
type: "string"
|
|
@@ -15286,11 +15754,13 @@ var openapi_default = {
|
|
|
15286
15754
|
},
|
|
15287
15755
|
created_at: {
|
|
15288
15756
|
type: "string",
|
|
15289
|
-
format: "date-time"
|
|
15757
|
+
format: "date-time",
|
|
15758
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
15290
15759
|
},
|
|
15291
15760
|
updated_at: {
|
|
15292
15761
|
type: "string",
|
|
15293
|
-
format: "date-time"
|
|
15762
|
+
format: "date-time",
|
|
15763
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
15294
15764
|
},
|
|
15295
15765
|
links: {
|
|
15296
15766
|
type: "object",
|
|
@@ -15316,11 +15786,13 @@ var openapi_default = {
|
|
|
15316
15786
|
properties: {
|
|
15317
15787
|
id: {
|
|
15318
15788
|
type: "string",
|
|
15319
|
-
format: "uuid"
|
|
15789
|
+
format: "uuid",
|
|
15790
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
15320
15791
|
},
|
|
15321
15792
|
class_id: {
|
|
15322
15793
|
type: "string",
|
|
15323
|
-
format: "uuid"
|
|
15794
|
+
format: "uuid",
|
|
15795
|
+
example: "a7b8c9d0-e1f2-3456-abcd-567890123456"
|
|
15324
15796
|
},
|
|
15325
15797
|
from_version: {
|
|
15326
15798
|
type: [
|
|
@@ -15336,6 +15808,7 @@ var openapi_default = {
|
|
|
15336
15808
|
},
|
|
15337
15809
|
status: {
|
|
15338
15810
|
type: "string",
|
|
15811
|
+
example: "completed",
|
|
15339
15812
|
enum: [
|
|
15340
15813
|
"pending",
|
|
15341
15814
|
"approved",
|
|
@@ -15352,14 +15825,16 @@ var openapi_default = {
|
|
|
15352
15825
|
},
|
|
15353
15826
|
created_at: {
|
|
15354
15827
|
type: "string",
|
|
15355
|
-
format: "date-time"
|
|
15828
|
+
format: "date-time",
|
|
15829
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
15356
15830
|
},
|
|
15357
15831
|
decided_at: {
|
|
15358
15832
|
type: [
|
|
15359
15833
|
"string",
|
|
15360
15834
|
"null"
|
|
15361
15835
|
],
|
|
15362
|
-
format: "date-time"
|
|
15836
|
+
format: "date-time",
|
|
15837
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
15363
15838
|
}
|
|
15364
15839
|
}
|
|
15365
15840
|
},
|
|
@@ -15374,7 +15849,8 @@ var openapi_default = {
|
|
|
15374
15849
|
properties: {
|
|
15375
15850
|
id: {
|
|
15376
15851
|
type: "string",
|
|
15377
|
-
format: "uuid"
|
|
15852
|
+
format: "uuid",
|
|
15853
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
15378
15854
|
},
|
|
15379
15855
|
name: {
|
|
15380
15856
|
type: "string"
|
|
@@ -15398,11 +15874,13 @@ var openapi_default = {
|
|
|
15398
15874
|
},
|
|
15399
15875
|
created_at: {
|
|
15400
15876
|
type: "string",
|
|
15401
|
-
format: "date-time"
|
|
15877
|
+
format: "date-time",
|
|
15878
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
15402
15879
|
},
|
|
15403
15880
|
updated_at: {
|
|
15404
15881
|
type: "string",
|
|
15405
|
-
format: "date-time"
|
|
15882
|
+
format: "date-time",
|
|
15883
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
15406
15884
|
}
|
|
15407
15885
|
}
|
|
15408
15886
|
},
|
|
@@ -15444,7 +15922,8 @@ var openapi_default = {
|
|
|
15444
15922
|
properties: {
|
|
15445
15923
|
id: {
|
|
15446
15924
|
type: "string",
|
|
15447
|
-
format: "uuid"
|
|
15925
|
+
format: "uuid",
|
|
15926
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
15448
15927
|
},
|
|
15449
15928
|
name: {
|
|
15450
15929
|
type: "string"
|
|
@@ -15460,7 +15939,8 @@ var openapi_default = {
|
|
|
15460
15939
|
"string",
|
|
15461
15940
|
"null"
|
|
15462
15941
|
],
|
|
15463
|
-
format: "uuid"
|
|
15942
|
+
format: "uuid",
|
|
15943
|
+
example: "b2c3d4e5-f6a7-8901-bcde-f12345678901"
|
|
15464
15944
|
},
|
|
15465
15945
|
rules: {
|
|
15466
15946
|
type: "array",
|
|
@@ -15469,7 +15949,8 @@ var openapi_default = {
|
|
|
15469
15949
|
properties: {
|
|
15470
15950
|
id: {
|
|
15471
15951
|
type: "string",
|
|
15472
|
-
format: "uuid"
|
|
15952
|
+
format: "uuid",
|
|
15953
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
15473
15954
|
},
|
|
15474
15955
|
type: {
|
|
15475
15956
|
type: "string"
|
|
@@ -15483,11 +15964,13 @@ var openapi_default = {
|
|
|
15483
15964
|
},
|
|
15484
15965
|
created_at: {
|
|
15485
15966
|
type: "string",
|
|
15486
|
-
format: "date-time"
|
|
15967
|
+
format: "date-time",
|
|
15968
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
15487
15969
|
},
|
|
15488
15970
|
updated_at: {
|
|
15489
15971
|
type: "string",
|
|
15490
|
-
format: "date-time"
|
|
15972
|
+
format: "date-time",
|
|
15973
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
15491
15974
|
}
|
|
15492
15975
|
}
|
|
15493
15976
|
},
|
|
@@ -15505,7 +15988,8 @@ var openapi_default = {
|
|
|
15505
15988
|
},
|
|
15506
15989
|
schema_id: {
|
|
15507
15990
|
type: "string",
|
|
15508
|
-
format: "uuid"
|
|
15991
|
+
format: "uuid",
|
|
15992
|
+
example: "b2c3d4e5-f6a7-8901-bcde-f12345678901"
|
|
15509
15993
|
}
|
|
15510
15994
|
}
|
|
15511
15995
|
},
|
|
@@ -15519,7 +16003,8 @@ var openapi_default = {
|
|
|
15519
16003
|
properties: {
|
|
15520
16004
|
id: {
|
|
15521
16005
|
type: "string",
|
|
15522
|
-
format: "uuid"
|
|
16006
|
+
format: "uuid",
|
|
16007
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
15523
16008
|
},
|
|
15524
16009
|
name: {
|
|
15525
16010
|
type: "string"
|
|
@@ -15538,7 +16023,8 @@ var openapi_default = {
|
|
|
15538
16023
|
},
|
|
15539
16024
|
created_at: {
|
|
15540
16025
|
type: "string",
|
|
15541
|
-
format: "date-time"
|
|
16026
|
+
format: "date-time",
|
|
16027
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
15542
16028
|
},
|
|
15543
16029
|
links: {
|
|
15544
16030
|
type: "object",
|
|
@@ -15560,21 +16046,25 @@ var openapi_default = {
|
|
|
15560
16046
|
properties: {
|
|
15561
16047
|
id: {
|
|
15562
16048
|
type: "string",
|
|
15563
|
-
format: "uuid"
|
|
16049
|
+
format: "uuid",
|
|
16050
|
+
example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
|
|
15564
16051
|
},
|
|
15565
16052
|
golden_sample_id: {
|
|
15566
16053
|
type: "string",
|
|
15567
|
-
format: "uuid"
|
|
16054
|
+
format: "uuid",
|
|
16055
|
+
example: "e5f6a7b8-c9d0-1234-efab-345678901234"
|
|
15568
16056
|
},
|
|
15569
16057
|
schema_id: {
|
|
15570
16058
|
type: [
|
|
15571
16059
|
"string",
|
|
15572
16060
|
"null"
|
|
15573
16061
|
],
|
|
15574
|
-
format: "uuid"
|
|
16062
|
+
format: "uuid",
|
|
16063
|
+
example: "b2c3d4e5-f6a7-8901-bcde-f12345678901"
|
|
15575
16064
|
},
|
|
15576
16065
|
status: {
|
|
15577
16066
|
type: "string",
|
|
16067
|
+
example: "completed",
|
|
15578
16068
|
enum: [
|
|
15579
16069
|
"pending",
|
|
15580
16070
|
"running",
|
|
@@ -15597,14 +16087,16 @@ var openapi_default = {
|
|
|
15597
16087
|
},
|
|
15598
16088
|
created_at: {
|
|
15599
16089
|
type: "string",
|
|
15600
|
-
format: "date-time"
|
|
16090
|
+
format: "date-time",
|
|
16091
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
15601
16092
|
},
|
|
15602
16093
|
completed_at: {
|
|
15603
16094
|
type: [
|
|
15604
16095
|
"string",
|
|
15605
16096
|
"null"
|
|
15606
16097
|
],
|
|
15607
|
-
format: "date-time"
|
|
16098
|
+
format: "date-time",
|
|
16099
|
+
example: "2026-04-25T14:30:00.000Z"
|
|
15608
16100
|
},
|
|
15609
16101
|
links: {
|
|
15610
16102
|
type: "object",
|