Filter and manipulate data with transform actions and inline functions.
core.transform.reshape
: Reshape and manipulate data.core.transform.filter
: Filter a list of items.core.transform.is_in
: Check if an item is in a list.core.transform.not_in
: Check if an item is not in a list.core.transform.deduplicate
: Deduplicate a list of JSON objects given a list of keys.core.transform.apply
: Apply a python_lambda
function to a value.core.transform.map
: Apply a python_lambda
function to each item in a list.core.transform.filter
, core.transform.map
) accept an input called python_lambda
.
python_lambda
is a Python Lambda function given as a string.
It allows you to use small snippets of Python code to transform data and define conditions.
python_lambda
with the >-
and >
YAML block modifiers
to avoid these issues: