* 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>
23 lines
645 B
JSON
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"]
|
|
}
|
|
}
|
|
}
|
|
}
|