Is there schema validation on the content page in PATCH /assignments/{assignmentID}/actions/{actionID}?
We will shortly be exposing some of our cases using constellation to a digital channel and there is a requirement for some robust schema validation. The current api call that is used to complete an assignment
PATCH assignments/{assignmentID}/actions/{actionID}
has some schema validation of the common reusable properties but I cannot see a way to validate the custom properties that are passed to this api call in the content page.
For example if I need to capture a Customers Name in an assignment I would pass something like this
{
"content":{
"customersName": "Bob Jones"
},
}
Is there any way to apply some schema validation to customersName?