jsonata-rs 0.3.4

An (incomplete) implementation of JSONata in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
    "expr": "Account.Order.Product{`Product Name`: Price, SKU: Price}",
    "dataset": "dataset5",
    "bindings": {},
    "result": {
        "Bowler Hat": [
            34.45,
            34.45
        ],
        "0406654608": 34.45,
        "Trilby hat": 21.67,
        "0406634348": 21.67,
        "040657863": 34.45,
        "Cloak": 107.99,
        "0406654603": 107.99
    }
}