Generate a JSON schema (as JSON) for the passed model or dynamically generated one
(type_: Any, *, title: Optional[NameFactory] = None, **schema_json_kwargs: Any)
| 88 | |
| 89 | |
| 90 | def schema_json_of(type_: Any, *, title: Optional[NameFactory] = None, **schema_json_kwargs: Any) -> str: |
| 91 | """Generate a JSON schema (as JSON) for the passed model or dynamically generated one""" |
| 92 | return _get_parsing_type(type_, type_name=title).schema_json(**schema_json_kwargs) |