1
0
mirror of synced 2026-01-01 18:02:53 -05:00
Files
airbyte/airbyte-integrations/connectors/source-hellobaton/source_hellobaton/spec.json
dluftspring e3313875a3 🎉 New Source: Hellobaton (#8461)
* Connector working through read method for hellobaton source

* Check connection method fixes

* Cleaning up directories and files +activity stream

* Changing webapp port for testing

* More testing ports

* Ports ports ports

* porto

* Reverting port changes

* Updating activity stream schema and config catalog

* Fixing flake lint failures

* fix schemas

* correct schemas and acceptance tests

* run format

* bump version in config files

* Docs page for hellobaton

* add doc

* run format

Co-authored-by: Marcos Marx <marcosmarxm@gmail.com>
2022-01-14 15:21:45 -03:00

23 lines
645 B
JSON

{
"documentationUrl": "https://docsurl.com",
"connectionSpecification": {
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Hellobaton Spec",
"type": "object",
"required": ["api_key", "company"],
"additionalProperties": false,
"properties": {
"api_key": {
"type": "string",
"description": "authentication key required to access the api endpoints",
"airbyte_secret": true
},
"company": {
"type": "string",
"description": "Company name that generates your base api url",
"examples": ["google", "facebook", "microsoft"]
}
}
}
}