dtcs 0.3.0

Reference implementation of the Data Transformation Contract Standard (DTCS)
Documentation
dtcsVersion: "1.0.0"
id: "invalid.dtcs.function"
name: "Invalid DTCS Function"
version: "0.1.0"

inputs:
  - id: "in"
    schema:
      fields:
        - name: "value"
          type: "integer"
          nullable: false

outputs:
  - id: "out"
    schema:
      fields:
        - name: "value"
          type: "integer"
          nullable: false

functions:
  - id: "unknown_fn"
    function: "dtcs:unknown"
    type: "integer"

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