20
20
from openapi_schema_validator ._types import is_string
21
21
22
22
from openapi_core .extensions .models .factories import ModelPathFactory
23
- from openapi_core .schema .schemas import get_all_properties
23
+ from openapi_core .schema .schemas import get_schema_properties
24
24
from openapi_core .spec import Spec
25
25
from openapi_core .unmarshalling .schemas .datatypes import FormattersDict
26
26
from openapi_core .unmarshalling .schemas .enums import UnmarshalContext
@@ -268,7 +268,9 @@ def _unmarshal_properties(self, value: Any) -> Any:
268
268
else :
269
269
properties .update (any_of_properties )
270
270
271
- for prop_name , prop in get_all_properties (self .schema ).items ():
271
+ # unmarshal schema properties
272
+ schema_properties = get_schema_properties (self .schema )
273
+ for prop_name , prop in schema_properties .items ():
272
274
read_only = prop .getkey ("readOnly" , False )
273
275
if self .context == UnmarshalContext .REQUEST and read_only :
274
276
continue
@@ -286,23 +288,24 @@ def _unmarshal_properties(self, value: Any) -> Any:
286
288
prop_value
287
289
)
288
290
291
+ # unmarshal additional properties
289
292
additional_properties = self .schema .getkey (
290
293
"additionalProperties" , True
291
294
)
292
295
if additional_properties is not False :
293
296
# free-form object
294
297
if additional_properties is True :
295
- additional_prop_schema = Spec . from_dict ({})
298
+ unmarshal_func = lambda x : x
296
299
# defined schema
297
300
else :
298
301
additional_prop_schema = self .schema / "additionalProperties"
299
- additional_prop_unmarshaler = self . unmarshallers_factory . create (
300
- additional_prop_schema
301
- )
302
+ unmarshal_func = (
303
+ self . unmarshallers_factory . create ( additional_prop_schema )
304
+ )
302
305
for prop_name , prop_value in value .items ():
303
- if prop_name in properties :
306
+ if prop_name in schema_properties :
304
307
continue
305
- properties [prop_name ] = additional_prop_unmarshaler (prop_value )
308
+ properties [prop_name ] = unmarshal_func (prop_value )
306
309
307
310
return properties
308
311
0 commit comments