We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Configuration (settings parsing, validation, etc.)
For example, currently
>>> from singer_sdk import typing as th >>> th.ArrayType(th.StringType()).to_dict() {'type': 'array', 'items': {'type': ['string']}}
Ideally, something like this would be supported
>>> from singer_sdk import typing as th >>> th.ArrayType(th.StringType(nullable=True)).to_dict() {'type': 'array', 'items': {'type': ['string', 'null']}}
>>> from singer_sdk import typing as th >>> th.ArrayType(th.CustomType({"type": ["string", "null"]})).to_dict() {'type': 'array', 'items': {'type': ['string', 'null']}}
The text was updated successfully, but these errors were encountered:
feat: Let nested properties be nullable
4b40976
Closes #2487
8b05077
4df8e21
316282e
edgarrmondragon
Successfully merging a pull request may close this issue.
Feature scope
Configuration (settings parsing, validation, etc.)
Description
For example, currently
Ideally, something like this would be supported
Workaround
The text was updated successfully, but these errors were encountered: