What is unmarshalling in openapi-core
masterUnmarshalling is the process of converting primitive schema type values into higher-level Python objects based on the format keyword in an OpenAPI specification.
Before unmarshalling, the data is first validated against the provided schema.
Built-in format unmarshallers include:
date: converts a string into a date objectdate-time: converts a string into a datetime objectbinary: converts a string into a byte objectuuid: converts a string into a UUID objectbyte: decodes a Base64-encoded string
Note: For backward compatibility, OpenAPI 3.1 unmarshalling currently supports byte and binary format handling.