1
0
mirror of synced 2026-01-01 09:02:59 -05:00
Files
airbyte/airbyte-integrations/connectors/source-commercetools/source_commercetools/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

50 lines
1.4 KiB
JSON

{
"documentationUrl": "https://docs.airbyte.com/integrations/sources/commercetools",
"connectionSpecification": {
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Commercetools Source CDK Specifications",
"type": "object",
"required": [
"region",
"start_date",
"host",
"project_key",
"client_id",
"client_secret"
],
"additionalProperties": false,
"properties": {
"region": {
"type": "string",
"description": "The region of the platform.",
"examples": ["us-central1", "australia-southeast1"]
},
"host": {
"type": "string",
"enum": ["gcp", "aws"],
"description": "The cloud provider your shop is hosted. See: https://docs.commercetools.com/api/authorization"
},
"start_date": {
"type": "string",
"description": "The date you would like to replicate data. Format: YYYY-MM-DD.",
"examples": ["2021-01-01"],
"pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$"
},
"project_key": {
"type": "string",
"description": "The project key"
},
"client_id": {
"type": "string",
"description": "Id of API Client.",
"airbyte_secret": true
},
"client_secret": {
"type": "string",
"description": "The password of secret of API Client.",
"airbyte_secret": true
}
}
}
}