dtcs 0.2.0

Reference implementation of the Data Transformation Contract Standard (DTCS)
Documentation
dtcsVersion: "1.0.0"
id: "nested.collection"
name: "Nested Collection"
version: "0.2.0"

inputs:
  - id: "in"
    schema:
      fields:
        - name: "nested"
          type: "list<map<string,integer>>"
          nullable: false

outputs:
  - id: "out"
    schema:
      fields:
        - name: "pair"
          type: "tuple<string,integer>"
          nullable: false

lineage:
  mappings:
    - output: "out"
      inputs: ["in"]