Parse
Read JSON, YAML, and other formats into values.
Parse
from_csvParses a CSV string into a list of rows, so a serialized table (a
report export, a spreadsheet dump) becomes data that later template steps can
filter and pluck.{{ body | from_csv }}from_jsonParses a JSON object string into a map, so a serialized payload (an
API response body, a config blob) becomes data that later template steps can
index into.{{ body | from_json }}from_yamlParses a YAML document into a map, so a config file or a manifest
becomes data that later template steps can index into.{{ body | from_yaml }}