Recursively walks an ObjectSchema and converts the entity value to its
DynamoDB representation.
"date" fields are converted from Date objects to ISO 8601 strings.
"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 nullable
fields set to null are removed from the stored object rather than persisted
as null in DynamoDB.
Recursively walks an ObjectSchema and converts the entity value to its DynamoDB representation.
"date"fields are converted fromDateobjects to ISO 8601 strings."object"fields recurse into their nested schema."array"fields map each item through the same conversion.nullandundefinedvalues are stripped from the result so that nullable fields set tonullare removed from the stored object rather than persisted asnullin DynamoDB.