Hey I am currently using the SDK to build a tap fo...
# singer-tap-development
r
Hey I am currently using the SDK to build a tap for salesmate.io and ran into an error error message: https://vim.cx/?4c2d208648546cc1#iw1v4fHeChb6girG5EVkTtLHT1mmVNSFK1qbGdhUj4K This error appeared when i tried to use
Copy code
poetry run tap-salesmate --discover
This is the member that is declared in the tap class
Copy code
config_jsonschema = th.PropertiesList(
        th.Property("lastActivityAt", th.DateTimeType, required=False),
        th.Property("instance_name", th.StringType, required=True),
        th.Property("sessionToken", th.StringType, required=True)
    ).to_dict()
When I change all those required to False, The Command works fine. Help on fixing it is highly appreciated!