-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrainingDataObject_Schema.json
More file actions
228 lines (226 loc) · 6.28 KB
/
Copy pathtrainingDataObject_Schema.json
File metadata and controls
228 lines (226 loc) · 6.28 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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
{
"title": "Sample JSON schema title",
"description": "Sample description. Schema validates a JSON object entry for the DC shared universe repository.",
"type": "object",
"required": [
"fileName",
"abstract",
"format",
"creator",
"date",
"experimentalConditions",
"columns"
],
"properties": {
"fileName": {
"description": "Name of the described data file or set.",
"type": "string",
"minLength": 1
},
"abstract":{
"description": "A free text abstract of the experimental setup.",
"type": "string",
"minLength": 24
},
"format": {
"description": "The Internet Media Type of the resource, MIME Type.",
"type": "string",
"enum": [
"text/csv",
"video/mp4",
"text/markdown",
"image/png",
"other"
]
},
"creator": {
"description": "An array of people (1-n) primarily responsible for making the resource.",
"type": "array",
"minItems": 1,
"items": {
"type": "object",
"properties": {
"creatorName": {
"description": "The name of the creator, a person.",
"type": "string"
},
"creatorAffiliation": {
"description": "The name of the institute the creator is working for.",
"type": "string"
}
}
}
},
"contributor": {
"description": "An array of people (0-n) responsible for making contributions to the resource.",
"type": "array",
"items": {
"type": "object",
"properties": {
"contributorName": {
"description": "The name of the contributor, a person.",
"type": "string"
},
"contributorAffiliation": {
"description": "The name of the institute the contributor is working for.",
"type": "string"
}
}
}
},
"date": {
"description": "The date of the experiment.",
"type": "string",
"format": "date"
},
"experimentalConditions": {
"description": "The experimental setting that was used to generate the data.",
"type": "object",
"required": [
"testRide",
"testPerson",
"recording"
],
"properties": {
"ride": {
"description": "A summary of the experimental conditions. Include sufficient detail to facilitate search and discovery.",
"type": "object",
"required": [
"rideName",
"rideType"
],
"properties": {
"rideName": {
"description": "Official name of the ride.",
"type": "string",
"minLength": 1
},
"location": {
"description": "City and State in which the ride is located",
"type": "string"
},
"rideType": {
"description": "Ride type.",
"type": "string",
"enum": [
"roller coaster",
"water slide",
"bob sled"
]
}
}
},
"testPerson": {
"description": "Properties of person carrying the test device.",
"type": "object",
"required": [
"sex",
"height"
],
"properties": {
"sex": {
"description": "The sex of test person.",
"type": "string",
"enum": [
"female",
"male",
"non-binary",
"not disclosed"
]
},
"height": {
"description": "Height of test person in cm (SI unit of length).",
"type": "number",
"minimum": 120,
"exclusiveMaximum": 220
}
}
},
"recording": {
"description": "",
"type": "object",
"required":[
"testApp",
"testDevice",
"testDeviceFixture"
],
"properties": {
"testApp": {
"description": "Test app used.",
"type": "string",
"enum": [
"Physics Toolbox Suite by Vieyra Software",
"Bunny Rollercoaster Physics App"
]
},
"testAppVersion": {
"description": "Version of test app (free text input). Full semantic versioning input preferred: Major.minor.bugfix",
"type": "string",
"minLength": 1
},
"testDevice": {
"description": "Test device used.",
"type": "string",
"enum": [
"iPhone X",
"iPhone 6",
"iPhone 6s",
"other"
]
},
"testDeviceFixture": {
"description": "Test device fixture.",
"type": "string",
"enum": [
"left upper arm",
"right upper arm",
"mouth fixture device",
"other"
]
}
}
}
}
},
"columns": {
"description": "Relevant information about columns/variables in dataset.",
"type": "array",
"minItems": 1,
"items": {
"type": "object",
"required": [
"columnName",
"columnDescription",
"dataType",
"columnUnit"
],
"properties": {
"columnName": {
"description": "The name of the column.",
"type": "string",
"minLength": 1
},
"columnDescription": {
"description": "A free text description of data in this column.",
"type": "string",
"minLength": 1
},
"dataType": {
"description": "The data type of the columns values.",
"enum": [
"string",
"number",
"object",
"boolean"
]
},
"columnUnit": {
"description": "The SI unit of the columns values.",
"type": "string",
"minLength": 1
}
}
}
}
}
}