* update template for python sources * update templates and their docs * update docs, rename folders, add acceptance script * adding hooks for custom setup and teardown + improve plugin behaviour, enable it explicitly + add acceptance.py to run acceptance tests together with integration tests + remove helper acceptance-test-python.sh + fix gradle command for acceptance tests + update docs Co-authored-by: Eugene Kulak <kulak.eugene@gmail.com> Co-authored-by: Sherif A. Nada <snadalive@gmail.com>
40 lines
914 B
JSON
40 lines
914 B
JSON
{
|
|
"streams": [
|
|
{
|
|
"name": "TODO fix this file",
|
|
"supported_sync_modes": ["full_refresh", "incremental"],
|
|
"source_defined_cursor": true,
|
|
"default_cursor_field": "column1",
|
|
"json_schema": {
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"properties": {
|
|
"column1": {
|
|
"type": "string"
|
|
},
|
|
"column2": {
|
|
"type": "number"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"name": "table1",
|
|
"supported_sync_modes": ["full_refresh", "incremental"],
|
|
"source_defined_cursor": false,
|
|
"json_schema": {
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"properties": {
|
|
"column1": {
|
|
"type": "string"
|
|
},
|
|
"column2": {
|
|
"type": "number"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|