solsticestudioai commited on
Commit
ca0c9df
·
verified ·
1 Parent(s): 7e5901e

Finalize Phase 2 dataset: solstice-agent-trace-exchange-v1.schema.json

Browse files
solstice-agent-trace-exchange-v1.schema.json ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "solstice-agent-trace-exchange/v1",
4
+ "type": "object",
5
+ "required": ["schema_version", "trace_id", "source", "task", "events", "checkpoints", "branches", "outcomes", "findings", "redaction", "provenance"],
6
+ "properties": {
7
+ "schema_version": {"const": "solstice-agent-trace-exchange/v1"},
8
+ "trace_id": {"type": "string", "minLength": 1, "maxLength": 200},
9
+ "source": {"type": "object"},
10
+ "task": {"type": "object"},
11
+ "events": {"type": "array", "maxItems": 4000},
12
+ "checkpoints": {"type": "array", "maxItems": 128},
13
+ "branches": {"type": "array", "maxItems": 32},
14
+ "outcomes": {"type": "object"},
15
+ "findings": {"type": "array"},
16
+ "redaction": {"type": "object"},
17
+ "provenance": {"type": "object"},
18
+ "limitations": {"type": "object"}
19
+ },
20
+ "additionalProperties": true
21
+ }