Skip to main content
Converts a YAML string into a data object. Use this when a value arrives as YAML wrapped up in a single piece of text, such as a configuration block or a document pulled from a file or API field. It reads the text and turns it back into structured data, so the keys, values, and lists inside become regular fields you can read and map.

Fields

This mapper has no settings to configure. Point it at the YAML text you want to parse and it does the rest.

Sample data

FieldValue
(no settings)
Input:
{
    "payload": "sku: A1\nname: Wool scarf\nprice: 19.99\ninStock: true"
}
Output:
{
    "payload": {
        "sku": "A1",
        "name": "Wool scarf",
        "price": 19.99,
        "inStock": true
    }
}