Skip to main content
The given patterns work on the keys of the objects (key-1 in the example). The groups within the found key will be wrapped in an array element.
{
    "key-1": {
        "item-1":"item-1",
        "item-2":"item-2"
    }
}
Will become
{
    "key-1": [
        {
            "item-1": "item-1",
            "item-2": "item-2"
        }
    ]
}

Fields

Base path (required)

This is a path that is used to filter keys. More details can be found on the path reference page. Note: The base path impacts the recursive path, and it is only applied to elements that are found with the base path expression.

Recursive (optional)

By default, only objects of the first level that match the given path will be converted to arrays. When this option is activated, the conversion will continue in the underlying parts of the found data.

Recursive path (conditionally required)

This field is only required when “recursive” is activated. More details can be found on the path reference page.