Skip to content

Commit

Permalink
chore: generate source_specs.yaml file (#17160)
Browse files Browse the repository at this point in the history
  • Loading branch information
sajarin authored Sep 26, 2022
1 parent 9db329e commit cf0c082
Showing 1 changed file with 155 additions and 0 deletions.
155 changes: 155 additions & 0 deletions airbyte-config/init/src/main/resources/seed/source_specs.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,161 @@
# 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-adjust:0.1.0"
spec:
documentationUrl: "https://raw.githubusercontent.com/appchoose/airbyte/feature/source-adjust/docs/integrations/sources/adjust.md"
connectionSpecification:
$schema: "http://json-schema.org/draft-07/schema#"
description: "Adjust reporting API connector."
properties:
additional_metrics:
description: "Metrics names that are not pre-defined, such as cohort metrics\
\ or app specific metrics."
items:
type: "string"
order: 3
title: "Additional metrics for ingestion"
type: "array"
api_token:
airbyte_secret: true
description: "Adjust API key, see https://help.adjust.com/en/article/report-service-api-authentication"
order: 0
title: "API Token"
type: "string"
dimensions:
description: "Dimensions allow a user to break down metrics into groups\
\ using one or several parameters. For example, the number of installs\
\ by date, country and network. See https://help.adjust.com/en/article/reports-endpoint#dimensions\
\ for more information about the dimensions."
items:
enum:
- "os_name"
- "device_type"
- "app"
- "app_token"
- "store_id"
- "store_type"
- "app_network"
- "currency"
- "currency_code"
- "network"
- "campaign"
- "campaign_network"
- "campaign_id_network"
- "adgroup"
- "adgroup_network"
- "adgroup_id_network"
- "source_network"
- "source_id_network"
- "creative"
- "creative_network"
- "creative_id_network"
- "country"
- "country_code"
- "region"
- "partner_name"
- "partner_id"
type: "string"
minItems: 1
order: 4
title: "Dimensions"
type: "array"
uniqueItems: true
ingest_start:
description: "Data ingest start date."
format: "date"
order: 1
title: "Ingest Start Date"
type: "string"
metrics:
description: "Select at least one metric to query."
items:
enum:
- "network_cost"
- "network_cost_diff"
- "network_clicks"
- "network_impressions"
- "network_installs"
- "network_installs_diff"
- "network_ecpc"
- "network_ecpi"
- "network_ecpm"
- "arpdau_ad"
- "arpdau"
- "arpdau_iap"
- "ad_impressions"
- "ad_rpm"
- "ad_revenue"
- "cohort_ad_revenue"
- "cost"
- "adjust_cost"
- "all_revenue"
- "cohort_all_revenue"
- "daus"
- "maus"
- "waus"
- "base_sessions"
- "ctr"
- "click_conversion_rate"
- "click_cost"
- "clicks"
- "paid_clicks"
- "deattributions"
- "ecpc"
- "gdpr_forgets"
- "gross_profit"
- "cohort_gross_profit"
- "impression_conversion_rate"
- "impression_cost"
- "impressions"
- "paid_impressions"
- "install_cost"
- "installs"
- "paid_installs"
- "installs_per_mile"
- "limit_ad_tracking_installs"
- "limit_ad_tracking_install_rate"
- "limit_ad_tracking_reattribution_rate"
- "limit_ad_tracking_reattributions"
- "non_organic_installs"
- "organic_installs"
- "roas_ad"
- "roas"
- "roas_iap"
- "reattributions"
- "return_on_investment"
- "revenue"
- "cohort_revenue"
- "revenue_events"
- "revenue_to_cost"
- "sessions"
- "events"
- "ecpi_all"
- "ecpi"
- "ecpm"
type: "string"
minItems: 1
order: 2
title: "Metrics to ingest"
type: "array"
uniqueItems: true
until_today:
default: false
description: "Syncs data up until today. Useful when running daily incremental\
\ syncs, and duplicates are not desired."
order: 5
title: "Until Today"
type: "boolean"
required:
- "api_token"
- "ingest_start"
- "metrics"
- "dimensions"
title: "Adjust Spec"
type: "object"
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-airtable:0.1.2"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/airtable"
Expand Down

0 comments on commit cf0c082

Please sign in to comment.