diff --git a/airbyte-cdk/python/airbyte_cdk/sources/declarative/declarative_stream.py b/airbyte-cdk/python/airbyte_cdk/sources/declarative/declarative_stream.py index feae3fa4d51a..100a76a1035f 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/declarative/declarative_stream.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/declarative/declarative_stream.py @@ -20,8 +20,8 @@ class DeclarativeStream(Stream, JsonSchemaMixin): DeclarativeStream is a Stream that delegates most of its logic to its schema_load and retriever Attributes: - stream_name (str): stream name - stream_primary_key (Optional[Union[str, List[str], List[List[str]]]]): the primary key of the stream + name (str): stream name + primary_key (Optional[Union[str, List[str], List[List[str]]]]): the primary key of the stream schema_loader (SchemaLoader): The schema loader retriever (Retriever): The retriever config (Config): The user-provided configuration as specified by the source's spec diff --git a/airbyte-cdk/python/airbyte_cdk/sources/declarative/schema/json_schema.py b/airbyte-cdk/python/airbyte_cdk/sources/declarative/schema/json_schema.py index e3a42dd04f17..acdf92e6a35f 100644 --- a/airbyte-cdk/python/airbyte_cdk/sources/declarative/schema/json_schema.py +++ b/airbyte-cdk/python/airbyte_cdk/sources/declarative/schema/json_schema.py @@ -25,7 +25,6 @@ class JsonSchema(SchemaLoader, JsonSchemaMixin): """ file_path: Union[InterpolatedString, str] - name: str config: Config options: InitVar[Mapping[str, Any]]