Apply Rules
This handler (com.rierino.handler.SimpleRuleEventHandler) provides ability to evaluate a list of rules and returns results based on matches.
Handler Parameters
Parameter
Definition
Example
Default
Actions
Process / ProcessSimpleRules
Field
Definition
Example
Default
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"eventMeta": {
"type": "object",
"properties": {
"domain": {
"type": "string",
"description": "Set of rules to apply",
"example": "risk_scoring"
},
"inputElement": {
"type": "string",
"description": "Json path for the input in event payload for query variables",
"example": "parameters"
},
"outputElement": {
"type": "string",
"description": "Json path for the output in response event payload where \"result\" or \"results\" element will be added",
"example": "$.decision"
}
}
}
}
}Parameter
Definition
Example
Default
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"eventMeta": {
"type": "object",
"properties": {
"parameters": {
"type": "object",
"properties": {
"inputPattern": {
"type": "string",
"description": "JMESPath pattern to apply on data input",
"example": "{id:id, group:data.group}"
},
"structure": {
"type": "string",
"description": "Whether the \"result\" of highest salience rule or \"results\" list of all matching rules should return",
"enum": ["single", "list"],
"default": "single",
"example": "list"
}
}
}
}
}
}
}Last updated
