Results 2 issues of Molandrious

### Preflight checklist - [X] I could not find a solution in the existing issues, docs, nor discussions. - [X] I agree to follow this project's [Code of Conduct](https://github.com/ory/network/blob/master/CODE_OF_CONDUCT.md). -...

bug

e.x. ``` class SomeModel(BaseXmlModel): dict_content: Dict @field_validator('dict_content', mode="before") def _check_dict_content( cls, value: Any, ) -> Any: try: return orjson.loads(value) except orjson.JSONDecodeError as exc: capture_exception(exc) pass return {} ``` if worked...

question