singer_sdk.typing.IntegerType#

class singer_sdk.typing.IntegerType#

Integer type.

Examples

>>> IntegerType.type_dict
{'type': ['integer']}
>>> IntegerType().type_dict
{'type': ['integer']}
>>> IntegerType(allowed_values=[1, 2]).type_dict
{'type': ['integer'], 'enum': [1, 2]}