SPL: The Professional Choice for Processing Multi-Layered JSON Data
Business data often exhibits hierarchical relationships. For example, an order contains date, customer, and order details, with order details further containing price, quantity and product, and product encompassing name and category. JSON’s nestable structure is well-suited for describing such relationships. For example, here’s the order data: An order has both regular attributes “order ID, date, freight rate, weight” and nested attributes “order details, customer”. Order details, in turn, contain the nested attribute “product.” For this nestable structure, the common data organization method is a multi-layer nested table, where fields can be tables or records. When calculating, tables or records at
...