post
https://api.heymantle.com/v1/flow/extensions/triggers/validate-schema
Pre-validate a triggerSchema before creating or updating a trigger. conditionsSchema is derived automatically from triggerSchema and does not need to be validated separately.
triggerSchema Structure
{
"properties": {
"propertyName": {
"type": "string|number|boolean|object|array|date|email|money",
"description": "Human-readable description",
"required": true,
"enum": ["allowed", "values"]
},
"nestedObject": {
"type": "object",
"properties": {
"childField": { "type": "string" }
}
}
}
}
Nested objects use type: "object" with a properties sub-object (max depth 5).