# Feature Request As per https://github.com/koxudaxi/pydantic-pycharm-plugin/issues/36, it's hard to PyCharm plugin to reveal actual expected type for the field. Same goes for #1034 (https://github.com/samuelcolvin/pydantic/pull/1034#discussion_r352244262) Why wouldn't we have special attribute, pointing to the actual expected type on all pydantic specific types? Maybe have a base-generic class and declare types by inheritance from it, like: ```py class PydanticType(Generic[T]): __expected_type__ = T __get_validators__: Callable[..., CallableGenerator] ... # and then: class StrictBool(bool, PydanticType[bool]: ... ```