fluvio-jolt 0.1.0

Fluvio JSON to JSON transformation library
Documentation
{
  "input": {
    "id": 1,
    "name": "John Smith",
    "account": {
      "id": 1000,
      "type": "Checking"
    }
  },

  "spec": [
    {
      "operation": "shift",
      "spec": {
        "id": "__data.id",
        "name": "__data.name",
        "account": "__data.account"
      }
    }
  ],

  "expected": {
    "__data" : {
      "id": 1,
      "name": "John Smith",
      "account": {
        "id": 1000,
        "type": "Checking"
      }
    }
  }
}