32 lines
888 B
YAML
32 lines
888 B
YAML
documentationUrl: https://docs.airbyte.com/integrations/sources/punk-api
|
|
connectionSpecification:
|
|
$schema: http://json-schema.org/draft-07/schema#
|
|
title: Punk Api Spec
|
|
type: object
|
|
required:
|
|
- brewed_before
|
|
- brewed_after
|
|
additionalProperties: true
|
|
properties:
|
|
id:
|
|
title: Beers with specific ID
|
|
type: string
|
|
description: To extract specific data with Unique ID
|
|
examples:
|
|
- 1
|
|
- 22
|
|
brewed_before:
|
|
title: Brewed before data to get incremental reads
|
|
type: string
|
|
description: To extract specific data with Unique ID
|
|
pattern: ^[0-9]{2}-[0-9]{4}$
|
|
examples:
|
|
- MM-YYYY
|
|
brewed_after:
|
|
title: Brewed after data to get incremental reads
|
|
type: string
|
|
description: To extract specific data with Unique ID
|
|
pattern: ^[0-9]{2}-[0-9]{4}$
|
|
examples:
|
|
- MM-YYYY
|