/ source-basic-api-fetcher / sample_files / configured_catalog.json
configured_catalog.json
 1  {
 2    "streams": [
 3      {
 4        "stream": {
 5          "name": "bank_balance",
 6          "json_schema": {
 7            "$schema": "http://json-schema.org/draft-04/schema#",
 8            "type": "object"
 9          },
10          "supported_sync_modes": [
11            "full_refresh",  "incremental"
12          ]
13        },
14        "sync_mode":  "incremental",
15        "destination_sync_mode": "overwrite"
16      },
17      {
18        "stream": {
19          "name": "additional_tokens",
20          "json_schema": {
21            "$schema": "http://json-schema.org/draft-04/schema#",
22            "type": "object"
23          },
24          "supported_sync_modes": [
25            "full_refresh",  "incremental"
26          ]
27        },
28        "sync_mode":  "incremental",
29        "destination_sync_mode": "overwrite"
30      }
31    ]
32  }