1
0
mirror of synced 2025-12-30 12:04:43 -05:00
Files
airbyte/airbyte-integrations/connectors/source-paystack/source_paystack/spec.json
Pedro S. Lopez 938436bcc9 update connector specs and definitions with new .com documentation urls (#17585)
* update definitions with new .com docs urls

* update docs urls in specs

* update generators

* regenerate scaffold connectors

* remove unrelated changes

* update more urls

* update specs

* fix tests

* run `:airbyte-config:specs:generateSeedConnectorSpecs` to fix formatting

* revert docs changes to make pr more reviewable

* revert generator readme changes to make more reviewable

* fix mysql strict encrypt expected spec

* fix postgres expected spec
2022-10-11 11:04:23 -04: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": false,
"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."
}
}
}
}