Recursively walks an ObjectSchema and converts a DynamoDB table item
back to its entity representation.
"date" fields are converted from ISO 8601 strings to Date objects.
"object" fields recurse into their nested schema.
"array" fields map each item through the same conversion.
null and undefined values are stripped from the result so that absent
fields are represented as undefined (omitted) on the entity, consistent
with root-level nullable attribute behaviour.
Recursively walks an ObjectSchema and converts a DynamoDB table item back to its entity representation.
"date"fields are converted from ISO 8601 strings toDateobjects."object"fields recurse into their nested schema."array"fields map each item through the same conversion.nullandundefinedvalues are stripped from the result so that absent fields are represented asundefined(omitted) on the entity, consistent with root-level nullable attribute behaviour.