For the complete documentation index, see llms.txt. This page is also available as Markdown.

Data Transformation and Processing

Data transformation and processing type — convert data between formats, transform structured data, and extract specific values from source content. Use it to prepare data before it is passed to another automation step or external system.

json2xml-converter

Converts JSON data to XML.

{
  "type": "json2xml-converter",
  "configSchema": "{\"$schema\":\"http://json-schema.org/draft-07/schema\",\"additionalProperties\":false,\"title\":\"JSON to XML Converter\",\"type\":\"object\",\"properties\":{}}",
  "multipleInput": false,
  "outputParam": []
}

parameter-extractor

Extracts parameters from input data using XPath or JSONPath expressions.

{
  "type": "parameter-extractor",
  "configSchema": "{\"$schema\":\"http://json-schema.org/draft-07/schema\",\"additionalProperties\":false,\"title\":\"Parameter Extractor\",\"type\":\"object\",\"properties\":{\"inputFilename\":{\"description\":\"Input filename\",\"type\":\"string\"},\"executor\":{\"description\":\"Type of executor\",\"type\":\"string\",\"enum\":[\"xpath\",\"jsonpath\"]},\"outputParams\":{\"minItems\":1,\"uniqueItems\":true,\"description\":\"Set of output parameter names\",\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"expressions\":{\"minItems\":1,\"description\":\"Set of expressions for each parameter\",\"type\":\"array\",\"items\":{\"type\":\"string\"}}},\"required\":[\"executor\",\"outputParams\",\"expressions\"]}",
  "multipleInput": false,
  "outputParam": []
}

jsonata-converter

Transforms JSON data using a JSONata expression.

xslt-converter

Transforms XML data using an XSLT map.

eancom2xml-converter

Converts EANCOM data to XML.

excel2xml-converter

Converts Excel data to XML.

Last updated

Was this helpful?