File size: 4,145 Bytes
7bf1401
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://chaoyue0307.github.io/openclaw-language-infrastructure/data/schema.json",
  "title": "OpenClaw--Moltbook direct survey corpus",
  "description": "Schema for the 38 direct studies and the work-level coding fields specified by the paper.",
  "type": "object",
  "required": ["schema_version", "title", "description", "freeze_date", "license", "counts", "records"],
  "additionalProperties": false,
  "properties": {
    "schema_version": { "type": "string", "const": "2.0.0" },
    "title": { "type": "string", "minLength": 1 },
    "description": { "type": "string", "minLength": 1 },
    "freeze_date": { "type": "string", "format": "date", "const": "2026-03-10" },
    "license": { "type": "string", "const": "CC-BY-4.0" },
    "counts": {
      "type": "object",
      "required": ["total", "Grounding", "Action", "Transfer", "Exchange"],
      "additionalProperties": false,
      "properties": {
        "total": { "type": "integer", "const": 38 },
        "Grounding": { "type": "integer", "const": 8 },
        "Action": { "type": "integer", "const": 9 },
        "Transfer": { "type": "integer", "const": 5 },
        "Exchange": { "type": "integer", "const": 16 }
      }
    },
    "records": {
      "type": "array",
      "minItems": 38,
      "maxItems": 38,
      "items": { "$ref": "#/$defs/record" }
    }
  },
  "$defs": {
    "gate": { "type": "string", "enum": ["Grounding", "Action", "Transfer", "Exchange"] },
    "aeroRole": { "type": "string", "enum": ["Authority", "Enablement", "Reach", "Orchestration"] },
    "evidenceFamily": { "type": "string", "enum": ["discourse", "operational", "portable artifact", "grounding"] },
    "record": {
      "type": "object",
      "required": [
        "canonical_id", "citation_key", "title", "authors", "year", "first_public_date",
        "source_tier", "decision_log_ref", "primary_object", "evidence_unit",
        "evidence_alignment_profile", "triangulation_class", "dominant_gate_layer", "aero_roles",
        "alias_mapping", "provenance_caveat", "notes", "core_contribution", "nlp_relevance",
        "persistent_id", "url", "snapshot_url", "source_channel", "retrieval_route"
      ],
      "additionalProperties": false,
      "properties": {
        "canonical_id": { "type": "string", "pattern": "^OCMB-[0-9]{3}$" },
        "citation_key": { "type": "string", "pattern": "^[A-Za-z][A-Za-z0-9]+$" },
        "title": { "type": "string", "minLength": 1 },
        "authors": { "type": "string", "minLength": 1 },
        "year": { "type": "integer", "const": 2026 },
        "first_public_date": { "type": "string", "format": "date" },
        "source_tier": { "type": "string", "const": "Tier 1" },
        "decision_log_ref": { "type": "string", "pattern": "^SCREEN-[0-9]{3}$" },
        "primary_object": { "type": "string", "minLength": 1 },
        "evidence_unit": { "type": "string", "minLength": 1 },
        "evidence_alignment_profile": { "type": "array", "minItems": 1, "uniqueItems": true, "items": { "$ref": "#/$defs/evidenceFamily" } },
        "triangulation_class": { "type": "string", "enum": ["single-family", "2+ families", "D+O+G", "artifact-linked"] },
        "dominant_gate_layer": { "$ref": "#/$defs/gate" },
        "secondary_gate_layer": { "$ref": "#/$defs/gate" },
        "aero_roles": { "type": "array", "uniqueItems": true, "items": { "$ref": "#/$defs/aeroRole" } },
        "alias_mapping": { "type": "string", "minLength": 1 },
        "provenance_caveat": { "type": "string", "minLength": 1 },
        "notes": { "type": "string", "minLength": 1 },
        "core_contribution": { "type": "string", "minLength": 1 },
        "nlp_relevance": { "type": "string", "minLength": 1 },
        "persistent_id": { "type": "string", "minLength": 1 },
        "url": { "type": "string", "format": "uri", "pattern": "^https://" },
        "snapshot_url": { "type": "string", "format": "uri", "pattern": "^https://" },
        "source_channel": { "type": "string", "minLength": 1 },
        "retrieval_route": { "type": "string", "minLength": 1 }
      }
    }
  }
}