1
0
mirror of synced 2026-01-27 16:02:00 -05:00
Files
airbyte/airbyte-integrations/connectors/source-plaid/source_plaid/spec.json
Usman Ali bedccd6146 Source Plaid: minimum last updated datetime support added for Capital One items (#15231)
* Minimum last updated datetime added for CapitalOne institute

* Update docs

* Correct docs formatting

* Change additionalProperties value to true

* Update additionalProperties value

* suggested change:

- set min_last_updated_datetime using a named parameter when AccountsBalanceGetRequestOptions is constructed
- use a local variable getRequest to keep the line of client request (slightly) shorter
- re-order the list of changes in plaid.md
- fix the additionalProperties in spec.json, which resolves the backward compatibility test

* auto-bump connector version [ci skip]

Co-authored-by: Sajarin <sajarindider@gmail.com>
Co-authored-by: Yiyang Li <yiyangli2010@gmail.com>
Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
2022-09-01 13:09:53 -04:00

41 lines
1.3 KiB
JSON

{
"documentationUrl": "https://plaid.com/docs/api/",
"connectionSpecification": {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"required": ["access_token", "api_key", "client_id", "plaid_env"],
"additionalProperties": true,
"properties": {
"access_token": {
"type": "string",
"title": "Access Token",
"description": "The end-user's Link access token."
},
"api_key": {
"title": "API Key",
"type": "string",
"description": "The Plaid API key to use to hit the API.",
"airbyte_secret": true
},
"client_id": {
"title": "Client ID",
"type": "string",
"description": "The Plaid client id"
},
"plaid_env": {
"title": "Plaid Environment",
"type": "string",
"enum": ["sandbox", "development", "production"],
"description": "The Plaid environment"
},
"start_date": {
"title": "Start Date",
"type": "string",
"description": "The date from which you'd like to replicate data for Plaid in the format YYYY-MM-DD. All data generated after this date will be replicated.",
"examples": ["2021-03-01"],
"pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$"
}
}
}
}