File tree Expand file tree Collapse file tree 3 files changed +11
-43
lines changed
specs/ingestion/common/schemas Expand file tree Collapse file tree 3 files changed +11
-43
lines changed Original file line number Diff line number Diff line change @@ -452,10 +452,6 @@ SourceUpdateInput:
452
452
- $ref : ' #/SourceUpdateDocker'
453
453
- $ref : ' #/SourceUpdateShopify'
454
454
455
- DockerSourceStream :
456
- type : object
457
- description : Stream definition (see the Singer specification for details).
458
-
459
455
SourceUpdateShopify :
460
456
title : Shopify
461
457
type : object
Original file line number Diff line number Diff line change @@ -140,9 +140,8 @@ ActionType:
140
140
TaskInput :
141
141
description : Configuration of the task, depending on its type.
142
142
oneOf :
143
- - $ref : ' #/OnDemandDateUtilsInput'
144
- - $ref : ' #/ScheduleDateUtilsInput'
145
- - $ref : ' #/StreamingUtilsInput'
143
+ - $ref : ' #/StreamingInput'
144
+ - $ref : ' #/DockerStreamsInput'
146
145
- $ref : ' #/ShopifyInput'
147
146
148
147
TriggerInput :
@@ -359,50 +358,25 @@ MappingInput:
359
358
- format
360
359
- actions
361
360
362
- OnDemandDateUtilsInput :
363
- title : On demand date range
364
- type : object
365
- additionalProperties : false
366
- description : Input for a manually-triggered task whose source is of type `bigquery` and for which extracted data spans a given time range.
367
- properties :
368
- startDate :
369
- description : Earliest date in RFC 3339 format of the extracted data from Big Query.
370
- type : string
371
- endDate :
372
- description : Latest date in RFC 3339 format of the extracted data from Big Query.
373
- type : string
374
- mapping :
375
- $ref : ' #/MappingInput'
376
- required :
377
- - startDate
378
- - endDate
379
-
380
- ScheduleDateUtilsInput :
381
- title : Schedule dates
361
+ StreamingInput :
362
+ title : Streaming input
382
363
type : object
383
364
additionalProperties : false
384
- description : Input for scheduled tasks whose source is of type `bigquery ` and for which extracted data spans a fixed number of days .
365
+ description : Input for a `streaming` task whose source is of type `ga4BigqueryExport ` and for which extracted data is continuously streamed .
385
366
properties :
386
- timeframe :
387
- description : Number of days in the past until the current day for which to extract Big Query data.
388
- type : integer
389
- minimum : 1
390
- maximum : 30
391
367
mapping :
392
368
$ref : ' #/MappingInput'
393
369
required :
394
- - timeframe
370
+ - mapping
395
371
396
- StreamingUtilsInput :
397
- title : Streaming input
372
+ DockerStreamsInput :
373
+ title : The selected streams of a singer or airbyte connector.
398
374
type : object
399
- additionalProperties : false
400
- description : Input for a `streaming` task whose source is of type `ga4BigqueryExport` and for which extracted data is continuously streamed.
401
375
properties :
402
- mapping :
403
- $ref : ' #/MappingInput '
376
+ streams :
377
+ type : object
404
378
required :
405
- - mapping
379
+ - streams
406
380
407
381
failureThreshold :
408
382
type : integer
Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ Transformation:
18
18
- transformationID
19
19
- code
20
20
- name
21
- - description
22
21
- createdAt
23
22
24
23
Code :
@@ -47,7 +46,6 @@ TransformationCreate:
47
46
required :
48
47
- code
49
48
- name
50
- - description
51
49
52
50
TransformationCreateResponse :
53
51
type : object
You can’t perform that action at this time.
0 commit comments