* 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
44 lines
1.1 KiB
JSON
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"]
|
|
}
|
|
}
|
|
]
|
|
}
|