You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can't get rid of warnings (tried suppressing these but since these are not standard Python warnings and coming from Pydantic - can't suppress them).
(1) UserWarning: validate_string_parameters overrides an existing Pydantic @field_validator decorator
warnings.warn(f'{k} overrides an existing Pydantic {existing.decorator_info.decorator_repr} decorator')
(2) UserWarning: Field "model_sys_id" has conflict with protected namespace "model_"
Errors:
(in init
self.pydantic_validator.validate_python(data, self_instance=self)
pydantic_core._pydantic_core.ValidationError: 13 validation errors for TableModel
table_record_sys_id
Field required [type=missing, input_value={'table': 'incident'}, input_type=dict]
For further information visit https://errors.pydantic.dev/2.6/v/missing
name_value_pairs
Field required [type=missing, input_value={'table': 'incident'}, input_type=dict]
The text was updated successfully, but these errors were encountered:
Hello, I apologize for getting back to you so late on this, but was this resolved? There was a refactor done since this time last year that fixed a lot of those issues.
I can't get rid of warnings (tried suppressing these but since these are not standard Python warnings and coming from Pydantic - can't suppress them).
(1) UserWarning:
validate_string_parameters
overrides an existing Pydantic@field_validator
decoratorwarnings.warn(f'
{k}
overrides an existing Pydantic{existing.decorator_info.decorator_repr}
decorator')(2) UserWarning: Field "model_sys_id" has conflict with protected namespace "model_"
Errors:
(in init
self.pydantic_validator.validate_python(data, self_instance=self)
pydantic_core._pydantic_core.ValidationError: 13 validation errors for TableModel
table_record_sys_id
Field required [type=missing, input_value={'table': 'incident'}, input_type=dict]
For further information visit https://errors.pydantic.dev/2.6/v/missing
name_value_pairs
Field required [type=missing, input_value={'table': 'incident'}, input_type=dict]
The text was updated successfully, but these errors were encountered: