Skip to main content

Module parse

Module parse 

Source
Expand description

§Parse Function Module

This module provides parsing capabilities for converting payload data into structured context data. It supports JSON and XML parsing, allowing workflows to start by loading payload into the context where it can be accessed by subsequent tasks.

§Features

  • Parse JSON payload into data field
  • Parse XML payload into JSON data field
  • Support for nested source paths (payload.body, data.field)
  • Automatic change tracking for audit trails

§Example Usage

{
    "name": "parse_json",
    "input": {
        "source": "payload",
        "target": "input_data"
    }
}

Structs§

ParseConfig
Configuration for parse functions.

Functions§

execute_parse_json
Execute parse_json operation.
execute_parse_xml
Execute parse_xml operation.