I need to patch a date from a collection into a SharePoint list. The time will be static for every entry. It seems like a lot of extra work to patch the collection with a text value that has been formatted with a date/time format and then have to manipulate it even more to patch it to a SharePoint date/time column.
This is what I use when I am patching date/time to a single line of text field that has to have a date/time format for further use.

I was thinking it might be easier to define the collection date column on initialization into a date/time column if it's possible, in a similar way that you define a column as a number rather than text but I am not sure how I would include the time.
I have this so far:
Collect(
colEffort,
{
BusinessGroup: {
Id: 1,
Value: ""
},
ProductCategory: {
Id: 1,
Value: ""
},
Effort: "",
WeekEnding: 12/01/2020,
Manager: "",
Developer: "",
ShowSave: true
}
);
Patch(colEffort,
First(colEffort),
{
BusinessGroup: Blank(),
ProductCategory: Blank(),
WeekEnding: Blank()
}
)