Hi All, I'm trying to create a google drive tap. when I'm invoking the tap for the stream given below, I'm receiving this error
2024-04-18 190640,291 | WARNING | tap-gdrive.files | Properties ('kind', 'incompleteSearch', 'files') were present in the 'files' stream but not found in catalog schema. Ignoring.
class FilesStream(googleDriveStream):
"""Define custom stream."""
name = "files"
path = "/files"
primary_keys: t.ClassVar[list[str]] = ["id"]
replication_key = None
# Optionally, you may also use `schema_filepath` in place of `schema`:
# schema_filepath = SCHEMAS_DIR / "users.json" # noqa: ERA001
schema = th.PropertiesList(
th.Property("name", th.StringType),
th.Property(
"id",
th.StringType,
description="The File's system ID",
),
th.Property(
"size",
th.StringType,
description="File size",
),
th.Property(
"originalFilename",
th.StringType,
description="File name",
)
).to_dict()
Can somebody help me in knowing, If the issue because I'm not adding all the properties of json response in schema, and in case if it's the issue, is there a way to be selective in schema?