forked from airbytehq/airbyte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsource_specs.yaml
11656 lines (11656 loc) · 415 KB
/
source_specs.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by io.airbyte.config.specs.SeedConnectorSpecGenerator.
# Do NOT edit this file directly. See generator class for more details.
---
- dockerImage: "airbyte/source-airtable:0.1.2"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/airtable"
connectionSpecification:
$schema: "http://json-schema.org/draft-07/schema#"
title: "Airtable Source Spec"
type: "object"
required:
- "api_key"
- "base_id"
- "tables"
additionalProperties: false
properties:
api_key:
type: "string"
description: "The API Key for the Airtable account. See the <a href=\"https://support.airtable.com/hc/en-us/articles/219046777-How-do-I-get-my-API-key-\"\
>Support Guide</a> for more information on how to obtain this key."
title: "API Key"
airbyte_secret: true
examples:
- "key1234567890"
base_id:
type: "string"
description: "The Base ID to integrate the data from. You can find the Base\
\ ID following the link <a href=\"https://airtable.com/api\">Airtable\
\ API</a>, log in to your account, select the base you need and find Base\
\ ID in the docs."
title: "Base ID"
examples:
- "app1234567890"
tables:
type: "array"
items:
type: "string"
description: "The list of Tables to integrate."
title: "Tables"
examples:
- "table 1"
- "table 2"
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-aws-cloudtrail:0.1.4"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/aws-cloudtrail"
connectionSpecification:
$schema: "http://json-schema.org/draft-07/schema#"
title: "Aws CloudTrail Spec"
type: "object"
required:
- "aws_key_id"
- "aws_secret_key"
- "aws_region_name"
- "start_date"
additionalProperties: true
properties:
aws_key_id:
type: "string"
title: "Key ID"
description: "AWS CloudTrail Access Key ID. See the <a href=\"https://docs.airbyte.io/integrations/sources/aws-cloudtrail\"\
>docs</a> for more information on how to obtain this key."
airbyte_secret: true
aws_secret_key:
type: "string"
title: "Secret Key"
description: "AWS CloudTrail Access Key ID. See the <a href=\"https://docs.airbyte.io/integrations/sources/aws-cloudtrail\"\
>docs</a> for more information on how to obtain this key."
airbyte_secret: true
aws_region_name:
type: "string"
title: "Region Name"
description: "The default AWS Region to use, for example, us-west-1 or us-west-2.\
\ When specifying a Region inline during client initialization, this property\
\ is named region_name."
start_date:
type: "string"
title: "Start Date"
description: "The date you would like to replicate data. Data in AWS CloudTrail\
\ is available for last 90 days only. Format: YYYY-MM-DD."
examples:
- "2021-01-01"
default: "1970-01-01"
pattern: "^[0-9]{4}-[0-9]{2}-[0-9]{2}$"
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-amazon-ads:0.1.19"
spec:
documentationUrl: "https://docs.airbyte.com/integrations/sources/amazon-ads"
connectionSpecification:
title: "Amazon Ads Spec"
type: "object"
properties:
auth_type:
title: "Auth Type"
const: "oauth2.0"
order: 0
type: "string"
client_id:
title: "Client ID"
description: "The client ID of your Amazon Ads developer application. See\
\ the <a href=\"https://advertising.amazon.com/API/docs/en-us/get-started/generate-api-tokens#retrieve-your-client-id-and-client-secret\"\
>docs</a> for more information."
order: 1
type: "string"
client_secret:
title: "Client Secret"
description: "The client secret of your Amazon Ads developer application.\
\ See the <a href=\"https://advertising.amazon.com/API/docs/en-us/get-started/generate-api-tokens#retrieve-your-client-id-and-client-secret\"\
>docs</a> for more information."
airbyte_secret: true
order: 2
type: "string"
refresh_token:
title: "Refresh Token"
description: "Amazon Ads refresh token. See the <a href=\"https://advertising.amazon.com/API/docs/en-us/get-started/generate-api-tokens\"\
>docs</a> for more information on how to obtain this token."
airbyte_secret: true
order: 3
type: "string"
region:
title: "Region *"
description: "Region to pull data from (EU/NA/FE). See <a href=\"https://advertising.amazon.com/API/docs/en-us/info/api-overview#api-endpoints\"\
>docs</a> for more details."
enum:
- "NA"
- "EU"
- "FE"
type: "string"
default: "NA"
order: 4
report_wait_timeout:
title: "Report Wait Timeout *"
description: "Timeout duration in minutes for Reports. Default is 30 minutes."
default: 30
examples:
- 30
- 120
order: 5
type: "integer"
report_generation_max_retries:
title: "Report Generation Maximum Retries *"
description: "Maximum retries Airbyte will attempt for fetching report data.\
\ Default is 5."
default: 5
examples:
- 5
- 10
- 15
order: 6
type: "integer"
start_date:
title: "Start Date (Optional)"
description: "The Start date for collecting reports, should not be more\
\ than 60 days in the past. In YYYY-MM-DD format"
examples:
- "2022-10-10"
- "2022-10-22"
order: 7
type: "string"
profiles:
title: "Profile IDs (Optional)"
description: "Profile IDs you want to fetch data for. See <a href=\"https://advertising.amazon.com/API/docs/en-us/concepts/authorization/profiles\"\
>docs</a> for more details."
order: 8
type: "array"
items:
type: "integer"
required:
- "client_id"
- "client_secret"
- "refresh_token"
additionalProperties: true
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
advanced_auth:
auth_flow_type: "oauth2.0"
predicate_key:
- "auth_type"
predicate_value: "oauth2.0"
oauth_config_specification:
complete_oauth_output_specification:
type: "object"
additionalProperties: true
properties:
refresh_token:
type: "string"
path_in_connector_config:
- "refresh_token"
complete_oauth_server_input_specification:
type: "object"
additionalProperties: true
properties:
client_id:
type: "string"
client_secret:
type: "string"
complete_oauth_server_output_specification:
type: "object"
additionalProperties: true
properties:
client_id:
type: "string"
path_in_connector_config:
- "client_id"
client_secret:
type: "string"
path_in_connector_config:
- "client_secret"
- dockerImage: "airbyte/source-amazon-seller-partner:0.2.25"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/amazon-seller-partner"
changelogUrl: "https://docs.airbyte.io/integrations/sources/amazon-seller-partner"
connectionSpecification:
title: "Amazon Seller Partner Spec"
type: "object"
properties:
app_id:
title: "App Id *"
description: "Your Amazon App ID"
airbyte_secret: true
order: 0
type: "string"
auth_type:
title: "Auth Type"
const: "oauth2.0"
order: 1
type: "string"
lwa_app_id:
title: "LWA Client Id"
description: "Your Login with Amazon Client ID."
order: 2
type: "string"
lwa_client_secret:
title: "LWA Client Secret"
description: "Your Login with Amazon Client Secret."
airbyte_secret: true
order: 3
type: "string"
refresh_token:
title: "Refresh Token"
description: "The Refresh Token obtained via OAuth flow authorization."
airbyte_secret: true
order: 4
type: "string"
aws_access_key:
title: "AWS Access Key"
description: "Specifies the AWS access key used as part of the credentials\
\ to authenticate the user."
airbyte_secret: true
order: 5
type: "string"
aws_secret_key:
title: "AWS Secret Access Key"
description: "Specifies the AWS secret key used as part of the credentials\
\ to authenticate the user."
airbyte_secret: true
order: 6
type: "string"
role_arn:
title: "Role ARN"
description: "Specifies the Amazon Resource Name (ARN) of an IAM role that\
\ you want to use to perform operations requested using this profile.\
\ (Needs permission to 'Assume Role' STS)."
airbyte_secret: true
order: 7
type: "string"
replication_start_date:
title: "Start Date"
description: "UTC date and time in the format 2017-01-25T00:00:00Z. Any\
\ data before this date will not be replicated."
pattern: "^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$"
examples:
- "2017-01-25T00:00:00Z"
type: "string"
replication_end_date:
title: "End Date"
description: "UTC date and time in the format 2017-01-25T00:00:00Z. Any\
\ data after this date will not be replicated."
pattern: "^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$|^$"
examples:
- "2017-01-25T00:00:00Z"
type: "string"
period_in_days:
title: "Period In Days"
description: "Will be used for stream slicing for initial full_refresh sync\
\ when no updated state is present for reports that support sliced incremental\
\ sync."
default: 30
examples:
- "30"
- "365"
type: "integer"
report_options:
title: "Report Options"
description: "Additional information passed to reports. This varies by report\
\ type. Must be a valid json string."
examples:
- "{\"GET_BRAND_ANALYTICS_SEARCH_TERMS_REPORT\": {\"reportPeriod\": \"WEEK\"\
}}"
- "{\"GET_SOME_REPORT\": {\"custom\": \"true\"}}"
type: "string"
max_wait_seconds:
title: "Max wait time for reports (in seconds)"
description: "Sometimes report can take up to 30 minutes to generate. This\
\ will set the limit for how long to wait for a successful report."
default: 500
examples:
- "500"
- "1980"
type: "integer"
aws_environment:
title: "AWSEnvironment"
description: "An enumeration."
enum:
- "PRODUCTION"
- "SANDBOX"
type: "string"
region:
title: "AWSRegion"
description: "An enumeration."
enum:
- "AE"
- "AU"
- "BR"
- "CA"
- "DE"
- "EG"
- "ES"
- "FR"
- "GB"
- "IN"
- "IT"
- "JP"
- "MX"
- "NL"
- "PL"
- "SA"
- "SE"
- "SG"
- "TR"
- "UK"
- "US"
type: "string"
required:
- "lwa_app_id"
- "lwa_client_secret"
- "refresh_token"
- "aws_access_key"
- "aws_secret_key"
- "role_arn"
- "replication_start_date"
- "aws_environment"
- "region"
additionalProperties: true
definitions:
AWSEnvironment:
title: "AWSEnvironment"
description: "An enumeration."
enum:
- "PRODUCTION"
- "SANDBOX"
type: "string"
AWSRegion:
title: "AWSRegion"
description: "An enumeration."
enum:
- "AE"
- "AU"
- "BR"
- "CA"
- "DE"
- "EG"
- "ES"
- "FR"
- "GB"
- "IN"
- "IT"
- "JP"
- "MX"
- "NL"
- "PL"
- "SA"
- "SE"
- "SG"
- "TR"
- "UK"
- "US"
type: "string"
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
advanced_auth:
auth_flow_type: "oauth2.0"
predicate_key:
- "auth_type"
predicate_value: "oauth2.0"
oauth_config_specification:
oauth_user_input_from_connector_config_specification:
type: "object"
additionalProperties: false
properties:
app_id:
type: "string"
path_in_connector_config:
- "app_id"
complete_oauth_output_specification:
type: "object"
additionalProperties: false
properties:
refresh_token:
type: "string"
path_in_connector_config:
- "refresh_token"
complete_oauth_server_input_specification:
type: "object"
additionalProperties: false
properties:
lwa_app_id:
type: "string"
lwa_client_secret:
type: "string"
complete_oauth_server_output_specification:
type: "object"
additionalProperties: false
properties:
lwa_app_id:
type: "string"
path_in_connector_config:
- "lwa_app_id"
lwa_client_secret:
type: "string"
path_in_connector_config:
- "lwa_client_secret"
- dockerImage: "airbyte/source-amazon-sqs:0.1.0"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/amazon-sqs"
connectionSpecification:
$schema: "http://json-schema.org/draft-07/schema#"
title: "Amazon SQS Source Spec"
type: "object"
required:
- "queue_url"
- "region"
- "delete_messages"
additionalProperties: false
properties:
queue_url:
title: "Queue URL"
description: "URL of the SQS Queue"
type: "string"
examples:
- "https://sqs.eu-west-1.amazonaws.com/1234567890/my-example-queue"
order: 0
region:
title: "AWS Region"
description: "AWS Region of the SQS Queue"
type: "string"
enum:
- "us-east-1"
- "us-east-2"
- "us-west-1"
- "us-west-2"
- "af-south-1"
- "ap-east-1"
- "ap-south-1"
- "ap-northeast-1"
- "ap-northeast-2"
- "ap-northeast-3"
- "ap-southeast-1"
- "ap-southeast-2"
- "ca-central-1"
- "cn-north-1"
- "cn-northwest-1"
- "eu-central-1"
- "eu-north-1"
- "eu-south-1"
- "eu-west-1"
- "eu-west-2"
- "eu-west-3"
- "sa-east-1"
- "me-south-1"
- "us-gov-east-1"
- "us-gov-west-1"
order: 1
delete_messages:
title: "Delete Messages After Read"
description: "If Enabled, messages will be deleted from the SQS Queue after\
\ being read. If Disabled, messages are left in the queue and can be read\
\ more than once. WARNING: Enabling this option can result in data loss\
\ in cases of failure, use with caution, see documentation for more detail. "
type: "boolean"
default: false
order: 2
max_batch_size:
title: "Max Batch Size"
description: "Max amount of messages to get in one batch (10 max)"
type: "integer"
examples:
- "5"
order: 3
max_wait_time:
title: "Max Wait Time"
description: "Max amount of time in seconds to wait for messages in a single\
\ poll (20 max)"
type: "integer"
examples:
- "5"
order: 4
attributes_to_return:
title: "Message Attributes To Return"
description: "Comma separated list of Mesage Attribute names to return"
type: "string"
examples:
- "attr1,attr2"
order: 5
visibility_timeout:
title: "Message Visibility Timeout"
description: "Modify the Visibility Timeout of the individual message from\
\ the Queue's default (seconds)."
type: "integer"
examples:
- "15"
order: 6
access_key:
title: "AWS IAM Access Key ID"
description: "The Access Key ID of the AWS IAM Role to use for pulling messages"
type: "string"
examples:
- "xxxxxHRNxxx3TBxxxxxx"
airbyte_secret: true
order: 7
secret_key:
title: "AWS IAM Secret Key"
description: "The Secret Key of the AWS IAM Role to use for pulling messages"
type: "string"
examples:
- "hu+qE5exxxxT6o/ZrKsxxxxxxBhxxXLexxxxxVKz"
airbyte_secret: true
order: 8
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-amplitude:0.1.13"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/amplitude"
connectionSpecification:
$schema: "http://json-schema.org/draft-07/schema#"
title: "Amplitude Spec"
type: "object"
required:
- "api_key"
- "secret_key"
- "start_date"
additionalProperties: true
properties:
api_key:
type: "string"
title: "API Key"
description: "Amplitude API Key. See the <a href=\"https://docs.airbyte.io/integrations/sources/amplitude#setup-guide\"\
>setup guide</a> for more information on how to obtain this key."
airbyte_secret: true
secret_key:
type: "string"
title: "Secret Key"
description: "Amplitude Secret Key. See the <a href=\"https://docs.airbyte.io/integrations/sources/amplitude#setup-guide\"\
>setup guide</a> for more information on how to obtain this key."
airbyte_secret: true
start_date:
type: "string"
title: "Replication Start Date"
pattern: "^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$"
description: "UTC date and time in the format 2021-01-25T00:00:00Z. Any\
\ data before this date will not be replicated."
examples:
- "2021-01-25T00:00:00Z"
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-apify-dataset:0.1.11"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/apify-dataset"
connectionSpecification:
$schema: "http://json-schema.org/draft-07/schema#"
title: "Apify Dataset Spec"
type: "object"
required:
- "datasetId"
additionalProperties: false
properties:
datasetId:
type: "string"
title: "Dataset ID"
description: "ID of the dataset you would like to load to Airbyte."
clean:
type: "boolean"
title: "Clean"
description: "If set to true, only clean items will be downloaded from the\
\ dataset. See description of what clean means in <a href=\"https://docs.apify.com/api/v2#/reference/datasets/item-collection/get-items\"\
>Apify API docs</a>. If not sure, set clean to false."
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-appfollow:0.1.1"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/appfollow"
connectionSpecification:
$schema: "http://json-schema.org/draft-07/schema#"
title: "Appfollow Spec"
type: "object"
required:
- "ext_id"
- "country"
- "cid"
- "api_secret"
additionalProperties: true
properties:
ext_id:
type: "string"
title: "app external id"
description: "for App Store — this is 9-10 digits identification number;\
\ for Google Play — this is bundle name;"
cid:
type: "string"
title: "client id"
description: "client id provided by Appfollow"
api_secret:
type: "string"
title: "api secret"
description: "api secret provided by Appfollow"
airbyte_secret: true
country:
type: "string"
title: "country"
description: "getting data by Country"
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-appstore-singer:0.2.6"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/appstore"
connectionSpecification:
$schema: "http://json-schema.org/draft-07/schema#"
title: "Source Appstore Singer Spec"
type: "object"
required:
- "key_id"
- "private_key"
- "issuer_id"
- "vendor"
- "start_date"
additionalProperties: false
properties:
key_id:
type: "string"
title: "Key ID"
description: "Appstore Key ID. See the <a href=\"https://docs.airbyte.io/integrations/sources/appstore\"\
>docs</a> for more information on how to obtain this key."
private_key:
type: "string"
title: "Private Key"
description: "Appstore Private Key. See the <a href=\"https://docs.airbyte.io/integrations/sources/appstore\"\
>docs</a> for more information on how to obtain this key."
airbyte_secret: true
multiline: true
issuer_id:
type: "string"
title: "Issuer ID"
description: "Appstore Issuer ID. See the <a href=\"https://docs.airbyte.io/integrations/sources/appstore\"\
>docs</a> for more information on how to obtain this ID."
vendor:
type: "string"
title: "Vendor ID"
description: "Appstore Vendor ID. See the <a href=\"https://docs.airbyte.io/integrations/sources/appstore\"\
>docs</a> for more information on how to obtain this ID."
start_date:
type: "string"
title: "Start Date"
description: "UTC date and time in the format 2017-01-25T00:00:00Z. Any\
\ data before this date will not be replicated."
examples:
- "2020-11-16T00:00:00Z"
pattern: "^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$"
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-asana:0.1.4"
spec:
documentationUrl: "https://docsurl.com"
connectionSpecification:
$schema: "http://json-schema.org/draft-07/schema#"
title: "Asana Spec"
type: "object"
additionalProperties: true
properties:
credentials:
title: "Authentication mechanism"
description: "Choose how to authenticate to Github"
type: "object"
oneOf:
- type: "object"
title: "Authenticate with Personal Access Token"
required:
- "personal_access_token"
properties:
option_title:
type: "string"
title: "Credentials title"
description: "PAT Credentials"
const: "PAT Credentials"
personal_access_token:
type: "string"
title: "Personal Access Token"
description: "Asana Personal Access Token (generate yours <a href=\"\
https://app.asana.com/0/developer-console\">here</a>)."
airbyte_secret: true
- type: "object"
title: "Authenticate via Asana (Oauth)"
required:
- "client_id"
- "client_secret"
- "refresh_token"
properties:
option_title:
type: "string"
title: "Credentials title"
description: "OAuth Credentials"
const: "OAuth Credentials"
client_id:
type: "string"
title: ""
description: ""
airbyte_secret: true
client_secret:
type: "string"
title: ""
description: ""
airbyte_secret: true
refresh_token:
type: "string"
title: ""
description: ""
airbyte_secret: true
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
authSpecification:
auth_type: "oauth2.0"
oauth2Specification:
rootObject:
- "credentials"
- "1"
oauthFlowInitParameters:
- - "client_id"
- - "client_secret"
oauthFlowOutputParameters:
- - "refresh_token"
- dockerImage: "airbyte/source-azure-table:0.1.2"
spec:
documentationUrl: "https://docsurl.com"
connectionSpecification:
$schema: "http://json-schema.org/draft-07/schema#"
title: "Azure Data Table Spec"
type: "object"
required:
- "storage_account_name"
- "storage_access_key"
additionalProperties: false
properties:
storage_account_name:
title: "Account Name"
type: "string"
description: "The name of your storage account."
order: 0
airbyte_secret: false
storage_access_key:
title: "Access Key"
type: "string"
description: "Azure Table Storage Access Key. See the <a href=\"https://docs.airbyte.io/integrations/sources/azure-table\"\
>docs</a> for more information on how to obtain this key."
order: 1
airbyte_secret: true
storage_endpoint_suffix:
title: "Endpoint Suffix"
type: "string"
description: "Azure Table Storage service account URL suffix. See the <a\
\ href=\"https://docs.airbyte.io/integrations/sources/azure-table\">docs</a>\
\ for more information on how to obtain endpoint suffix"
order: 2
default: "core.windows.net"
examples:
- "core.windows.net"
- "core.chinacloudapi.cn"
airbyte_secret: false
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-bamboo-hr:0.2.0"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/bamboo-hr"
connectionSpecification:
$schema: "http://json-schema.org/draft-07/schema#"
title: "Bamboo HR Spec"
type: "object"
required:
- "subdomain"
- "api_key"
additionalProperties: false
properties:
subdomain:
type: "string"
description: "Sub Domain of bamboo hr"
api_key:
type: "string"
description: "Api key of bamboo hr"
airbyte_secret: true
custom_reports_fields:
type: "string"
default: ""
description: "Comma-separated list of fields to include in custom reports."
custom_reports_include_default_fields:
type: "boolean"
default: true
description: "If true, the custom reports endpoint will include the default\
\ fields defined here: https://documentation.bamboohr.com/docs/list-of-field-names."
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-bigcommerce:0.1.6"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/bigcommerce"
connectionSpecification:
$schema: "http://json-schema.org/draft-07/schema#"
title: "BigCommerce Source CDK Specifications"
type: "object"
required:
- "start_date"
- "store_hash"
- "access_token"
additionalProperties: true
properties:
start_date:
type: "string"
title: "Start Date"
description: "The date you would like to replicate data. Format: YYYY-MM-DD."
examples:
- "2021-01-01"
pattern: "^[0-9]{4}-[0-9]{2}-[0-9]{2}$"
store_hash:
type: "string"
title: "Store Hash"
description: "The hash code of the store. For https://api.bigcommerce.com/stores/HASH_CODE/v3/,\
\ The store's hash code is 'HASH_CODE'."
access_token:
type: "string"
title: "Access Token"
description: "Access Token for making authenticated requests."
airbyte_secret: true
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-bigquery:0.2.0"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/bigquery"
connectionSpecification:
$schema: "http://json-schema.org/draft-07/schema#"
title: "BigQuery Source Spec"
type: "object"
required:
- "project_id"
- "credentials_json"
properties:
project_id:
type: "string"
description: "The GCP project ID for the project containing the target BigQuery\
\ dataset."
title: "Project ID"
dataset_id:
type: "string"
description: "The dataset ID to search for tables and views. If you are\
\ only loading data from one dataset, setting this option could result\
\ in much faster schema discovery."
title: "Default Dataset ID"
credentials_json:
type: "string"
description: "The contents of your Service Account Key JSON file. See the\
\ <a href=\"https://docs.airbyte.io/integrations/sources/bigquery#setup-the-bigquery-source-in-airbyte\"\
>docs</a> for more information on how to obtain this key."
title: "Credentials JSON"
airbyte_secret: true
supportsIncremental: true
supportsNormalization: true
supportsDBT: true
supported_destination_sync_modes: []
supported_sync_modes:
- "overwrite"
- "append"
- "append_dedup"
- dockerImage: "airbyte/source-bing-ads:0.1.12"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/bing-ads"
connectionSpecification:
$schema: "http://json-schema.org/draft-07/schema#"
title: "Bing Ads Spec"
type: "object"
required:
- "developer_token"
- "client_id"
- "refresh_token"
- "reports_start_date"
additionalProperties: true
properties:
auth_method:
type: "string"
const: "oauth2.0"
tenant_id:
type: "string"
title: "Tenant ID"
description: "The Tenant ID of your Microsoft Advertising developer application.\
\ Set this to \"common\" unless you know you need a different value."
airbyte_secret: true
default: "common"
order: 0
client_id:
type: "string"
title: "Client ID"
description: "The Client ID of your Microsoft Advertising developer application."
airbyte_secret: true
order: 1
client_secret:
type: "string"
title: "Client Secret"
description: "The Client Secret of your Microsoft Advertising developer\
\ application."
default: ""
airbyte_secret: true
order: 2
refresh_token:
type: "string"
title: "Refresh Token"
description: "Refresh Token to renew the expired Access Token."
airbyte_secret: true
order: 3
developer_token:
type: "string"
title: "Developer Token"
description: "Developer token associated with user. See more info <a href=\"\
https://docs.microsoft.com/en-us/advertising/guides/get-started?view=bingads-13#get-developer-token\"\
> in the docs</a>."
airbyte_secret: true
order: 4
reports_start_date:
type: "string"
title: "Reports replication start date"
format: "date"
default: "2020-01-01"
description: "The start date from which to begin replicating report data.\
\ Any data generated before this date will not be replicated in reports.\
\ This is a UTC date in YYYY-MM-DD format."
order: 5
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
advanced_auth:
auth_flow_type: "oauth2.0"
predicate_key:
- "auth_method"
predicate_value: "oauth2.0"
oauth_config_specification:
oauth_user_input_from_connector_config_specification:
type: "object"
additionalProperties: false
properties:
tenant_id:
type: "string"
path_in_connector_config:
- "tenant_id"
complete_oauth_output_specification:
type: "object"
additionalProperties: false
properties:
refresh_token:
type: "string"
path_in_connector_config:
- "refresh_token"
complete_oauth_server_input_specification:
type: "object"
additionalProperties: false
properties:
client_id:
type: "string"
client_secret:
type: "string"
complete_oauth_server_output_specification:
type: "object"
additionalProperties: false