ERROR : "Invalid Validation" Post to /api/todos to create a todo Associated with specific user

so, i have a relation field for content type “todo” that User has many Todos
Sending tye request with body contain “users_permissions_user” and writing the id , but getting an error
Question details and code i tried on stack over flow:

This topic has been created from a Discord post (1298132775337197632) to give it more visibility.
It will be on Read-Only mode here.
Join the conversation on Discord

You don’t need connect

You can do just user_permissons_user: { id: userId }

tried it , doesn’t work

Try putting it in array [{ id: …}]

user_permissons_user: userId ?

Well it says invalid key in body likely there is some schema misalignment

It’s there a schema.json of this

I meant without the object {id: userId}, but directly with userId

Ah for relations you need to pass { id: someId } normally