liiablack commited on
Commit
d3d3717
·
verified ·
1 Parent(s): 12c4735

Upload public_contract.schema.json

Browse files
Files changed (1) hide show
  1. schema/public_contract.schema.json +17 -0
schema/public_contract.schema.json CHANGED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "title": "Batalstone 7c Core Stable — Curve Only (ARR)",
4
+ "type": "object",
5
+ "required": ["scene_idx","valence","arousal","dominance","label","conf","plot_break"],
6
+ "properties": {
7
+ "scene_idx": { "type": "integer", "minimum": 1, "description": "1-based scene index" },
8
+ "valence": { "type": "number", "minimum": 0.0, "maximum": 1.0 },
9
+ "arousal": { "type": "number", "minimum": 0.0, "maximum": 1.0 },
10
+ "dominance": { "type": "number", "minimum": 0.0, "maximum": 1.0 },
11
+ "label": { "type": "string", "description": "Primary emotion label (lexicon v1)" },
12
+ "conf": { "type": "number", "minimum": 0.0, "maximum": 1.0 },
13
+ "plot_break":{ "type": "boolean", "description": "0/1 in CSV → cast to boolean" }
14
+ },
15
+ "additionalProperties": false
16
+ }
17
+