1
0
mirror of synced 2025-12-30 21:02:43 -05:00
Files
airbyte/airbyte-integrations/connectors/source-pipedrive/source_pipedrive/spec.json
Serhii Chvaliuk b0baa75e11 Source Pipedrive: disable oAuth (#23705)
Signed-off-by: Sergey Chvalyuk <grubberr@gmail.com>
2023-03-03 20:07:06 +02:00

40 lines
1.3 KiB
JSON

{
"documentationUrl": "https://docs.airbyte.com/integrations/sources/pipedrive",
"connectionSpecification": {
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Pipedrive Spec",
"type": "object",
"required": ["replication_start_date"],
"additionalProperties": true,
"properties": {
"authorization": {
"type": "object",
"title": "API Key Authentication",
"required": ["auth_type", "api_token"],
"properties": {
"auth_type": {
"type": "string",
"const": "Token",
"order": 0
},
"api_token": {
"title": "API Token",
"type": "string",
"description": "The Pipedrive API Token.",
"airbyte_secret": true
}
}
},
"replication_start_date": {
"title": "Start Date",
"description": "UTC date and time in the format 2017-01-25T00:00:00Z. Any data before this date will not be replicated. When specified and not None, then stream will behave as incremental",
"pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$",
"examples": ["2017-01-25T00:00:00Z"],
"type": "string",
"format": "date-time"
}
}
},
"supportsIncremental": true
}