diff --git a/airbyte-config/init/src/main/resources/seed/source_definitions.yaml b/airbyte-config/init/src/main/resources/seed/source_definitions.yaml index d1d24f7123326b..2d906156cfbffa 100644 --- a/airbyte-config/init/src/main/resources/seed/source_definitions.yaml +++ b/airbyte-config/init/src/main/resources/seed/source_definitions.yaml @@ -1156,6 +1156,13 @@ icon: searchmetrics.svg sourceType: api releaseStage: alpha +- name: Secoda + sourceDefinitionId: da9fc6b9-8059-4be0-b204-f56e22e4d52d + dockerRepository: airbyte/source-secoda + dockerImageTag: 0.1.0 + documentationUrl: https://docs.airbyte.com/integrations/sources/secoda + sourceType: api + releaseStage: alpha - name: Sendgrid sourceDefinitionId: fbb5fbe2-16ad-4cf4-af7d-ff9d9c316c87 dockerRepository: airbyte/source-sendgrid diff --git a/airbyte-config/init/src/main/resources/seed/source_specs.yaml b/airbyte-config/init/src/main/resources/seed/source_specs.yaml index 91a3ff9033118e..84208d88d4a056 100644 --- a/airbyte-config/init/src/main/resources/seed/source_specs.yaml +++ b/airbyte-config/init/src/main/resources/seed/source_specs.yaml @@ -11297,6 +11297,26 @@ supportsNormalization: false supportsDBT: false supported_destination_sync_modes: [] +- dockerImage: "airbyte/source-secoda:0.1.0" + spec: + documentationUrl: "https://docs.airbyte.com/integrations/sources/secoda" + connectionSpecification: + $schema: "http://json-schema.org/draft-07/schema#" + title: "Secoda Spec" + type: "object" + required: + - "api_key" + additionalProperties: true + properties: + api_key: + title: "Api Key" + type: "string" + description: "Your API Access Key. See here. The key is case sensitive." + airbyte_secret: true + supportsNormalization: false + supportsDBT: false + supported_destination_sync_modes: [] - dockerImage: "airbyte/source-sendgrid:0.2.16" spec: documentationUrl: "https://docs.airbyte.com/integrations/sources/sendgrid" diff --git a/airbyte-integrations/connectors/source-secoda/.dockerignore b/airbyte-integrations/connectors/source-secoda/.dockerignore new file mode 100644 index 00000000000000..85035b698a6bd5 --- /dev/null +++ b/airbyte-integrations/connectors/source-secoda/.dockerignore @@ -0,0 +1,6 @@ +* +!Dockerfile +!main.py +!source_secoda +!setup.py +!secrets diff --git a/airbyte-integrations/connectors/source-secoda/Dockerfile b/airbyte-integrations/connectors/source-secoda/Dockerfile new file mode 100644 index 00000000000000..c4ec6e9b49189a --- /dev/null +++ b/airbyte-integrations/connectors/source-secoda/Dockerfile @@ -0,0 +1,38 @@ +FROM python:3.9.11-alpine3.15 as base + +# build and load all requirements +FROM base as builder +WORKDIR /airbyte/integration_code + +# upgrade pip to the latest version +RUN apk --no-cache upgrade \ + && pip install --upgrade pip \ + && apk --no-cache add tzdata build-base + + +COPY setup.py ./ +# install necessary packages to a temporary folder +RUN pip install --prefix=/install . + +# build a clean environment +FROM base +WORKDIR /airbyte/integration_code + +# copy all loaded and built libraries to a pure basic image +COPY --from=builder /install /usr/local +# add default timezone settings +COPY --from=builder /usr/share/zoneinfo/Etc/UTC /etc/localtime +RUN echo "Etc/UTC" > /etc/timezone + +# bash is installed for more convenient debugging. +RUN apk --no-cache add bash + +# copy payload code only +COPY main.py ./ +COPY source_secoda ./source_secoda + +ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py" +ENTRYPOINT ["python", "/airbyte/integration_code/main.py"] + +LABEL io.airbyte.version=0.1.0 +LABEL io.airbyte.name=airbyte/source-secoda diff --git a/airbyte-integrations/connectors/source-secoda/README.md b/airbyte-integrations/connectors/source-secoda/README.md new file mode 100644 index 00000000000000..57f14fc2331283 --- /dev/null +++ b/airbyte-integrations/connectors/source-secoda/README.md @@ -0,0 +1,79 @@ +# Secoda Source + +This is the repository for the Secoda configuration based source connector. +For information about how to use this connector within Airbyte, see [the documentation](https://docs.airbyte.io/integrations/sources/secoda). + +## Local development + +#### Building via Gradle +You can also build the connector in Gradle. This is typically used in CI and not needed for your development workflow. + +To build using Gradle, from the Airbyte repository root, run: +``` +./gradlew :airbyte-integrations:connectors:source-secoda:build +``` + +#### Create credentials +**If you are a community contributor**, follow the instructions in the [documentation](https://docs.airbyte.io/integrations/sources/secoda) +to generate the necessary credentials. Then create a file `secrets/config.json` conforming to the `source_secoda/spec.yaml` file. +Note that any directory named `secrets` is gitignored across the entire Airbyte repo, so there is no danger of accidentally checking in sensitive information. +See `integration_tests/sample_config.json` for a sample config file. + +**If you are an Airbyte core member**, copy the credentials in Lastpass under the secret name `source secoda test creds` +and place them into `secrets/config.json`. + +### Locally running the connector docker image + +#### Build +First, make sure you build the latest Docker image: +``` +docker build . -t airbyte/source-secoda:dev +``` + +You can also build the connector image via Gradle: +``` +./gradlew :airbyte-integrations:connectors:source-secoda:airbyteDocker +``` +When building via Gradle, the docker image name and tag, respectively, are the values of the `io.airbyte.name` and `io.airbyte.version` `LABEL`s in +the Dockerfile. + +#### Run +Then run any of the connector commands as follows: +``` +docker run --rm airbyte/source-secoda:dev spec +docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-secoda:dev check --config /secrets/config.json +docker run --rm -v $(pwd)/secrets:/secrets airbyte/source-secoda:dev discover --config /secrets/config.json +docker run --rm -v $(pwd)/secrets:/secrets -v $(pwd)/integration_tests:/integration_tests airbyte/source-secoda:dev read --config /secrets/config.json --catalog /integration_tests/configured_catalog.json +``` +## Testing + +#### Acceptance Tests +Customize `acceptance-test-config.yml` file to configure tests. See [Source Acceptance Tests](https://docs.airbyte.io/connector-development/testing-connectors/source-acceptance-tests-reference) for more information. +If your connector requires to create or destroy resources for use during acceptance tests create fixtures for it and place them inside integration_tests/acceptance.py. + +To run your integration tests with docker + +### Using gradle to run tests +All commands should be run from airbyte project root. +To run unit tests: +``` +./gradlew :airbyte-integrations:connectors:source-secoda:unitTest +``` +To run acceptance and custom integration tests: +``` +./gradlew :airbyte-integrations:connectors:source-secoda:integrationTest +``` + +## Dependency Management +All of your dependencies should go in `setup.py`, NOT `requirements.txt`. The requirements file is only used to connect internal Airbyte dependencies in the monorepo for local development. +We split dependencies between two groups, dependencies that are: +* required for your connector to work need to go to `MAIN_REQUIREMENTS` list. +* required for the testing need to go to `TEST_REQUIREMENTS` list + +### Publishing a new version of the connector +You've checked out the repo, implemented a million dollar feature, and you're ready to share your changes with the world. Now what? +1. Make sure your changes are passing unit and integration tests. +1. Bump the connector version in `Dockerfile` -- just increment the value of the `LABEL io.airbyte.version` appropriately (we use [SemVer](https://semver.org/)). +1. Create a Pull Request. +1. Pat yourself on the back for being an awesome contributor. +1. Someone from Airbyte will take a look at your PR and iterate with you to merge it into master. diff --git a/airbyte-integrations/connectors/source-secoda/__init__.py b/airbyte-integrations/connectors/source-secoda/__init__.py new file mode 100644 index 00000000000000..1100c1c58cf510 --- /dev/null +++ b/airbyte-integrations/connectors/source-secoda/__init__.py @@ -0,0 +1,3 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# diff --git a/airbyte-integrations/connectors/source-secoda/acceptance-test-config.yml b/airbyte-integrations/connectors/source-secoda/acceptance-test-config.yml new file mode 100644 index 00000000000000..7b7fe506a8893a --- /dev/null +++ b/airbyte-integrations/connectors/source-secoda/acceptance-test-config.yml @@ -0,0 +1,26 @@ +# See [Source Acceptance Tests](https://docs.airbyte.com/connector-development/testing-connectors/source-acceptance-tests-reference) +# for more information about how to configure these tests +connector_image: airbyte/source-secoda:dev +tests: + spec: + - spec_path: "source_secoda/spec.yaml" + connection: + - config_path: "secrets/config.json" + status: "succeed" + - config_path: "integration_tests/invalid_config.json" + status: "failed" + # discovery: + # - config_path: "secrets/config.json" + # basic_read: + # - config_path: "secrets/config.json" + # configured_catalog_path: "integration_tests/configured_catalog.json" + # empty_streams: [] + # # TODO uncomment this block to specify that the tests should assert the connector outputs the records provided in the input file a file + # # expect_records: + # # path: "integration_tests/expected_records.txt" + # # extra_fields: no + # # exact_order: no + # # extra_records: yes + # full_refresh: + # - config_path: "secrets/config.json" + # configured_catalog_path: "integration_tests/configured_catalog.json" diff --git a/airbyte-integrations/connectors/source-secoda/acceptance-test-docker.sh b/airbyte-integrations/connectors/source-secoda/acceptance-test-docker.sh new file mode 100644 index 00000000000000..c51577d10690c1 --- /dev/null +++ b/airbyte-integrations/connectors/source-secoda/acceptance-test-docker.sh @@ -0,0 +1,16 @@ +#!/usr/bin/env sh + +# Build latest connector image +docker build . -t $(cat acceptance-test-config.yml | grep "connector_image" | head -n 1 | cut -d: -f2-) + +# Pull latest acctest image +docker pull airbyte/source-acceptance-test:latest + +# Run +docker run --rm -it \ + -v /var/run/docker.sock:/var/run/docker.sock \ + -v /tmp:/tmp \ + -v $(pwd):/test_input \ + airbyte/source-acceptance-test \ + --acceptance-test-config /test_input + diff --git a/airbyte-integrations/connectors/source-secoda/build.gradle b/airbyte-integrations/connectors/source-secoda/build.gradle new file mode 100644 index 00000000000000..68a93dbb4e34ee --- /dev/null +++ b/airbyte-integrations/connectors/source-secoda/build.gradle @@ -0,0 +1,9 @@ +plugins { + id 'airbyte-python' + id 'airbyte-docker' + id 'airbyte-source-acceptance-test' +} + +airbytePython { + moduleDirectory 'source_secoda' +} diff --git a/airbyte-integrations/connectors/source-secoda/integration_tests/__init__.py b/airbyte-integrations/connectors/source-secoda/integration_tests/__init__.py new file mode 100644 index 00000000000000..1100c1c58cf510 --- /dev/null +++ b/airbyte-integrations/connectors/source-secoda/integration_tests/__init__.py @@ -0,0 +1,3 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# diff --git a/airbyte-integrations/connectors/source-secoda/integration_tests/abnormal_state.json b/airbyte-integrations/connectors/source-secoda/integration_tests/abnormal_state.json new file mode 100644 index 00000000000000..52b0f2c2118f45 --- /dev/null +++ b/airbyte-integrations/connectors/source-secoda/integration_tests/abnormal_state.json @@ -0,0 +1,5 @@ +{ + "todo-stream-name": { + "todo-field-name": "todo-abnormal-value" + } +} diff --git a/airbyte-integrations/connectors/source-secoda/integration_tests/acceptance.py b/airbyte-integrations/connectors/source-secoda/integration_tests/acceptance.py new file mode 100644 index 00000000000000..1302b2f57e10ec --- /dev/null +++ b/airbyte-integrations/connectors/source-secoda/integration_tests/acceptance.py @@ -0,0 +1,16 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + + +import pytest + +pytest_plugins = ("source_acceptance_test.plugin",) + + +@pytest.fixture(scope="session", autouse=True) +def connector_setup(): + """This fixture is a placeholder for external resources that acceptance test might require.""" + # TODO: setup test dependencies if needed. otherwise remove the TODO comments + yield + # TODO: clean up test dependencies diff --git a/airbyte-integrations/connectors/source-secoda/integration_tests/configured_catalog.json b/airbyte-integrations/connectors/source-secoda/integration_tests/configured_catalog.json new file mode 100644 index 00000000000000..96ec0daab2367a --- /dev/null +++ b/airbyte-integrations/connectors/source-secoda/integration_tests/configured_catalog.json @@ -0,0 +1,37 @@ +{ + "streams": [ + { + "stream": { + "name": "tables", + "json_schema": {}, + "supported_sync_modes": [ + "full_refresh" + ] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "overwrite" + }, + { + "stream": { + "name": "terms", + "json_schema": {}, + "supported_sync_modes": [ + "full_refresh" + ] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "overwrite" + }, + { + "stream": { + "name": "collections", + "json_schema": {}, + "supported_sync_modes": [ + "full_refresh" + ] + }, + "sync_mode": "full_refresh", + "destination_sync_mode": "overwrite" + } + ] +} diff --git a/airbyte-integrations/connectors/source-secoda/integration_tests/invalid_config.json b/airbyte-integrations/connectors/source-secoda/integration_tests/invalid_config.json new file mode 100644 index 00000000000000..6016942564e8ad --- /dev/null +++ b/airbyte-integrations/connectors/source-secoda/integration_tests/invalid_config.json @@ -0,0 +1,3 @@ +{ + "api_key": "wrong-api-key" +} diff --git a/airbyte-integrations/connectors/source-secoda/integration_tests/sample_config.json b/airbyte-integrations/connectors/source-secoda/integration_tests/sample_config.json new file mode 100644 index 00000000000000..f3027573f97315 --- /dev/null +++ b/airbyte-integrations/connectors/source-secoda/integration_tests/sample_config.json @@ -0,0 +1,3 @@ +{ + "api_key": "488c388c-e1fg-01fb-f1d0-e7de1a07be70" +} diff --git a/airbyte-integrations/connectors/source-secoda/integration_tests/sample_state.json b/airbyte-integrations/connectors/source-secoda/integration_tests/sample_state.json new file mode 100644 index 00000000000000..3587e579822d0e --- /dev/null +++ b/airbyte-integrations/connectors/source-secoda/integration_tests/sample_state.json @@ -0,0 +1,5 @@ +{ + "todo-stream-name": { + "todo-field-name": "value" + } +} diff --git a/airbyte-integrations/connectors/source-secoda/main.py b/airbyte-integrations/connectors/source-secoda/main.py new file mode 100644 index 00000000000000..4f35a26b96791f --- /dev/null +++ b/airbyte-integrations/connectors/source-secoda/main.py @@ -0,0 +1,13 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + + +import sys + +from airbyte_cdk.entrypoint import launch +from source_secoda import SourceSecoda + +if __name__ == "__main__": + source = SourceSecoda() + launch(source, sys.argv[1:]) diff --git a/airbyte-integrations/connectors/source-secoda/requirements.txt b/airbyte-integrations/connectors/source-secoda/requirements.txt new file mode 100644 index 00000000000000..0411042aa0911f --- /dev/null +++ b/airbyte-integrations/connectors/source-secoda/requirements.txt @@ -0,0 +1,2 @@ +-e ../../bases/source-acceptance-test +-e . diff --git a/airbyte-integrations/connectors/source-secoda/setup.py b/airbyte-integrations/connectors/source-secoda/setup.py new file mode 100644 index 00000000000000..f3f1d43c98877d --- /dev/null +++ b/airbyte-integrations/connectors/source-secoda/setup.py @@ -0,0 +1,29 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + + +from setuptools import find_packages, setup + +MAIN_REQUIREMENTS = [ + "airbyte-cdk~=0.1", +] + +TEST_REQUIREMENTS = [ + "pytest~=6.1", + "pytest-mock~=3.6.1", + "source-acceptance-test", +] + +setup( + name="source_secoda", + description="Source implementation for Secoda.", + author="Airbyte", + author_email="contact@airbyte.io", + packages=find_packages(), + install_requires=MAIN_REQUIREMENTS, + package_data={"": ["*.json", "*.yaml", "schemas/*.json", "schemas/shared/*.json"]}, + extras_require={ + "tests": TEST_REQUIREMENTS, + }, +) diff --git a/airbyte-integrations/connectors/source-secoda/source_secoda/__init__.py b/airbyte-integrations/connectors/source-secoda/source_secoda/__init__.py new file mode 100644 index 00000000000000..880f898ef6111c --- /dev/null +++ b/airbyte-integrations/connectors/source-secoda/source_secoda/__init__.py @@ -0,0 +1,8 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + + +from .source import SourceSecoda + +__all__ = ["SourceSecoda"] diff --git a/airbyte-integrations/connectors/source-secoda/source_secoda/schemas/collections.json b/airbyte-integrations/connectors/source-secoda/source_secoda/schemas/collections.json new file mode 100644 index 00000000000000..e63d8fd42e390e --- /dev/null +++ b/airbyte-integrations/connectors/source-secoda/source_secoda/schemas/collections.json @@ -0,0 +1,42 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "created_at": { + "type": "string" + }, + "updated_at": { + "type": "string" + }, + "entity_type": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "definition": { + "type": "string" + }, + "workspace_id": { + "type": "string" + }, + "published": { + "type": "boolean" + }, + "archived": { + "type": "boolean" + }, + "pii": { + "type": "boolean" + }, + "verified": { + "type": "boolean" + } + } +} diff --git a/airbyte-integrations/connectors/source-secoda/source_secoda/schemas/tables.json b/airbyte-integrations/connectors/source-secoda/source_secoda/schemas/tables.json new file mode 100644 index 00000000000000..3ff185b578b613 --- /dev/null +++ b/airbyte-integrations/connectors/source-secoda/source_secoda/schemas/tables.json @@ -0,0 +1,66 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "type": { + "type": "string" + }, + "published": { + "type": "boolean" + }, + "pii": { + "type": "boolean" + }, + "created_at": { + "type": "string" + }, + "updated_at": { + "type": "string" + }, + "tags": { + "type": "array" + }, + "name": { + "type": "string" + }, + "schema": { + "type": "string" + }, + "cluster": { + "type": "string" + }, + "database": { + "type": "string" + }, + "owners": { + "type": "array" + }, + "description": { + "type": [ + "null", + "string" + ] + }, + "columns": { + "type": "array" + }, + "parent_id": { + "type": "string" + }, + "integration": { + "type": "string" + }, + "entity_type": { + "type": "string" + }, + "pristine": { + "type": "boolean" + }, + "verified": { + "type": "boolean" + } + } +} diff --git a/airbyte-integrations/connectors/source-secoda/source_secoda/schemas/terms.json b/airbyte-integrations/connectors/source-secoda/source_secoda/schemas/terms.json new file mode 100644 index 00000000000000..8b6ea1ca49c585 --- /dev/null +++ b/airbyte-integrations/connectors/source-secoda/source_secoda/schemas/terms.json @@ -0,0 +1,39 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "created_at": { + "type": "string" + }, + "updated_at": { + "type": "string" + }, + "title": { + "type": "string" + }, + "description": { + "type": "string" + }, + "collections": { + "type": "array" + }, + "owners": { + "type": "array" + }, + "published": { + "type": "boolean" + }, + "pristine": { + "type": "boolean" + }, + "viewers_delta": { + "type": "object" + }, + "entity_type": { + "type": "string" + } + } +} diff --git a/airbyte-integrations/connectors/source-secoda/source_secoda/secoda.yaml b/airbyte-integrations/connectors/source-secoda/source_secoda/secoda.yaml new file mode 100644 index 00000000000000..e744c2b66f5cdd --- /dev/null +++ b/airbyte-integrations/connectors/source-secoda/source_secoda/secoda.yaml @@ -0,0 +1,69 @@ +version: "0.1.0" + +definitions: + schema_loader: + type: JsonSchema + file_path: "./source_secoda/schemas/{{ options.name }}.json" + selector: + extractor: + field_pointer: ["results"] + requester: + url_base: "https://api.secoda.co" + http_method: "GET" + authenticator: + type: BearerAuthenticator + api_token: "{{ config['api_key'] }}" + error_handler: + response_filters: + - http_codes: [ 500 ] + action: FAIL + cursor_paginator: + type: DefaultPaginator + url_base: "*ref(definitions.requester.url_base)" + page_token_option: + inject_into: path + page_size_option: + inject_into: body_data + field_name: "page_size" + pagination_strategy: + type: "CursorPagination" + cursor_value: "{{ response.links.next }}" + stop_condition: "{{ response.links.next is none}}" + page_size: 1 + retriever: + record_selector: + $ref: "*ref(definitions.selector)" + paginator: + $ref: "*ref(definitions.cursor_paginator)" + requester: + $ref: "*ref(definitions.requester)" + base_stream: + retriever: + $ref: "*ref(definitions.retriever)" + tables_stream: + $ref: "*ref(definitions.base_stream)" + $options: + name: "tables" + primary_key: "id" + path: "/table/tables/" + terms_stream: + $ref: "*ref(definitions.base_stream)" + $options: + name: "terms" + primary_key: "id" + path: "/dictionary/terms/" + collections_stream: + $ref: "*ref(definitions.base_stream)" + $options: + name: "collections" + primary_key: "id" + path: "/collection/collections/" + +streams: + - "*ref(definitions.tables_stream)" + - "*ref(definitions.terms_stream)" + - "*ref(definitions.collections_stream)" + +check: + stream_names: + - "tables" diff --git a/airbyte-integrations/connectors/source-secoda/source_secoda/source.py b/airbyte-integrations/connectors/source-secoda/source_secoda/source.py new file mode 100644 index 00000000000000..b4cf6d6ce86179 --- /dev/null +++ b/airbyte-integrations/connectors/source-secoda/source_secoda/source.py @@ -0,0 +1,18 @@ +# +# Copyright (c) 2022 Airbyte, Inc., all rights reserved. +# + +from airbyte_cdk.sources.declarative.yaml_declarative_source import YamlDeclarativeSource + +""" +This file provides the necessary constructs to interpret a provided declarative YAML configuration file into +source connector. + +WARNING: Do not modify this file. +""" + + +# Declarative Source +class SourceSecoda(YamlDeclarativeSource): + def __init__(self): + super().__init__(**{"path_to_yaml": "secoda.yaml"}) diff --git a/airbyte-integrations/connectors/source-secoda/source_secoda/spec.yaml b/airbyte-integrations/connectors/source-secoda/source_secoda/spec.yaml new file mode 100644 index 00000000000000..a511f4713bc8b8 --- /dev/null +++ b/airbyte-integrations/connectors/source-secoda/source_secoda/spec.yaml @@ -0,0 +1,18 @@ +documentationUrl: https://docs.airbyte.com/integrations/sources/secoda +connectionSpecification: + $schema: http://json-schema.org/draft-07/schema# + title: Secoda Spec + type: object + required: + - api_key + additionalProperties: true + properties: + # 'TODO: This schema defines the configuration required for the source. This usually involves metadata such as database and/or authentication information.': + api_key: + title: Api Key + type: string + description: >- + Your API Access Key. See here. The key is + case sensitive. + airbyte_secret: true diff --git a/docs/integrations/sources/secoda.md b/docs/integrations/sources/secoda.md new file mode 100644 index 00000000000000..dda0935be9a6af --- /dev/null +++ b/docs/integrations/sources/secoda.md @@ -0,0 +1,32 @@ +# Secoda API + +## Sync overview + +This source can sync data from the [Secoda API](https://docs.secoda.co/secoda-api). At present this connector only supports full refresh syncs meaning that each time you use the connector it will sync all available records from scratch. Please use cautiously if you expect your API to have a lot of records. + +## This Source Supports the Following Streams + +* collections +* tables +* terms + +### Features + +| Feature | Supported?\(Yes/No\) | Notes | +| :--- | :--- | :--- | +| Full Refresh Sync | Yes | | +| Incremental Sync | No | | + +### Performance considerations + +## Getting started + +### Requirements + +* API Access + +## Changelog + +| Version | Date | Pull Request | Subject | +| :------ | :--------- | :-------------------------------------------------------- | :----------------------------------------- | +| 0.1.0 | 2022-10-27 | [#18378](https://github.com/airbytehq/airbyte/pull/18378) | 🎉 New Source: Secoda API [low-code CDK] | \ No newline at end of file