gitgabrio opened a new issue, #1791:
URL: https://github.com/apache/incubator-kie-issues/issues/1791
Currently, jitexecutor returns the following json
{code:json}
{
"namespace":
"https://kie.apache.org/dmn/_857FE424-BEDA-4772-AB8E-2F4CDDB864AB",
"modelName": "loan_pre_qualification",
...
"decisionResults": [
...
{
"decisionId": "_21C50763-E49F-4D83-A824-16DA6AA87C64",
"decisionName": "Loan Pre-Qualification",
"result": {
"Qualification": "Qualified",
"Reason": "The borrower has been successfully prequalified for the
requested loan."
},
"messages": [],
"evaluationStatus": "SUCCEEDED"
}
],
"evaluationHitIds": {
"_1FA12B9F-288C-42E8-B77F-BE2D3702B7B6": 1,
"_C8FA33B1-AF6E-4A59-B7B9-6FDF1F495C44": 1
}
}
{code}
But evaluationIDs should be inside the decisions part
{code:json}
{
"namespace":
"https://kie.apache.org/dmn/_857FE424-BEDA-4772-AB8E-2F4CDDB864AB",
"modelName": "loan_pre_qualification",
...
"decisionResults": [
...
{
"decisionId": "_21C50763-E49F-4D83-A824-16DA6AA87C64",
"decisionName": "Loan Pre-Qualification",
"result": {
"Qualification": "Qualified",
"Reason": "The borrower has been successfully prequalified for the
requested loan."
},
"messages": [],
"evaluationStatus": "SUCCEEDED",
"evaluationHitIds": {
"_1FA12B9F-288C-42E8-B77F-BE2D3702B7B6": 1,
"_C8FA33B1-AF6E-4A59-B7B9-6FDF1F495C44": 1
}
}
]
}
{code}
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]