Problem with extra json data appearing after export (protocolProfileBehavior and body raw appearing)

Hi, I’m having problems with postman exporting - when I export a collection, postman adds the following things to my json and I don’t know why:

“protocolProfileBehavior”: {}

and

“body”: {
“mode”: “raw”,
“raw”: “”
},

Git recognises these as changes, and I don’t want them in my json. It is a pain to have to go through the json after each export, and to have to revert every one of these lines. I’m sure it must be a setting somewhere, but can’t find it.

It has been awhile so I am not sure if you figured out what to do here but…

“protocolProfileBehavior”: {}
–to remove this one you need to make sure that every option on the “settings” tab for the calls are set to Default. If You see any that have the option to “Restore to Default”. Even if the option has the same value as your defaults it is putting an entry in there for that call

As for the following
“body”: {
“mode”: “raw”,
“raw”: “”
},

This is just saying that someone switched the body type from “none” to “raw”.
Again even if there is nothing in the body it will still change the body type to whichever type is selected.