Skip to content

Commit e315dcb

Browse files
committed
fix primary key and request body titles
1 parent 9dc835b commit e315dcb

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

airbyte_cdk/sources/declarative/declarative_component_schema.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1417,7 +1417,6 @@ definitions:
14171417
- "$ref": "#/definitions/CustomIncrementalSync"
14181418
primary_key:
14191419
title: Primary Key
1420-
description: The primary key of the stream.
14211420
"$ref": "#/definitions/PrimaryKey"
14221421
default: ""
14231422
schema_loader:
@@ -2085,7 +2084,7 @@ definitions:
20852084
field: "updated_at"
20862085
order: "ascending"
20872086
request_body:
2088-
title: Request Body Payload to be send as a part of the API request.
2087+
title: Request Body
20892088
description: Specifies how to populate the body of the request with a payload. Can contain nested objects.
20902089
anyOf:
20912090
- "$ref": "#/definitions/RequestBodyPlainText"
@@ -3155,14 +3154,19 @@ definitions:
31553154
anyOf:
31563155
- type: string
31573156
title: Single Key
3157+
description: The single top-level field to use as the primary key.
31583158
- type: array
31593159
title: Composite Key
3160+
description: An array of top-level fields representing a composite primary key.
31603161
items:
31613162
type: string
31623163
- type: array
31633164
title: Composite Key of Nested Fields
3165+
description: An array of arrays representing a composite primary key where the fields are nested fields.
31643166
items:
31653167
type: array
3168+
title: Nested Field Path
3169+
description: Path to the nested field in the record.
31663170
items:
31673171
type: string
31683172
default: ""

0 commit comments

Comments
 (0)