* Fix formatting * try fixing quote escapes? * unignore sql files Co-authored-by: Edward Gao <edward.gao@airbyte.io>
40 lines
1.3 KiB
YAML
40 lines
1.3 KiB
YAML
documentationUrl: https://docs.airbyte.com/integrations/sources/plausible
|
|
connectionSpecification:
|
|
$schema: http://json-schema.org/draft-07/schema#
|
|
title: Plausible Spec
|
|
type: object
|
|
required:
|
|
- api_key
|
|
- site_id
|
|
additionalProperties: true
|
|
properties:
|
|
api_key:
|
|
type: string
|
|
title: Plausible API key
|
|
description: >-
|
|
Plausible API Key. See the <a
|
|
href="https://plausible.io/docs/stats-api">docs</a>
|
|
for information on how to generate this key.
|
|
airbyte_secret: true
|
|
site_id:
|
|
type: string
|
|
title: Target website domain
|
|
description: >-
|
|
The domain of the site you want to retrieve data for.
|
|
Enter the name of your site as configured on Plausible,
|
|
i.e., excluding "https://" and "www". Can be retrieved from
|
|
the 'domain' field in your Plausible site settings.
|
|
# Alphanumeric, '-', or '.' characters separated by a period
|
|
pattern: ^[A-Za-z0-9-.]+\.[A-Z-a-z0-9-.]+
|
|
examples:
|
|
- airbyte.com
|
|
- docs.airbyte.com
|
|
start_date:
|
|
type: string
|
|
title: Data start date
|
|
description: >-
|
|
Start date for data to retrieve, in ISO-8601 format.
|
|
pattern: ^[0-9]{4}-[0-9]{2}-[0-9]{2}$
|
|
examples:
|
|
- YYYY-MM-DD
|