Skip to content

Using Filter Output in Error Messages

Anything returned by the JSONata filter can be used in the error message.

Example filter output:

{
  "id": 321003,
  "name": "Generic Model 21.10",
  "parameterName": "Assembly Code",
  "ActualValue": "28.10"
}

Example usage:

Element: {{name}} Parameter: {{parameterName}} Current value: {ActualValue}

{ActualValue} and {ExpectedValue} use single curly braces — these are system-injected values filled in by DAQS at render time, not fields from the filter output.

All other placeholders use double curly braces: {{name}}, {{parameterName}}, {{assemblyCode}}, etc. These come directly from fields in the filter output object.