File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed
airbyte_cdk/manifest_server Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change @@ -296,6 +296,10 @@ components:
296
296
$ref : ' #/components/schemas/Manifest'
297
297
config :
298
298
$ref : ' #/components/schemas/ConnectorConfig'
299
+ context :
300
+ anyOf :
301
+ - $ref : ' #/components/schemas/RequestContext'
302
+ - type : ' null'
299
303
type : object
300
304
required :
301
305
- manifest
@@ -330,6 +334,10 @@ components:
330
334
$ref : ' #/components/schemas/Manifest'
331
335
config :
332
336
$ref : ' #/components/schemas/ConnectorConfig'
337
+ context :
338
+ anyOf :
339
+ - $ref : ' #/components/schemas/RequestContext'
340
+ - type : ' null'
333
341
type : object
334
342
required :
335
343
- manifest
@@ -357,6 +365,10 @@ components:
357
365
minimum : 1.0
358
366
title : Stream Limit
359
367
default : 100
368
+ context :
369
+ anyOf :
370
+ - $ref : ' #/components/schemas/RequestContext'
371
+ - type : ' null'
360
372
type : object
361
373
required :
362
374
- manifest
@@ -457,10 +469,29 @@ components:
457
469
- manifest
458
470
title : ManifestResponse
459
471
description : Response containing a manifest.
472
+ RequestContext :
473
+ properties :
474
+ workspace_id :
475
+ anyOf :
476
+ - type : string
477
+ - type : ' null'
478
+ title : Workspace Id
479
+ project_id :
480
+ anyOf :
481
+ - type : string
482
+ - type : ' null'
483
+ title : Project Id
484
+ type : object
485
+ title : RequestContext
486
+ description : Optional context information for tracing and observability.
460
487
ResolveRequest :
461
488
properties :
462
489
manifest :
463
490
$ref : ' #/components/schemas/Manifest'
491
+ context :
492
+ anyOf :
493
+ - $ref : ' #/components/schemas/RequestContext'
494
+ - type : ' null'
464
495
type : object
465
496
required :
466
497
- manifest
@@ -542,6 +573,7 @@ components:
542
573
title : Pages
543
574
slice_descriptor :
544
575
anyOf :
576
+ - type : object
545
577
- type : string
546
578
- type : ' null'
547
579
title : Slice Descriptor
@@ -601,6 +633,10 @@ components:
601
633
minimum : 1.0
602
634
title : Slice Limit
603
635
default : 5
636
+ context :
637
+ anyOf :
638
+ - $ref : ' #/components/schemas/RequestContext'
639
+ - type : ' null'
604
640
type : object
605
641
required :
606
642
- manifest
You can’t perform that action at this time.
0 commit comments