1
0
mirror of synced 2026-01-03 15:04:01 -05:00
Files
airbyte/airbyte-integrations/connectors/source-adjust/integration_tests/catalog.json
Björn Schuberg 05bd34f477 🎉 New Source: Adjust (#16051)
* Initial version of the adjust source connector

* source-adjust: add bootstrap.md

* adjust-source: add setup guide

* adjust-source: update integration READMEs

* source-adjust: better stream name

* source-adjust: fix sample conf

* source-adjust: add spec order metadata

* source-adjust: improve spec dimension doc

* source-adjust: warn on custom metric cast failure

* source adjust: Update source_definitions.yaml

* source adjust: Update documentation url
2022-09-26 14:25:51 -04:00

44 lines
1.1 KiB
JSON

{
"streams": [
{
"name": "adjust_report_stream",
"supported_sync_modes": ["full_refresh", "incremental"],
"source_defined_cursor": true,
"default_cursor_field": "day",
"json_schema": {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"clicks": {
"title": "Clicks",
"description": "Clicks.",
"type": "integer"
},
"installs": {
"title": "Installs",
"description": "Installs.",
"type": "integer"
},
"day": {
"title": "Day",
"description": "Date.",
"type": "string",
"format": "date"
},
"app": {
"title": "App",
"description": "Name of the app.",
"type": "string"
},
"network": {
"title": "Network",
"description": "The name of the advertising network.",
"type": "string"
}
},
"required": ["day"]
}
}
]
}