Doing a simple JObject.parse(inJson) from Newtonsoft.json gives me the error Unable to cast object of type 'Newtonsoft.Json.Linq.JValue' to type 'Newtonsoft.Json.Linq.JObject

Hi get the exception while parsing itself at this line:-
JObject result = JObject.Parse(inJSON);

I cannot do anything after this.

You can run a test by executing the above piece of code and using the below JSON:-

{
"img" : {
      "exists" : "true",
      "motiv_id" : "G_NSA0_XX_01188",
      "relationship" : "exakt",
      "file_name" : "G_NSA0_XX_01188I.jpg",
      "file_full_path" : "F:\\DATA\\source\\manufacturer\\siemens\\430_idb_asset\\010__variant\\G_NSA0_XX_01188I.jpg",
      "binary" : "",
      "size" : [300, 300]
    }
}```