All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
schema.opensearch.create.template.operate-decision-instance.json Maven / Gradle / Ivy
{
"mappings": {
"dynamic": "strict",
"properties": {
"id": {
"type": "keyword"
},
"state": {
"type": "keyword"
},
"key": {
"type": "long"
},
"executionIndex": {
"type": "integer"
},
"partitionId": {
"type": "integer"
},
"position": {
"type": "long"
},
"evaluationDate": {
"format": "date_time || epoch_millis",
"type": "date"
},
"evaluationFailure": {
"type": "keyword"
},
"decisionRequirementsKey": {
"type": "long"
},
"decisionRequirementsId": {
"type":"keyword"
},
"processDefinitionKey": {
"type": "long"
},
"processInstanceKey": {
"type": "long"
},
"bpmnProcessId": {
"type": "keyword"
},
"elementInstanceKey": {
"type": "long"
},
"elementId": {
"type": "keyword"
},
"decisionId": {
"type": "keyword"
},
"decisionDefinitionId": {
"type": "keyword"
},
"decisionName": {
"type": "keyword"
},
"rootDecisionId": {
"type": "keyword"
},
"rootDecisionName": {
"type": "keyword"
},
"rootDecisionDefinitionId": {
"type": "keyword"
},
"decisionType": {
"type": "keyword"
},
"decisionVersion": {
"type": "keyword"
},
"result": {
"type": "text",
"index": false
},
"tenantId": {
"type": "keyword"
},
"evaluatedInputs": {
"type": "object",
"properties": {
"id": {
"type": "keyword"
},
"name": {
"type": "keyword"
},
"value": {
"type": "object",
"enabled": false
}
}
},
"evaluatedOutputs": {
"type": "object",
"properties": {
"id": {
"type": "keyword"
},
"name": {
"type": "keyword"
},
"value": {
"type": "object",
"enabled": false
},
"ruleId": {
"type": "keyword"
},
"ruleIndex": {
"type": "integer"
}
}
}
}
}
}