* add boilerplate * configure schemas * add connector doc * update airbyte docs * edit spec * configure incremental sync * use custom components * add incremental acceptances tests * add partnerstack to source def * auto-bump connector version Co-authored-by: marcosmarxm <marcosmarxm@gmail.com> Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
30 lines
942 B
YAML
30 lines
942 B
YAML
documentationUrl: https://docs.airbyte.com/integrations/sources/partnerstack
|
|
connectionSpecification:
|
|
$schema: http://json-schema.org/draft-07/schema#
|
|
title: Partnerstack Spec
|
|
type: object
|
|
required:
|
|
- public_key
|
|
- private_key
|
|
additionalProperties: true
|
|
properties:
|
|
public_key:
|
|
type: string
|
|
title: Partnerstack Public key
|
|
description: The Live Public Key for a Partnerstack account.
|
|
airbyte_secret: true
|
|
private_key:
|
|
type: string
|
|
title: Partnerstack Private key
|
|
description: The Live Private Key for a Partnerstack account.
|
|
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"
|