1
0
mirror of synced 2026-01-08 03:06:34 -05:00
Files
airbyte/airbyte-integrations/connectors/source-bigcommerce/source_bigcommerce/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

31 lines
1.0 KiB
JSON

{
"documentationUrl": "https://docs.airbyte.com/integrations/sources/bigcommerce",
"connectionSpecification": {
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "BigCommerce Source CDK Specifications",
"type": "object",
"required": ["start_date", "store_hash", "access_token"],
"additionalProperties": true,
"properties": {
"start_date": {
"type": "string",
"title": "Start Date",
"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}$"
},
"store_hash": {
"type": "string",
"title": "Store Hash",
"description": "The hash code of the store. For https://api.bigcommerce.com/stores/HASH_CODE/v3/, The store's hash code is 'HASH_CODE'."
},
"access_token": {
"type": "string",
"title": "Access Token",
"description": "Access Token for making authenticated requests.",
"airbyte_secret": true
}
}
}
}