File size: 2,218 Bytes
96bc066
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false,
  "properties": {
    "alternative_space": {
      "type": ["string", "null"]
    },
    "alternative_value": {
      "type": ["string", "null"]
    },
    "answer": {
      "type": "string"
    },
    "answer_kind": {
      "type": "string"
    },
    "answer_space": {
      "type": "string"
    },
    "base_space": {
      "type": "string"
    },
    "base_value": {
      "type": ["string", "null"]
    },
    "confound_controls": {
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "construction": {
      "type": "string"
    },
    "context": {
      "type": "string"
    },
    "control_type": {
      "type": "string"
    },
    "entity": {
      "type": "string"
    },
    "family": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "labels": {
      "additionalProperties": {
        "type": ["string", "boolean"]
      },
      "type": "object"
    },
    "lexical_trigger_present": {
      "type": "boolean"
    },
    "notes": {
      "type": "string"
    },
    "prompt": {
      "type": "string"
    },
    "query_type": {
      "type": "string"
    },
    "scenario_id": {
      "type": "string"
    },
    "source_experiment": {
      "type": "string"
    },
    "space_builder": {
      "type": ["string", "null"]
    },
    "template_id": {
      "type": "string"
    },
    "value_space_map": {
      "additionalProperties": {
        "type": "string"
      },
      "type": "object"
    },
    "split": {
      "enum": ["train", "validation", "test"],
      "type": "string"
    }
  },
  "required": [
    "id",
    "scenario_id",
    "split",
    "construction",
    "family",
    "source_experiment",
    "context",
    "prompt",
    "answer",
    "answer_space",
    "entity",
    "base_space",
    "alternative_space",
    "base_value",
    "alternative_value",
    "value_space_map",
    "query_type",
    "template_id",
    "answer_kind",
    "space_builder",
    "lexical_trigger_present",
    "control_type",
    "labels",
    "confound_controls",
    "notes"
  ],
  "title": "Mental Spaces Corpus record",
  "type": "object"
}