I'm creating a connector for deepl.com
This is the JSON notation included in RequestBody:
{
"jsonrpc": "2.0",
"method": "LMT_handle_jobs",
"params": {
"jobs": [{
"kind": "default",
"raw_en_sentence": "@Model.Text"
}],
"lang": {
"source_lang_user_selected": "@ModelFrom",
"target_lang": "@ModelTo"
},
"priority": -1
}
}
Executing the connector produces an exception (failed to compile).
Is there a problem with the arrays in JSON?