Skip to content

Commit 38c08e7

Browse files
committed
reorder and fix descriptions
1 parent e315dcb commit 38c08e7

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

airbyte_cdk/sources/declarative/declarative_component_schema.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -299,8 +299,8 @@ definitions:
299299
- "$ref": "#/definitions/CustomAuthenticator"
300300
- "$ref": "#/definitions/OAuthAuthenticator"
301301
- "$ref": "#/definitions/JwtAuthenticator"
302-
- "$ref": "#/definitions/NoAuth"
303302
- "$ref": "#/definitions/SessionTokenAuthenticator"
303+
- "$ref": "#/definitions/NoAuth"
304304
- "$ref": "#/definitions/LegacySessionTokenAuthenticator"
305305
examples:
306306
- authenticators:
@@ -1467,18 +1467,18 @@ definitions:
14671467
requester:
14681468
description: Requester component that describes how to prepare HTTP requests to send to the source API.
14691469
anyOf:
1470-
- "$ref": "#/definitions/CustomRequester"
14711470
- "$ref": "#/definitions/HttpRequester"
1471+
- "$ref": "#/definitions/CustomRequester"
14721472
download_target_extractor:
14731473
description: Responsible for fetching the url where the file is located. This is applied on each records and not on the HTTP response
14741474
anyOf:
1475-
- "$ref": "#/definitions/CustomRecordExtractor"
14761475
- "$ref": "#/definitions/DpathExtractor"
1476+
- "$ref": "#/definitions/CustomRecordExtractor"
14771477
file_extractor:
14781478
description: Responsible for fetching the content of the file. If not defined, the assumption is that the whole response body is the file content
14791479
anyOf:
1480-
- "$ref": "#/definitions/CustomRecordExtractor"
14811480
- "$ref": "#/definitions/DpathExtractor"
1481+
- "$ref": "#/definitions/CustomRecordExtractor"
14821482
filename_extractor:
14831483
description: Defines the name to store the file. Stream name is automatically added to the file path. File unique ID can be used to avoid overwriting files. Random UUID will be used if the extractor is not provided.
14841484
type: string
@@ -1918,7 +1918,7 @@ definitions:
19181918
deprecated: true
19191919
deprecation_message: "Use `url` field instead."
19201920
title: API Base URL
1921-
description: Deprecated, use the `url` instead. Base URL of the API source. Do not put sensitive information (e.g. API tokens) into this field - Use the Authentication component for this.
1921+
description: Deprecated, use the `url` instead. Base URL of the API source. Do not put sensitive information (e.g. API tokens) into this field - Use the Authenticator component for this.
19221922
linkable: true
19231923
type: string
19241924
interpolation_context:
@@ -1937,7 +1937,7 @@ definitions:
19371937
- "https://example.com/api/v1/resource/{{ next_page_token['id'] }}"
19381938
url:
19391939
title: API Endpoint URL
1940-
description: The URL of the source API endpoint. Do not put sensitive information (e.g. API tokens) into this field - Use the Authentication component for this.
1940+
description: The URL of the source API endpoint. Do not put sensitive information (e.g. API tokens) into this field - Use the Authenticator component for this.
19411941
type: string
19421942
interpolation_context:
19431943
- config
@@ -1957,7 +1957,7 @@ definitions:
19571957
deprecated: true
19581958
deprecation_message: "Use `url` field instead."
19591959
title: URL Path
1960-
description: Deprecated, use the `url` instead. Path the specific API endpoint that this stream represents. Do not put sensitive information (e.g. API tokens) into this field - Use the Authentication component for this.
1960+
description: Deprecated, use the `url` instead. Path the specific API endpoint that this stream represents. Do not put sensitive information (e.g. API tokens) into this field - Use the Authenticator component for this.
19611961
type: string
19621962
interpolation_context:
19631963
- config
@@ -1988,7 +1988,6 @@ definitions:
19881988
linkable: true
19891989
description: Authentication method to use for requests sent to the API.
19901990
anyOf:
1991-
- "$ref": "#/definitions/NoAuth"
19921991
- "$ref": "#/definitions/ApiKeyAuthenticator"
19931992
- "$ref": "#/definitions/BasicHttpAuthenticator"
19941993
- "$ref": "#/definitions/BearerAuthenticator"
@@ -1997,6 +1996,7 @@ definitions:
19971996
- "$ref": "#/definitions/SessionTokenAuthenticator"
19981997
- "$ref": "#/definitions/SelectiveAuthenticator"
19991998
- "$ref": "#/definitions/CustomAuthenticator"
1999+
- "$ref": "#/definitions/NoAuth"
20002000
- "$ref": "#/definitions/LegacySessionTokenAuthenticator"
20012001
fetch_properties_from_endpoint:
20022002
title: Fetch Properties from Endpoint

0 commit comments

Comments
 (0)