1
0
mirror of synced 2025-12-30 03:02:21 -05:00
Files
airbyte/airbyte-integrations/connectors/source-paystack/source_paystack/spec.json
Daryna Ishchenko a1da244d3c Source Paystack: enable in cloud (#24085)
* made needed changes for enabling in cloud

* added changelog

* auto-bump connector version

---------

Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
2023-03-16 13:45:19 +02:00

34 lines
1.3 KiB
JSON

{
"documentationUrl": "https://docs.airbyte.com/integrations/sources/paystack",
"connectionSpecification": {
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Paystack Source Spec",
"type": "object",
"required": ["secret_key", "start_date"],
"additionalProperties": true,
"properties": {
"secret_key": {
"type": "string",
"title": "Secret Key",
"pattern": "^(s|r)k_(live|test)_[a-zA-Z0-9]+$",
"description": "The Paystack API key (usually starts with 'sk_live_'; find yours <a href=\"https://dashboard.paystack.com/#/settings/developer\">here</a>).",
"airbyte_secret": true
},
"start_date": {
"type": "string",
"title": "Start Date",
"pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$",
"description": "UTC date and time in the format 2017-01-25T00:00:00Z. Any data before this date will not be replicated.",
"examples": ["2017-01-25T00:00:00Z"]
},
"lookback_window_days": {
"type": "integer",
"title": "Lookback Window (in days)",
"default": 0,
"minimum": 0,
"description": "When set, the connector will always reload data from the past N days, where N is the value set here. This is useful if your data is updated after creation."
}
}
}
}