Skip to content

Commit

Permalink
Add an array of specs in docker image spec definition
Browse files Browse the repository at this point in the history
  • Loading branch information
tuliren committed Jun 8, 2022
1 parent c8cad84 commit 4083ef8
Showing 1 changed file with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,29 @@ additionalProperties: false
properties:
dockerImage:
type: string
# default spec field
spec:
type: object
existingJavaType: io.airbyte.protocol.models.ConnectorSpecification
# array of spec variants
specs:
type: array
items:
type: object
required:
- spec_type
- spec
properties:
spec_type:
type: string
title: Connector Spec Type
description: Connector Spec under a specific deployment mode
enum:
- CLOUD
- OSS
order: 1
spec:
type: object
title: Connector Spec
existingJavaType: io.airbyte.protocol.models.ConnectorSpecification
order: 2

0 comments on commit 4083ef8

Please sign in to comment.