Simulation Eval Service Output
- 応答サンプル
-
これは、シミュレーション実行パスの例です。
1{ 2 "executionId" : "calcprovcersion + date+time of execution + uuid", 3 "simulationResults" : [ { 4 "name" : "totalPrice", 5 "value" : "400", 6 "datatype": "number" 7 }, { 8 "name" : "jewelryTotal", 9 "value" : "400", 10 "datatype": "number" 11 } ], 12 "simulationStepResults": { 13 "stepId" : { 14 "additionalInfo" : { 15 "versionNumber" : "calc proc no. or decision matrix no.", 16 "versionName" : "sub-proc/ calc matrix name", 17 "stepType" : "CalculationProcedure or DecisionMatrix" 18 }, 19 "stepResults": [ { 20 "name" : "input variable name will go here", 21 "value" : "", 22 "datatype": "number" 23 } ], 24 "stepInputs" : [ { 25 "name" : "jewelryTotal", 26 "value" : "400", 27 "datatype": "number" // using instanceof function 28 } ], 29 } 30 } 31} -
これは、シミュレーション実行失敗の例です。
1{ 2 "error" : { 3 "errorCode" : "" 4 "errorMsg" : "localized error msg", 5 "errorDetail" : "" // stacktrace 6 } 7}
| プロパ��ィ名 | 型 | 説明 | 検索条件グループとバージョン | 使用可能なバージョン |
|---|---|---|---|---|
| error | Simulation Error Output | シミュレーションのエラーの詳細 (発生した場合)。 | Small、53.0 | 53.0 |
| executionId | String | 要求が成功した後に生成される実行 ID。 | Small、53.0 | 53.0 |
| simulationResults | Simulation Variable Output[] | シミュレーションの出力変数のリスト。 | Small、53.0 | 53.0 |
| simulationStepResults | Map<String, Simulation Step Result Output> | 各ステップの入力と結果を含む、シミュレーションのステップのリスト。 | Small、53.0 | 53.0 |