JSONata modules
- Topics:
- Workfront Fusion
The Adobe Workfront Fusion JSONata connector allows you to query JSON objects. This module does not require a connection.
Access requirements
Expand to view access requirements for the functionality in this article.
You must have the following access to use the functionality in this article:
Adobe Workfront package | Any |
Adobe Workfront license |
New: Standard Or Current: Work or higher |
Adobe Workfront Fusion license** |
Current: No Workfront Fusion license requirement. Or Legacy: Any |
Product |
New:
Or Current: Your organization must purchase Adobe Workfront Fusion. |
For more detail about the information in this table, see Access requirements in documentation.
For information on Adobe Workfront Fusion licenses, see Adobe Workfront Fusion licenses.
JSONata module and its fields
Evaluate
This action module queries a JSON object and returns an array.
Expression | Enter the expression that you want to use to evaluate the JSON object. |
Data | Enter the JSON object to evaluate. |
Stringify output | Enable this option to convert output to a string. |
Example:
The goal is to return an array of names from the following JSON object:
{
"people": [
{ "name": "Alice", "age": 30 },
{ "name": "Bob", "age": 25 },
{ "name": "Charlie", "age": 35 }
]
}
- In the expression field, enter
people.name
. - In the data field, enter the JSON object.
The module returns an array of names pulled from the JSON object.