Validate Event
These actions provide ability to check validity of event contents using different validator types.
Validate Event Actions
Validate
Field
Definition
Example
Default
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"eventMeta": {
"type": "object",
"properties": {
"inputElement": {
"type": "string",
"definition": "Json path in payload to use",
"example": "parameters",
"default": null
},
"outputElement": {
"type": "string",
"definition": "Json path in payload to return results",
"example": "result",
"default": null
}
}
}
}
}Parameter
Definition
Example
Default
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"eventMeta": {
"type": "object",
"properties": {
"parameters": {
"type": "object",
"properties": {
"outputPattern": {
"type": "string",
"definition": "JMESPath expression to convert results",
"example": null,
"default": null
},
"*": {
"type": "string",
"definition": "Additional parameters used by the validator class",
"example": "pattern=(value='a')",
"default": null
}
}
}
}
}
}
}Last updated
