1
0
mirror of synced 2026-01-02 03:02:26 -05:00
Files
airbyte/airbyte-integrations/connectors/source-close-com/source_close_com/spec.json
Christo Grabowski 9217c1221b Source Close.com: add human readable titles to api-key and `start_d… (#27950)
* Source Close.com: add human readable titles to `api-key` and `start_date` fields 

- Added `api-key` title: `API Key`
- Added `start_date` title: `Replication Start Date`

* update version to 0.4.1 in metadata.yaml

* update version to 0.4.1 in Dockerfile

* update close-com.md changelog to 0.4.1

* Update airbyte-integrations/connectors/source-close-com/source_close_com/spec.json

Co-authored-by: Sherif A. Nada <snadalive@gmail.com>

---------

Co-authored-by: Sherif A. Nada <snadalive@gmail.com>
2023-07-11 11:48:26 -04:00

28 lines
1008 B
JSON

{
"documentationUrl": "https://docs.airbyte.com/integrations/sources/close-com",
"connectionSpecification": {
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Close.com Spec",
"type": "object",
"required": ["api_key"],
"additionalProperties": true,
"properties": {
"api_key": {
"title": "API Key",
"type": "string",
"description": "Close.com API key (usually starts with 'api_'; find yours <a href=\"https://app.close.com/settings/api/\">here</a>).",
"airbyte_secret": true
},
"start_date": {
"title": "Replication Start Date",
"type": "string",
"description": "The start date to sync data; all data after this date will be replicated. Leave blank to retrieve all the data available in the account. Format: YYYY-MM-DD.",
"examples": ["2021-01-01"],
"default": "2021-01-01",
"pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$",
"format": "date-time"
}
}
}
}