24 lines
575 B
YAML
24 lines
575 B
YAML
documentationUrl: https://docsurl.com
|
|
connectionSpecification:
|
|
$schema: http://json-schema.org/draft-07/schema#
|
|
title: Twitter Fetcher
|
|
type: object
|
|
required:
|
|
- api_key
|
|
- accounts
|
|
- start_time
|
|
properties:
|
|
api_key:
|
|
type: string
|
|
description: "API Key to authentify to twitter"
|
|
airbyte_secret: true
|
|
accounts:
|
|
type: array
|
|
description: "List of accounts needing to be extracted"
|
|
items:
|
|
type: string
|
|
start_time:
|
|
type: string
|
|
description: "Start date of fetching data"
|
|
format: date-time
|