Change Data Format

Change data format from one format to another
Component key: change-data-format#
DescriptionThis component allows you to convert data between JSON, XML, CSV, YAML formats, and to serialize or deserialize objects to and from each formats.
For example, the "JSON to XML" action will convert a JSON string that looks like this:
into an XML string that looks like this:
A "Deserialize XML" action, when run on the above XML, would convert the XML into an object whose keys can be referenced in subsequent steps.

#
Actions#
BINARY to CSVConvert BINARY to CSV | key: binaryToCsv
Input | Key | Notes |
---|---|---|
Data text / Required | data | BINARY data to convert to CSV |
#
BINARY to JSONConvert BINARY to JSON | key: binaryToJson
Input | Key | Notes |
---|---|---|
Data text / Required | data | BINARY data to convert to JSON |
#
BINARY to XMLConvert BINARY to XML | key: binaryToXml
Input | Key | Notes |
---|---|---|
Data text / Required | data | BINARY data to convert to XML |
#
BINARY to YAMLConvert BINARY to YAML | key: binaryToYaml
Input | Key | Notes |
---|---|---|
Data text / Required | data | BINARY data to convert to YAML |
#
CSV to BINARYConvert CSV to BINARY | key: csvToBinary
Input | Key | Notes | Example |
---|---|---|---|
Data text / Required | data | CSV data to convert to BINARY |
#
CSV to JSONConvert CSV to JSON | key: csvToJson
Input | Key | Notes | Example |
---|---|---|---|
Data text / Required | data | CSV data to convert to JSON |
#
CSV to XMLConvert CSV to XML | key: csvToXml
Input | Key | Notes | Example |
---|---|---|---|
Data text / Required | data | CSV data to convert to XML |
#
CSV to YAMLConvert CSV to YAML | key: csvToYaml
Input | Key | Notes | Example |
---|---|---|---|
Data text / Required | data | CSV data to convert to YAML |
#
Deserialize BINARYDeserialize BINARY data | key: deserializeFromBinary
Input | Key | Notes |
---|---|---|
Data text / Required | data | BINARY text to deserialize to it can be referenced in a subsequent step. |
#
Deserialize CSVDeserialize CSV data | key: deserializeFromCsv
Input | Key | Notes | Example |
---|---|---|---|
Data text / Required | data | CSV text to deserialize to it can be referenced in a subsequent step. |
#
Deserialize JSONDeserialize JSON data | key: deserializeFromJson
Input | Key | Notes | Example |
---|---|---|---|
Data text / Required | data | JSON text to deserialize to it can be referenced in a subsequent step. |
#
Deserialize XMLDeserialize XML data | key: deserializeFromXml
Input | Key | Notes | Example |
---|---|---|---|
Data text / Required | data | XML text to deserialize to it can be referenced in a subsequent step. |
#
Deserialize YAMLDeserialize YAML data | key: deserializeFromYaml
Input | Key | Notes | Example |
---|---|---|---|
Data text / Required | data | YAML text to deserialize to it can be referenced in a subsequent step. |
#
JSON to BINARYConvert JSON to BINARY | key: jsonToBinary
Input | Key | Notes | Example |
---|---|---|---|
Data text / Required | data | JSON data to convert to BINARY |
#
JSON to CSVConvert JSON to CSV | key: jsonToCsv
Input | Key | Notes | Example |
---|---|---|---|
Data text / Required | data | JSON data to convert to CSV |
#
JSON to XMLConvert JSON to XML | key: jsonToXml
Input | Key | Notes | Example |
---|---|---|---|
Data text / Required | data | JSON data to convert to XML |
#
JSON to YAMLConvert JSON to YAML | key: jsonToYaml
Input | Key | Notes | Example |
---|---|---|---|
Data text / Required | data | JSON data to convert to YAML |
#
Pretty PrintFormat data to be more human-readable | key: prettyPrint
Input | Key | Notes |
---|---|---|
Data text / Required | data | Data to pretty print |
#
XML to BINARYConvert XML to BINARY | key: xmlToBinary
Input | Key | Notes | Example |
---|---|---|---|
Data text / Required | data | XML data to convert to BINARY |
#
XML to CSVConvert XML to CSV | key: xmlToCsv
Input | Key | Notes | Example |
---|---|---|---|
Data text / Required | data | XML data to convert to CSV |
#
XML to JSONConvert XML to JSON | key: xmlToJson
Input | Key | Notes | Example |
---|---|---|---|
Data text / Required | data | XML data to convert to JSON |
#
XML to YAMLConvert XML to YAML | key: xmlToYaml
Input | Key | Notes | Example |
---|---|---|---|
Data text / Required | data | XML data to convert to YAML |
#
YAML to BINARYConvert YAML to BINARY | key: yamlToBinary
Input | Key | Notes | Example |
---|---|---|---|
Data text / Required | data | YAML data to convert to BINARY |
#
YAML to CSVConvert YAML to CSV | key: yamlToCsv
Input | Key | Notes | Example |
---|---|---|---|
Data text / Required | data | YAML data to convert to CSV |
#
YAML to JSONConvert YAML to JSON | key: yamlToJson
Input | Key | Notes | Example |
---|---|---|---|
Data text / Required | data | YAML data to convert to JSON |
#
YAML to XMLConvert YAML to XML | key: yamlToXml
Input | Key | Notes | Example |
---|---|---|---|
Data text / Required | data | YAML data to convert to XML |