/*
Enriches your source dataset with related information that is in a lookup dataset.

This function emulates the behavior of the following Props & Transforms clauses:
1. LOOKUP
*/
function apply_{function_name}_lookups($source: dataset):dataset {{
    return | from $source

           // lookup extractions
           {lookups}

           // default_lookup_extractions
           {default_lookup_extractions}

           // scripted_lookups
           {scripted_lookups}
}}
