-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsubmission_schema.json
More file actions
163 lines (163 loc) · 5.08 KB
/
submission_schema.json
File metadata and controls
163 lines (163 loc) · 5.08 KB
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
{
"$defs": {
"AgentCVarsWithCol": {
"properties": {
"ivs": {
"items": {
"$ref": "#/$defs/IVarWithCol"
},
"title": "Independent variables",
"type": "array"
},
"dv": {
"allOf": [
{
"$ref": "#/$defs/DVarWithCol"
}
],
"title": "Dependent variable"
},
"controls": {
"items": {
"$ref": "#/$defs/ControlVarWithCol"
},
"title": "Control variables",
"type": "array"
}
},
"required": [
"ivs",
"dv",
"controls"
],
"title": "AgentCVarsWithCol",
"type": "object"
},
"ControlVarWithCol": {
"properties": {
"description": {
"title": "Description of the control variable variable",
"type": "string"
},
"is_moderator": {
"title": "Whether the variable is a moderator.",
"type": "boolean"
},
"moderator_on": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": "",
"title": "The variable that the control variable is moderating. Only applicable for control variables that are moderators."
},
"columns": {
"items": {
"type": "string"
},
"title": "The column(s) in the FINAL dataframe used in the STATISTICAL MODEL that corresponds to the control variable",
"type": "array"
}
},
"required": [
"description",
"is_moderator",
"columns"
],
"title": "ControlVarWithCol",
"type": "object"
},
"DVarWithCol": {
"properties": {
"description": {
"title": "Description of the dependent variable variable",
"type": "string"
},
"columns": {
"items": {
"type": "string"
},
"title": "The column(s) in the FINAL dataframe used in the STATISTICAL MODEL that corresponds to the dependent variable",
"type": "array"
}
},
"required": [
"description",
"columns"
],
"title": "DVarWithCol",
"type": "object"
},
"EntireAnalysis": {
"properties": {
"cvars": {
"allOf": [
{
"$ref": "#/$defs/AgentCVarsWithCol"
}
],
"title": "Conceptual variables"
},
"transform_code": {
"title": "The code that transforms the data",
"type": "string"
},
"m_code": {
"title": "The code for the statistical modeling",
"type": "string"
}
},
"required": [
"cvars",
"transform_code",
"m_code"
],
"title": "EntireAnalysis",
"type": "object"
},
"IVarWithCol": {
"properties": {
"description": {
"title": "Description of the independent variable variable",
"type": "string"
},
"columns": {
"items": {
"type": "string"
},
"title": "The column(s) in the FINAL dataframe used in the STATISTICAL MODEL that corresponds to the independent variable",
"type": "array"
}
},
"required": [
"description",
"columns"
],
"title": "IVarWithCol",
"type": "object"
}
},
"properties": {
"dataset_name": {
"title": "Dataset Name",
"type": "string"
},
"analyses": {
"items": {
"$ref": "#/$defs/EntireAnalysis"
},
"title": "Analyses",
"type": "array"
}
},
"required": [
"dataset_name",
"analyses"
],
"title": "DatasetSubmission",
"type": "object"
}