dtcs 0.1.2

Reference implementation of the Data Transformation Contract Standard (DTCS)
Documentation
{
  "dtcsVersion": "1.0.0",
  "id": "json.example",
  "name": "JSON Example",
  "version": "0.1.0",
  "inputs": [
    {
      "id": "in",
      "schema": {
        "fields": [
          { "name": "value", "type": "string", "nullable": false }
        ]
      }
    }
  ],
  "outputs": [
    {
      "id": "out",
      "schema": {
        "fields": [
          { "name": "value", "type": "string", "nullable": false }
        ]
      }
    }
  ],
  "lineage": {
    "mappings": [
      { "output": "out", "inputs": ["in"] }
    ]
  }
}