dtcs 0.11.0

Reference implementation of the Data Transformation Contract Standard (DTCS)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
# JSON Output Reference

All CLI commands support `--json` for machine-readable output. Field names use **camelCase** in JSON (matching the Canonical Object Model serialization).

## validate

```bash
dtcs validate contract.yaml --json
```

```json
{
  "valid": true,
  "diagnostics": []
}
```

When invalid, `valid` is `false` and `diagnostics` contains error entries.

## diagnostics

```bash
dtcs diagnostics contract.yaml --json
```

```json
{
  "diagnostics": []
}
```

`diagnostics` always emits the diagnostics array. It does not include a `valid` field.

## inspect

```json
{
  "id": "customer.normalize",
  "name": "Normalize Customer",
  "version": "0.2.0",
  "dtcsVersion": "1.0.0",
  "inputs": 1,
  "outputs": 1,
  "semanticActions": 1,
  "rules": 1,
  "expressions": 0,
  "functions": 0
}
```

## analyze

```bash
dtcs analyze contract.yaml --json
```

```json
{
  "validation": {
    "valid": true,
    "diagnostics": []
  },
  "analysis": {
    "valid": true,
    "diagnostics": [],
    "findings": []
  }
}
```

## compat

```json
{
  "level": "backwardCompatible",
  "aspects": [
    {
      "aspect": "interfaces",
      "status": "changed",
      "message": "input 'aux' added in target"
    }
  ],
  "diagnostics": [
    {
      "id": "dtcs:conditional-compatibility",
      "severity": "warning",
      "stage": "analysis",
      "category": "compatibility",
      "message": "input 'aux' added in target",
      "objectRef": "inputs.aux"
    }
  ]
}
```

`level` values: `identical`, `backwardCompatible`, `forwardCompatible`, `conditionallyCompatible`, `incompatible`.

## evolve

```json
{
  "sourceId": "evolution.sample",
  "targetId": "evolution.sample",
  "sameIdentity": true,
  "compatibility": "backwardCompatible",
  "changes": [
    {
      "category": "interface",
      "message": "input 'aux' added in target",
      "objectRef": "inputs.aux"
    }
  ],
  "migrationHints": [
    "Newer revision is backward compatible; downstream consumers may adopt without input changes."
  ],
  "diagnostics": []
}
```

## lineage

```json
{
  "graph": [
    {
      "output": "customer_summary",
      "inputs": ["customers"]
    },
    {
      "output": "order_enriched",
      "inputs": ["orders", "customers"]
    }
  ],
  "impact": {
    "input": "customers",
    "outputs": ["customer_summary", "order_enriched"]
  },
  "dependency": null,
  "governance": {
    "owner": "data-platform",
    "steward": "analytics"
  },
  "diagnostics": []
}
```

`impact` and `dependency` are populated when `--impact` or `--dependency` flags are used.

## plan

```bash
dtcs plan contract.yaml --json
```

On success, emits the transformation plan document directly (not wrapped in a result envelope):

```json
{
  "identity": {
    "dtcsVersion": "1.0.0",
    "id": "customer.normalize",
    "name": "Normalize Customer",
    "version": "0.2.0"
  },
  "inputs": [],
  "outputs": [],
  "nodes": [],
  "dependencies": [],
  "lineage": { "mappings": [] },
  "guarantees": {}
}
```

On failure, emits a diagnostics envelope (same shape as `diagnostics --json`):

```json
{
  "diagnostics": [
    {
      "id": "dtcs:missing-lineage",
      "severity": "error",
      "stage": "validation",
      "category": "lineage",
      "message": "output 'out' has no lineage mapping"
    }
  ]
}
```

## optimize

```bash
dtcs optimize contract.yaml --json
```

On success, emits an optimization result envelope:

```json
{
  "plan": { },
  "diagnostics": [],
  "transforms": [
    {
      "pass": "expression",
      "nodeId": "const_add",
      "description": "rewrote expression '1 + 2' to '3'"
    }
  ]
}
```

| Field | Type | Description |
|-------|------|-------------|
| `plan` | object (optional) | Optimized transformation plan when optimization succeeded |
| `diagnostics` | array | Optimization and validation diagnostics |
| `transforms` | array | Informational log of applied rewrites |

When `--plan` is set, the input path is serialized plan JSON rather than a contract file.

## match

Success emits a capability match report:

```json
{
  "supported": true,
  "diagnostics": [],
  "gaps": []
}
```

Failure emits a diagnostics envelope (`{"diagnostics": [...]}`), same shape as `diagnostics --json`.

`gaps` entries describe unsupported plan requirements when `supported` is `false`:

```json
{
  "supported": false,
  "diagnostics": [],
  "gaps": [
    {
      "category": "semanticAction",
      "requirement": "dtcs:unknown_action",
      "message": "engine does not support semantic action"
    }
  ]
}
```

## compile

```bash
dtcs compile contract.yaml --json
```

Success emits an execution plan document (same shape as the Rust `ExecutionPlan` type). See [`tests/fixtures/execution_plans/valid_customer.exec.json`](https://github.com/eddiethedean/dtcs/blob/main/tests/fixtures/execution_plans/valid_customer.exec.json) for a full example.

```json
{
  "target": {
    "engineId": "dtcs:reference",
    "engineVersion": "0.11.0",
    "capabilityVersion": "1.0.0"
  },
  "identity": {
    "dtcsVersion": "1.0.0",
    "id": "customer.normalize",
    "name": "Normalize Customer",
    "version": "0.2.0"
  },
  "inputs": [],
  "outputs": [],
  "nodes": [],
  "steps": [],
  "guarantees": {},
  "lineage": { "mappings": [] }
}
```

Failure emits a diagnostics envelope (`{"diagnostics": [...]}`).

## run

```bash
dtcs run contract.yaml --input inputs.json --json
```

**CLI:** success emits output datasets keyed by output interface id (flat map, not wrapped):

```json
{
  "customer_clean": [
    {
      "customer_id": "1",
      "email": "alice@example.com"
    }
  ]
}
```

**Python API:** `dtcs.runtime_execute(execution_plan, inputs)` returns an envelope with both outputs and diagnostics:

```json
{
  "outputs": {
    "customer_clean": [
      {
        "customer_id": "1",
        "email": "alice@example.com"
      }
    ]
  },
  "diagnostics": []
}
```

Failure emits a diagnostics envelope (`{"diagnostics": [...]}`) for both CLI and Python.

## registry

### registry list

```bash
dtcs registry list --json
dtcs registry list --registry vendor_catalog.yaml --json
```

Success emits an array of registry entries:

```json
[
  {
    "id": "dtcs:lowercase",
    "name": "Lowercase",
    "category": "semanticAction",
    "version": "1.0.0",
    "status": "stable",
    "supported": true
  }
]
```

### registry resolve

```bash
dtcs registry resolve dtcs:lowercase --json
```

Success emits a single registry entry (same object shape as list items, may include a `definition` field). When the identifier is not found, the command exits non-zero and prints a diagnostic message (no JSON entry object).

## conformance declare

```json
{
  "implementationId": "dtcs:reference",
  "implementationVersion": "0.11.0",
  "dtcsVersion": "1.0.0-draft",
  "primaryProfile": "integrated-platform",
  "profiles": [
    {
      "id": "integrated-platform",
      "implementationClass": "integratedPlatform",
      "dtcsVersion": "1.0.0-draft",
      "implementationVersion": "0.11.0",
      "supportedRegistries": ["dtcs:builtin"],
      "supportedExtensions": ["acme"],
      "optionalCapabilities": ["planOptimization", "referenceRuntime"]
    }
  ]
}
```

## conformance run

```json
{
  "implementationId": "dtcs:reference",
  "implementationVersion": "0.11.0",
  "profiles": ["integrated-platform"],
  "results": [
    {
      "id": "parse-valid-customer",
      "profile": "integrated-platform",
      "passed": true
    }
  ],
  "security": [
    {
      "id": "registry-trust",
      "profile": "security",
      "passed": true
    }
  ],
  "passed": true
}
```

## version

```json
{
  "crateVersion": "0.11.0",
  "specVersion": "1.0.0-draft"
}
```

## Diagnostic object

Shared across validate, compat, and evolve:

| Field | Type | Description |
|-------|------|-------------|
| `id` | string | Diagnostic code (e.g. `dtcs:missing-lineage`) |
| `severity` | string | `error`, `warning`, or `information` |
| `stage` | string | Pipeline stage (`parse`, `validation`, `analysis`, …) |
| `category` | string | Category (`syntax`, `structure`, `type`, `compatibility`, …) |
| `message` | string | Human-readable description |
| `objectRef` | string (optional) | Path to the affected object |
| `remediation` | string (optional) | Suggested fix |

Only **error**-severity diagnostics cause `validate` to exit non-zero.

## Python note

Python API functions return dicts with the same camelCase keys as CLI JSON output. When constructing contract dicts for `validate()` or `compat_analyze()`, use camelCase keys (`dtcsVersion`, not `dtcs_version`).

See [diagnostics-guide.md](../implementation/diagnostics-guide.md) for the full list of diagnostic codes.

## Next steps

- CLI commands: [cli-guide.md]cli-guide.md
- Library API: [public-api.md]../implementation/public-api.md
- Troubleshooting: [troubleshooting.md]troubleshooting.md