* initial commit * fix schema * fix schema * ass tasks stream * update schema * fix sample config * add time records * add docs * update docs * Update source_definitions.yaml * Update source_definitions.yaml * Update spec.yaml * update low-code to latest format * auto-bump connector version --------- Co-authored-by: marcosmarxm <marcosmarxm@gmail.com> Co-authored-by: Marcos Marx <marcosmarxm@users.noreply.github.com> Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.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"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|