I'm trying to import a date from a date picker in power apps to a flow to then add an item to a SharePoint list, but this error keeps happening and doesn't let the flow run. I've tried multiple ways of formatting a date, such as simply "DatePicker.SelectedDate" or "Text(DatePicker.SelectedDate,"[$-en-US]dd/mm/yyyy") or importing that to a text box and entering "TextBox.Text" and nothing works at all. Here's the full error:
"""testflowapp.Run failed: { "error": { "code": "TriggerInputSchemaMismatch", "message": "The input body for trigger 'manual' of type 'Request' did not match its schema definition. Error details: 'String '09/12/2022' does not validate against format 'date'.,String '21/12/2022' does not validate against format 'date'.,String '14/12/2022' does not validate against format 'date'.,String '17/02/2023' does not validate against format 'date'.'." }"""
One thing I also find strange is that there are 5 total date pickers on this app but, as you can read in the message above, one of them never gives this error. It's especially weird because I simply copy and pasted it the other times so that I didn't have to format it again, so all their parameters are the exact same (except for the actual date that's written there). Is it ever something related to the SharePoint list itself or is it related to the app? Thanks to everyone who helps in advance.