1
0
mirror of synced 2026-01-07 00:05:48 -05:00
Files
airbyte/airbyte-integrations/connectors/source-google-analytics-v4/integration_tests/catalog.json
Serhii Lazebnyi b01c7319ff non-jdbc source connectors: Update additional properties from beta/GA specs and schemas (#15042)
* Update `additionalProperties` field to true from schemas

* Updated PR number

* auto-bump connector version [ci skip]

* auto-bump connector version [ci skip]

* auto-bump connector version [ci skip]

Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
2022-07-26 22:57:09 +03:00

124 lines
3.3 KiB
JSON

{
"streams": [
{
"stream": {
"name": "website_overview",
"json_schema": {
"type": ["null", "object"],
"additionalProperties": true,
"properties": {
"ga_date": {
"type": ["string"]
},
"ga_users": {
"type": ["null", "integer"]
},
"ga_newUsers": {
"type": ["null", "integer"]
},
"ga_sessions": {
"type": ["null", "integer"]
},
"ga_sessionsPerUser": {
"type": ["null", "number"]
},
"ga_avgSessionDuration": {
"type": ["null", "number"]
},
"ga_pageviews": {
"type": ["null", "integer"]
},
"ga_pageviewsPerSession": {
"type": ["null", "number"]
},
"ga_avgTimeOnPage": {
"type": ["null", "number"]
},
"ga_bounceRate": {
"type": ["null", "number"]
},
"ga_exitRate": {
"type": ["null", "number"]
},
"report_start_date": {
"type": ["string"]
},
"report_end_date": {
"type": ["string"]
}
}
},
"supported_sync_modes": ["incremental"],
"source_defined_cursor": true
},
"sync_mode": "incremental",
"cursor_field": ["report_start_date"],
"destination_sync_mode": "append"
},
{
"stream": {
"name": "traffic_sources",
"json_schema": {
"type": ["null", "object"],
"additionalProperties": true,
"properties": {
"ga_date": {
"type": ["string"]
},
"ga_source": {
"type": ["string"]
},
"ga_medium": {
"type": ["string"]
},
"ga_socialNetwork": {
"type": ["string"]
},
"ga_users": {
"type": ["null", "integer"]
},
"ga_newUsers": {
"type": ["null", "integer"]
},
"ga_sessions": {
"type": ["null", "integer"]
},
"ga_sessionsPerUser": {
"type": ["null", "number"]
},
"ga_avgSessionDuration": {
"type": ["null", "number"]
},
"ga_pageviews": {
"type": ["null", "integer"]
},
"ga_pageviewsPerSession": {
"type": ["null", "number"]
},
"ga_avgTimeOnPage": {
"type": ["null", "number"]
},
"ga_bounceRate": {
"type": ["null", "number"]
},
"ga_exitRate": {
"type": ["null", "number"]
},
"report_start_date": {
"type": ["string"]
},
"report_end_date": {
"type": ["string"]
}
}
},
"supported_sync_modes": ["incremental"],
"source_defined_cursor": true
},
"sync_mode": "incremental",
"cursor_field": ["report_start_date"],
"destination_sync_mode": "append"
}
]
}