* 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
22 lines
627 B
JSON
22 lines
627 B
JSON
{
|
|
"documentationUrl": "https://docs.airbyte.com/integrations/sources/chargify",
|
|
"connectionSpecification": {
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "Chargify Spec",
|
|
"type": "object",
|
|
"required": ["api_key", "domain"],
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"api_key": {
|
|
"type": "string",
|
|
"description": "Chargify API Key.",
|
|
"airbyte_secret": true
|
|
},
|
|
"domain": {
|
|
"type": "string",
|
|
"description": "Chargify domain. Normally this domain follows the following format companyname.chargify.com"
|
|
}
|
|
}
|
|
}
|
|
}
|