-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbangleStream28.schema.json
163 lines (147 loc) · 5.54 KB
/
bangleStream28.schema.json
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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://connectproject.github.io/schemas/bangleStream28.schema.json",
"title": "Bangle Stream",
"description": "Data from BangleJS2 (Accelerometer, gyroscope, Heartrate and timestamp)",
"type": "object",
"properties": {
"applicationId": {
"type": "string",
"description": "Unique Connect identifier of the app originating the event. Read-only (added by Connect)"
},
"userId": {
"type": "string",
"description": "Unique Connect identifier of the user originating the event. Read-only (added by Connect)"
},
"sessionId": {
"type": "string",
"description": "Identifier of the session originating the event"
},
"bangle": {
"type": "array",
"items": {
"type": "object",
"properties": {
"bufferStart": {
"type": "number",
"description": "Time of start of buffer"
},
"bufferStop": {
"type": "number",
"description": "Time of end of buffer"
},
"ax_M": {
"type": "number",
"description": "Mean of accelerometer X"
},
"ay_M": {
"type": "number",
"description": "Mean of accelerometer Y"
},
"az_M": {
"type": "number",
"description": "Mean of accelerometer Z"
},
"cx_M": {
"type": "number",
"description": "Mean of gyroscope X"
},
"cy_M": {
"type": "number",
"description": "Mean of gyroscope Y"
},
"cz_M": {
"type": "number",
"description": "Mean of gyroscope Z"
},
"cdx_M": {
"type": "number",
"description": "Mean of gyroscope dX"
},
"cdy_M": {
"type": "number",
"description": "Mean of gyroscope dY"
},
"cdz_M": {
"type": "number",
"description": "Mean of gyroscope dZ"
},
"hrmRaw_M": {
"type": "number",
"description": "Mean of hrm raw"
},
"hrmFilt_M": {
"type": "number",
"description": "Mean of hrm filtered"
},
"hrmBPM_M": {
"type": "number",
"description": "Mean of hrm BPM"
},
"hrmConfidence_M": {
"type": "number",
"description": "Mean of hrm Confidence"
},
"ax_S": {
"type": "number",
"description": "Variance of accelerometer X"
},
"ay_S": {
"type": "number",
"description": "Variance of accelerometer Y"
},
"az_S": {
"type": "number",
"description": "Variance of accelerometer Z"
},
"cx_S": {
"type": "number",
"description": "Variance of gyroscope X"
},
"cy_S": {
"type": "number",
"description": "Variance of gyroscope Y"
},
"cz_S": {
"type": "number",
"description": "Variance of gyroscope Z"
},
"cdx_S": {
"type": "number",
"description": "Variance of gyroscope dX"
},
"cdy_S": {
"type": "number",
"description": "Variance of gyroscope dY"
},
"cdz_S": {
"type": "number",
"description": "Variance of gyroscope dZ"
},
"hrmRaw_S": {
"type": "number",
"description": "Variance of hrm raw"
},
"hrmFilt_S": {
"type": "number",
"description": "Variance of hrm filtered"
},
"hrmBPM_S": {
"type": "number",
"description": "Variance of hrm BPM"
},
"hrmConfidence_S": {
"type": "number",
"description": "Variance of hrm Confidence"
}
},
"additionalProperties": false
}
}
},
"required": [
"sessionId",
"bangle"
],
"additionalProperties": false
}