Processors
Compact Fields Processor
Recursively remove empty arrays and objects from a specified field to clean up null values and empty spaces in messages.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Recursively remove empty arrays and objects from a specified field to clean up null values and empty spaces in messages.
| Option | Description | Example |
|---|---|---|
| Fields | The field or fields to remove empty values from | . |
| Compact Options | Select to enable Compact for Arrays in the field, Objects in the field, or both | On / Off |
{
"baz": [],
"foo": "bar",
"quux": {
"corge": {},
"grant": 1
},
"quick": {}
}
| Option | Value |
|---|---|
| Field | . |
| Compact Array | On |
| Compact Object | On |
{
"foo": "bar",
"quux": {
"grant": 1
}
}
Was this page helpful?
