Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for _is_json_field (0.08 seconds)

  1. fastapi/dependencies/utils.py

    
    def _is_json_field(field: ModelField) -> bool:
        return any(type(item) is Json for item in field.field_info.metadata)
    
    
    def _get_multidict_value(
        field: ModelField, values: Mapping[str, Any], alias: str | None = None
    ) -> Any:
        alias = alias or get_validation_alias(field)
        if (
            (not _is_json_field(field))
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 38.7K bytes
    - Click Count (3)
Back to Top