This is what I use and it works great
curl -v -H "Content-Type:multipart/form-data" -F "someName={\"your\":\"json\"};type=application/json"
Note. I am on Windows, so the requirement for double quotes
Or
-F " someName=@someJsonFile.json ;type=application/json"
source share