The platform supports various mapping techniques to facilitate efficient data transformation and extraction from JSON schemas. The supported types include Simple Path Access, Functions with Arguments, Relative Mapping, Filters, and Combined Expressions.
1. Simple Path Access
Access specific properties within the JSON schema using absolute paths.
Examples
Accessing a property
plaintextCopy code$.UserDetails.name
Accesses the name property of the UserDetails object.
Accessing nested properties
plaintextCopy code$.Order.items.productId
Accesses the productId property of an object within Order.items.
2. Functions with Arguments
Perform operations like concatenation, summation, or finding the maximum value using built-in functions.