validic 0.3.3 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (130) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +2 -1
  3. data/.rspec +0 -1
  4. data/Gemfile +12 -1
  5. data/Gemfile.lock +32 -62
  6. data/README.md +442 -28
  7. data/lib/validic.rb +3 -20
  8. data/lib/validic/app.rb +11 -0
  9. data/lib/validic/biometrics.rb +9 -0
  10. data/lib/validic/client.rb +35 -77
  11. data/lib/validic/diabetes.rb +4 -60
  12. data/lib/validic/error.rb +33 -0
  13. data/lib/validic/extra.rb +10 -0
  14. data/lib/validic/fitness.rb +4 -57
  15. data/lib/validic/nutrition.rb +5 -61
  16. data/lib/validic/organization.rb +6 -13
  17. data/lib/validic/profile.rb +4 -39
  18. data/lib/validic/response.rb +15 -0
  19. data/lib/validic/rest/apps.rb +21 -0
  20. data/lib/validic/rest/biometrics.rb +39 -0
  21. data/lib/validic/rest/diabetes.rb +39 -0
  22. data/lib/validic/rest/fitness.rb +40 -0
  23. data/lib/validic/rest/nutrition.rb +40 -0
  24. data/lib/validic/rest/organizations.rb +12 -0
  25. data/lib/validic/rest/profile.rb +18 -0
  26. data/lib/validic/rest/request.rb +95 -0
  27. data/lib/validic/rest/routine.rb +40 -0
  28. data/lib/validic/rest/sleep.rb +41 -0
  29. data/lib/validic/rest/tobacco_cessation.rb +40 -0
  30. data/lib/validic/rest/users.rb +55 -0
  31. data/lib/validic/rest/utils.rb +28 -0
  32. data/lib/validic/rest/weight.rb +43 -0
  33. data/lib/validic/routine.rb +4 -55
  34. data/lib/validic/sleep.rb +4 -59
  35. data/lib/validic/summary.rb +18 -0
  36. data/lib/validic/tobacco_cessation.rb +4 -53
  37. data/lib/validic/user.rb +4 -99
  38. data/lib/validic/utils.rb +13 -0
  39. data/lib/validic/version.rb +1 -1
  40. data/lib/validic/weight.rb +4 -57
  41. data/spec/fixtures/apps.json +32 -0
  42. data/spec/fixtures/biometrics-expanded.json +56 -0
  43. data/spec/fixtures/biometrics-extras.json +35 -0
  44. data/spec/fixtures/biometrics_record.json +36 -0
  45. data/spec/fixtures/biometrics_records.json +54 -0
  46. data/spec/fixtures/bulk_biometrics_records.json +55 -0
  47. data/spec/fixtures/bulk_diabetes_records.json +37 -0
  48. data/spec/fixtures/bulk_fitnesses.json +35 -0
  49. data/spec/fixtures/bulk_nutritions.json +37 -0
  50. data/spec/fixtures/bulk_sleeps.json +35 -0
  51. data/spec/fixtures/bulk_tobacco_cessations.json +33 -0
  52. data/spec/fixtures/conflict.json +5 -0
  53. data/spec/fixtures/diabetes-expanded.json +38 -0
  54. data/spec/fixtures/diabetes-extras.json +17 -0
  55. data/spec/fixtures/diabetes_record.json +18 -0
  56. data/spec/fixtures/diabetes_records.json +36 -0
  57. data/spec/fixtures/fitness-expanded.json +1521 -0
  58. data/spec/fixtures/fitness-extras.json +15 -0
  59. data/spec/fixtures/fitness.json +16 -0
  60. data/spec/fixtures/fitnesses.json +34 -0
  61. data/spec/fixtures/forbidden.json +5 -0
  62. data/spec/fixtures/internal_server.json +4 -0
  63. data/spec/fixtures/me.json +5 -0
  64. data/spec/fixtures/not_found.json +5 -0
  65. data/spec/fixtures/nutrition-expanded.json +123 -0
  66. data/spec/fixtures/nutrition-extras.json +13 -0
  67. data/spec/fixtures/nutrition.json +18 -0
  68. data/spec/fixtures/nutritions-expanded.json +123 -0
  69. data/spec/fixtures/nutritions.json +36 -0
  70. data/spec/fixtures/organizations.json +27 -0
  71. data/spec/fixtures/profile.json +13 -0
  72. data/spec/fixtures/refresh_token.json +7 -0
  73. data/spec/fixtures/routine-expanded.json +749 -0
  74. data/spec/fixtures/routine-extras.json +14 -0
  75. data/spec/fixtures/routine.json +17 -0
  76. data/spec/fixtures/routines.json +47 -0
  77. data/spec/fixtures/sleep-expanded.json +51 -0
  78. data/spec/fixtures/sleep-extras.json +15 -0
  79. data/spec/fixtures/sleep.json +16 -0
  80. data/spec/fixtures/sleeps.json +48 -0
  81. data/spec/fixtures/synced_apps.json +43 -0
  82. data/spec/fixtures/tobacco_cessation-expanded.json +33 -0
  83. data/spec/fixtures/tobacco_cessation-extras.json +12 -0
  84. data/spec/fixtures/tobacco_cessation.json +14 -0
  85. data/spec/fixtures/tobacco_cessations.json +32 -0
  86. data/spec/fixtures/unauthorized.json +4 -0
  87. data/spec/fixtures/unprocessable_entity.json +5 -0
  88. data/spec/fixtures/updated_user.json +9 -0
  89. data/spec/fixtures/user.json +8 -0
  90. data/spec/fixtures/user_with_profile.json +14 -0
  91. data/spec/fixtures/users.json +23 -0
  92. data/spec/fixtures/weight-expanded.json +66 -0
  93. data/spec/fixtures/weight-extras.json +15 -0
  94. data/spec/fixtures/weight.json +18 -0
  95. data/spec/fixtures/weights.json +48 -0
  96. data/spec/spec_helper.rb +47 -33
  97. data/spec/validic/client_spec.rb +5 -38
  98. data/spec/validic/error_spec.rb +73 -0
  99. data/spec/validic/expanded_spec.rb +87 -0
  100. data/spec/validic/rest/apps_spec.rb +41 -0
  101. data/spec/validic/rest/biometrics_spec.rb +131 -0
  102. data/spec/validic/rest/diabetes_spec.rb +131 -0
  103. data/spec/validic/rest/fitness_spec.rb +131 -0
  104. data/spec/validic/rest/nutrition_spec.rb +144 -0
  105. data/spec/validic/rest/organizations_spec.rb +24 -0
  106. data/spec/validic/rest/profile_spec.rb +44 -0
  107. data/spec/validic/rest/routine_spec.rb +129 -0
  108. data/spec/validic/rest/sleep_spec.rb +148 -0
  109. data/spec/validic/rest/tobacco_cessation_spec.rb +131 -0
  110. data/spec/validic/rest/users_spec.rb +170 -0
  111. data/spec/validic/rest/weight_spec.rb +150 -0
  112. data/spec/validic/summary_spec.rb +3 -0
  113. data/spec/validic_spec.rb +19 -31
  114. data/validic.gemspec +0 -13
  115. metadata +174 -194
  116. data/lib/validic/biometric.rb +0 -97
  117. data/lib/validic/request.rb +0 -46
  118. data/lib/validic/third_party_app.rb +0 -32
  119. data/spec/validic/biometrics_spec.rb +0 -43
  120. data/spec/validic/diabetes_spec.rb +0 -89
  121. data/spec/validic/fitness_spec.rb +0 -85
  122. data/spec/validic/nutrition_spec.rb +0 -91
  123. data/spec/validic/organization_spec.rb +0 -26
  124. data/spec/validic/profile_spec.rb +0 -19
  125. data/spec/validic/routine_spec.rb +0 -82
  126. data/spec/validic/sleep_spec.rb +0 -86
  127. data/spec/validic/third_party_app_spec.rb +0 -32
  128. data/spec/validic/tobacco_cessation_spec.rb +0 -81
  129. data/spec/validic/user_spec.rb +0 -81
  130. data/spec/validic/weight_spec.rb +0 -88
@@ -0,0 +1,35 @@
1
+ {
2
+ "summary": {
3
+ "status": 200,
4
+ "message": "OK",
5
+ "results": 3,
6
+ "start_date": "2013-03-27T00:00:00+00:00",
7
+ "end_date": "2013-03-27T23:59:59+00:00",
8
+ "offset": 0,
9
+ "limit": 100,
10
+ "previous": null,
11
+ "next": null,
12
+ "params": {
13
+ "start_date": null,
14
+ "end_date": null,
15
+ "offset": null,
16
+ "limit": null
17
+ }
18
+ }, "sleep": [
19
+ {
20
+ "_id": "51552cddfded0807c400008b",
21
+ "timestamp": "2013-03-10T07:12:16+00:00",
22
+ "utc_offset": "+00:00",
23
+ "awake": 34,
24
+ "deep": 234,
25
+ "light": 94,
26
+ "rem": 115,
27
+ "times_woken": 4,
28
+ "total_sleep": 477,
29
+ "source": "sample_app",
30
+ "source_name": "Sample App",
31
+ "last_updated": "2013-03-10T07:12:16+00:00",
32
+ "user_id": "51552cd7fded0807c4000017"
33
+ }
34
+ ]
35
+ }
@@ -0,0 +1,33 @@
1
+ {
2
+ "summary": {
3
+ "status": 200,
4
+ "message": "OK",
5
+ "results": 3,
6
+ "start_date": "2013-03-27T00:00:00+00:00",
7
+ "end_date": "2013-03-27T23:59:59+00:00",
8
+ "offset": 0,
9
+ "limit": 100,
10
+ "previous": null,
11
+ "next": null,
12
+ "params": {
13
+ "start_date": null,
14
+ "end_date": null,
15
+ "offset": null,
16
+ "limit": null
17
+ }
18
+ }, "tobacco_cessation": [
19
+ {
20
+ "_id": "51552cd8fded0807c4000031",
21
+ "timestamp": "2013-03-10T07:12:16+00:00",
22
+ "utc_offset": "+00:00",
23
+ "cigarettes_allowed": 9,
24
+ "cigarettes_smoked": 2,
25
+ "cravings": 12,
26
+ "last_smoked": "2013-03-10T05:55:36+00:00",
27
+ "source": "sample_app",
28
+ "source_name": "Sample App",
29
+ "last_updated": "2013-03-10T07:12:16+00:00",
30
+ "user_id": "51552cd7fded0807c4000017"
31
+ }
32
+ ]
33
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "code": 409,
3
+ "message": "Conflict",
4
+ "errors": "User already exists"
5
+ }
@@ -0,0 +1,38 @@
1
+ {
2
+ "summary": {
3
+ "status": 200,
4
+ "message": "Ok",
5
+ "results": 1,
6
+ "start_date": "2015-01-14T00:00:00+00:00",
7
+ "end_date": "2015-01-16T23:59:59+00:00",
8
+ "offset": 0,
9
+ "limit": 100,
10
+ "previous": null,
11
+ "next": null,
12
+ "params": {
13
+ "start_date": null,
14
+ "end_date": null,
15
+ "offset": 0,
16
+ "limit": 0
17
+ }
18
+ },
19
+ "diabetes": [
20
+ {
21
+ "_id": "54b670d3f9d139ce62035a1d",
22
+ "timestamp": "2015-01-14T13:22:15+00:00",
23
+ "utc_offset": "+00:00",
24
+ "c_peptide": null,
25
+ "fasting_plasma_glucose_test": null,
26
+ "hba1c": null,
27
+ "insulin": null,
28
+ "oral_glucose_tolerance_test": null,
29
+ "random_plasma_glucose_test": null,
30
+ "triglyceride": null,
31
+ "blood_glucose": 85,
32
+ "source": "vitadock",
33
+ "source_name": "Vitadock",
34
+ "last_updated": "2015-01-14T13:36:19+00:00",
35
+ "user_id": "52ffcb4bf1f70eefba000004"
36
+ }
37
+ ]
38
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "diabetes": {
3
+ "timestamp": "2013-03-10T07:12:16+00:00",
4
+ "utc_offset": "+00:00",
5
+ "c_peptide": 0.6,
6
+ "fasting_plasma_glucose_test": 95,
7
+ "hba1c": 4.8,
8
+ "insulin": 460,
9
+ "oral_glucose_tolerance_test": 137,
10
+ "random_plasma_glucose_test": 256,
11
+ "triglyceride": 128,
12
+ "blood_glucose": 120,
13
+ "activity_id": "12345",
14
+ "extras": {"stars": 3}
15
+ },
16
+ "access_token": "e7ba1f04e88f25d399a91c8cbcd72300e01309e96b7725e40b49cd1effaa5deb"
17
+ }
@@ -0,0 +1,18 @@
1
+ {
2
+ "diabetes": {
3
+ "_id": "51552cd6fded0807c4000007",
4
+ "timestamp": "2013-03-10T07:12:16+00:00",
5
+ "utc_offset": "+00:00",
6
+ "c_peptide": 0.6,
7
+ "fasting_plasma_glucose_test": 95,
8
+ "hba1c": 4.8,
9
+ "insulin": 460,
10
+ "oral_glucose_tolerance_test": 137,
11
+ "random_plasma_glucose_test": 256,
12
+ "triglyceride": 128,
13
+ "blood_glucose": 120,
14
+ "source": "sample_app",
15
+ "source_name": "Sample App",
16
+ "last_updated": "2013-03-10T07:12:16+00:00"
17
+ }
18
+ }
@@ -0,0 +1,36 @@
1
+ {
2
+ "summary": {
3
+ "status": 200,
4
+ "message": "OK",
5
+ "results": 3,
6
+ "start_date": "2013-03-27T00:00:00+00:00",
7
+ "end_date": "2013-03-27T23:59:59+00:00",
8
+ "offset": 0,
9
+ "limit": 100,
10
+ "previous": null,
11
+ "next": null,
12
+ "params": {
13
+ "start_date": null,
14
+ "end_date": null,
15
+ "offset": null,
16
+ "limit": null
17
+ }
18
+ }, "diabetes": [
19
+ {
20
+ "_id": "51552cd6fded0807c4000007",
21
+ "timestamp": "2013-03-10T07:12:16+00:00",
22
+ "utc_offset": "+00:00",
23
+ "c_peptide": 0.6,
24
+ "fasting_plasma_glucose_test": 95,
25
+ "hba1c": 4.8,
26
+ "insulin": 460,
27
+ "oral_glucose_tolerance_test": 137,
28
+ "random_plasma_glucose_test": 256,
29
+ "triglyceride": 128,
30
+ "blood_glucose": 120,
31
+ "source": "sample_app",
32
+ "source_name": "Sample App",
33
+ "last_updated": "2013-03-10T07:12:16+00:00"
34
+ }
35
+ ]
36
+ }
@@ -0,0 +1,1521 @@
1
+ {
2
+ "summary": {
3
+ "status": 200,
4
+ "message": "Ok",
5
+ "results": 117,
6
+ "start_date": "2015-01-14T00:00:00+00:00",
7
+ "end_date": "2015-01-16T23:59:59+00:00",
8
+ "offset": 0,
9
+ "limit": 100,
10
+ "previous": null,
11
+ "next": "https://api.validic.com/v1/organizations/1/fitness.json?access_token=2&expanded=1&page=2",
12
+ "params": {
13
+ "start_date": null,
14
+ "end_date": null,
15
+ "offset": 0,
16
+ "limit": 0
17
+ }
18
+ },
19
+ "fitness": [
20
+ {
21
+ "_id": "54b7072a587b6f91000365f7",
22
+ "timestamp": "2015-01-15T22:00:00+00:00",
23
+ "utc_offset": "+08:00",
24
+ "type": "Sports / Activities",
25
+ "intensity": null,
26
+ "start_time": "2015-01-15T22:00:00+00:00",
27
+ "distance": 0,
28
+ "duration": 600,
29
+ "calories": null,
30
+ "source": "mapmyfitness",
31
+ "source_name": "Map My Fitness",
32
+ "last_updated": "2015-01-15T18:18:56+00:00",
33
+ "user_id": "5433fd4084626b6b530000f7"
34
+ },
35
+ {
36
+ "_id": "54b70729587b6f91000365f4",
37
+ "timestamp": "2015-01-15T22:00:00+00:00",
38
+ "utc_offset": "+08:00",
39
+ "type": "Sports / Activities",
40
+ "intensity": null,
41
+ "start_time": "2015-01-15T22:00:00+00:00",
42
+ "distance": 0,
43
+ "duration": 900,
44
+ "calories": null,
45
+ "source": "mapmyfitness",
46
+ "source_name": "Map My Fitness",
47
+ "last_updated": "2015-01-15T18:18:55+00:00",
48
+ "user_id": "5433fd4084626b6b530000f7"
49
+ },
50
+ {
51
+ "_id": "54b70729587b6f91000365ee",
52
+ "timestamp": "2015-01-15T22:00:00+00:00",
53
+ "utc_offset": "+08:00",
54
+ "type": "Sports / Activities",
55
+ "intensity": null,
56
+ "start_time": "2015-01-15T22:00:00+00:00",
57
+ "distance": 0,
58
+ "duration": 1200,
59
+ "calories": null,
60
+ "source": "mapmyfitness",
61
+ "source_name": "Map My Fitness",
62
+ "last_updated": "2015-01-15T18:18:55+00:00",
63
+ "user_id": "5433fd4084626b6b530000f7"
64
+ },
65
+ {
66
+ "_id": "54b70728587b6f91000365e7",
67
+ "timestamp": "2015-01-15T22:00:00+00:00",
68
+ "utc_offset": "+08:00",
69
+ "type": "Sports / Activities",
70
+ "intensity": null,
71
+ "start_time": "2015-01-15T22:00:00+00:00",
72
+ "distance": 0,
73
+ "duration": 1500,
74
+ "calories": null,
75
+ "source": "mapmyfitness",
76
+ "source_name": "Map My Fitness",
77
+ "last_updated": "2015-01-15T18:18:55+00:00",
78
+ "user_id": "5433fd4084626b6b530000f7"
79
+ },
80
+ {
81
+ "_id": "54b70728587b6f91000365e2",
82
+ "timestamp": "2015-01-15T22:00:00+00:00",
83
+ "utc_offset": "+08:00",
84
+ "type": "Sports / Activities",
85
+ "intensity": null,
86
+ "start_time": "2015-01-15T22:00:00+00:00",
87
+ "distance": 0,
88
+ "duration": 1800,
89
+ "calories": null,
90
+ "source": "mapmyfitness",
91
+ "source_name": "Map My Fitness",
92
+ "last_updated": "2015-01-15T18:18:54+00:00",
93
+ "user_id": "5433fd4084626b6b530000f7"
94
+ },
95
+ {
96
+ "_id": "54b806389ebdb99f91000b31",
97
+ "timestamp": "2015-01-15T14:11:24+00:00",
98
+ "utc_offset": "-05:00",
99
+ "type": "walking",
100
+ "intensity": null,
101
+ "start_time": "2015-01-15T09:11:24-05:00",
102
+ "distance": 65,
103
+ "duration": 90,
104
+ "calories": 4,
105
+ "source": "movesapp",
106
+ "source_name": "Moves App",
107
+ "last_updated": "2015-01-15T18:26:00+00:00",
108
+ "user_id": "53bec5ad84626bc886000002"
109
+ },
110
+ {
111
+ "_id": "54b7d0a4f9d13903c306c148",
112
+ "timestamp": "2015-01-15T13:26:05+00:00",
113
+ "utc_offset": "-05:00",
114
+ "type": "walking",
115
+ "intensity": null,
116
+ "start_time": "2015-01-15T08:26:05-05:00",
117
+ "distance": 30,
118
+ "duration": 60,
119
+ "calories": 2,
120
+ "source": "movesapp",
121
+ "source_name": "Moves App",
122
+ "last_updated": "2015-01-15T14:37:24+00:00",
123
+ "user_id": "53bec5ad84626bc886000002"
124
+ },
125
+ {
126
+ "_id": "54b806379ebdb99f91000b2e",
127
+ "timestamp": "2015-01-15T13:13:59+00:00",
128
+ "utc_offset": "-05:00",
129
+ "type": "walking",
130
+ "intensity": null,
131
+ "start_time": "2015-01-15T08:13:59-05:00",
132
+ "distance": 30,
133
+ "duration": 60,
134
+ "calories": 2,
135
+ "source": "movesapp",
136
+ "source_name": "Moves App",
137
+ "last_updated": "2015-01-15T18:25:59+00:00",
138
+ "user_id": "53bec5ad84626bc886000002"
139
+ },
140
+ {
141
+ "_id": "54b7d0a4f9d13903c306c143",
142
+ "timestamp": "2015-01-15T13:08:28+00:00",
143
+ "utc_offset": "-05:00",
144
+ "type": "walking",
145
+ "intensity": null,
146
+ "start_time": "2015-01-15T08:08:28-05:00",
147
+ "distance": 273,
148
+ "duration": 331,
149
+ "calories": 17,
150
+ "source": "movesapp",
151
+ "source_name": "Moves App",
152
+ "last_updated": "2015-01-15T14:37:24+00:00",
153
+ "user_id": "53bec5ad84626bc886000002"
154
+ },
155
+ {
156
+ "_id": "54b7d0a4f9d13903c306c140",
157
+ "timestamp": "2015-01-15T12:48:17+00:00",
158
+ "utc_offset": "-05:00",
159
+ "type": "transport",
160
+ "intensity": null,
161
+ "start_time": "2015-01-15T07:48:17-05:00",
162
+ "distance": 22992,
163
+ "duration": 1212,
164
+ "calories": null,
165
+ "source": "movesapp",
166
+ "source_name": "Moves App",
167
+ "last_updated": "2015-01-15T14:37:24+00:00",
168
+ "user_id": "53bec5ad84626bc886000002"
169
+ },
170
+ {
171
+ "_id": "54b7d0a4f9d13903c306c13d",
172
+ "timestamp": "2015-01-15T12:45:27+00:00",
173
+ "utc_offset": "-05:00",
174
+ "type": "walking",
175
+ "intensity": null,
176
+ "start_time": "2015-01-15T07:45:27-05:00",
177
+ "distance": 50,
178
+ "duration": 60,
179
+ "calories": 3,
180
+ "source": "movesapp",
181
+ "source_name": "Moves App",
182
+ "last_updated": "2015-01-15T14:37:24+00:00",
183
+ "user_id": "53bec5ad84626bc886000002"
184
+ },
185
+ {
186
+ "_id": "54b76044f9d1393bad0657a1",
187
+ "timestamp": "2015-01-15T03:00:40+00:00",
188
+ "utc_offset": "-05:00",
189
+ "type": "walking",
190
+ "intensity": null,
191
+ "start_time": "2015-01-14T22:00:40-05:00",
192
+ "distance": 20,
193
+ "duration": 30,
194
+ "calories": 1,
195
+ "source": "movesapp",
196
+ "source_name": "Moves App",
197
+ "last_updated": "2015-01-15T06:37:56+00:00",
198
+ "user_id": "53bec5ad84626bc886000002"
199
+ },
200
+ {
201
+ "_id": "54b734ddf9d13907b806106e",
202
+ "timestamp": "2015-01-15T01:08:47+00:00",
203
+ "utc_offset": "-05:00",
204
+ "type": "walking",
205
+ "intensity": null,
206
+ "start_time": "2015-01-14T20:08:47-05:00",
207
+ "distance": 40,
208
+ "duration": 60,
209
+ "calories": 3,
210
+ "source": "movesapp",
211
+ "source_name": "Moves App",
212
+ "last_updated": "2015-01-15T03:32:45+00:00",
213
+ "user_id": "53bec5ad84626bc886000002"
214
+ },
215
+ {
216
+ "_id": "54b734dcf9d13907b806106b",
217
+ "timestamp": "2015-01-15T00:18:27+00:00",
218
+ "utc_offset": "-05:00",
219
+ "type": "walking",
220
+ "intensity": null,
221
+ "start_time": "2015-01-14T19:18:27-05:00",
222
+ "distance": 20,
223
+ "duration": 30,
224
+ "calories": 1,
225
+ "source": "movesapp",
226
+ "source_name": "Moves App",
227
+ "last_updated": "2015-01-15T03:32:44+00:00",
228
+ "user_id": "53bec5ad84626bc886000002"
229
+ },
230
+ {
231
+ "_id": "54b734dbf9d13907b8061068",
232
+ "timestamp": "2015-01-14T23:42:23+00:00",
233
+ "utc_offset": "-05:00",
234
+ "type": "walking",
235
+ "intensity": null,
236
+ "start_time": "2015-01-14T18:42:23-05:00",
237
+ "distance": 189,
238
+ "duration": 210,
239
+ "calories": 12,
240
+ "source": "movesapp",
241
+ "source_name": "Moves App",
242
+ "last_updated": "2015-01-15T03:32:43+00:00",
243
+ "user_id": "53bec5ad84626bc886000002"
244
+ },
245
+ {
246
+ "_id": "54b734dbf9d13907b8061065",
247
+ "timestamp": "2015-01-14T23:38:23+00:00",
248
+ "utc_offset": "-05:00",
249
+ "type": "transport",
250
+ "intensity": null,
251
+ "start_time": "2015-01-14T18:38:23-05:00",
252
+ "distance": 1227,
253
+ "duration": 136,
254
+ "calories": null,
255
+ "source": "movesapp",
256
+ "source_name": "Moves App",
257
+ "last_updated": "2015-01-15T03:32:43+00:00",
258
+ "user_id": "53bec5ad84626bc886000002"
259
+ },
260
+ {
261
+ "_id": "54b734daf9d13907b8061061",
262
+ "timestamp": "2015-01-14T23:19:51+00:00",
263
+ "utc_offset": "-05:00",
264
+ "type": "walking",
265
+ "intensity": null,
266
+ "start_time": "2015-01-14T18:19:51-05:00",
267
+ "distance": 264,
268
+ "duration": 240,
269
+ "calories": 17,
270
+ "source": "movesapp",
271
+ "source_name": "Moves App",
272
+ "last_updated": "2015-01-15T03:32:42+00:00",
273
+ "user_id": "53bec5ad84626bc886000002"
274
+ },
275
+ {
276
+ "_id": "54b734daf9d13907b806105e",
277
+ "timestamp": "2015-01-14T23:02:56+00:00",
278
+ "utc_offset": "-05:00",
279
+ "type": "transport",
280
+ "intensity": null,
281
+ "start_time": "2015-01-14T18:02:56-05:00",
282
+ "distance": 23114,
283
+ "duration": 975,
284
+ "calories": null,
285
+ "source": "movesapp",
286
+ "source_name": "Moves App",
287
+ "last_updated": "2015-01-15T03:32:42+00:00",
288
+ "user_id": "53bec5ad84626bc886000002"
289
+ },
290
+ {
291
+ "_id": "54b734d9f9d13907b806105b",
292
+ "timestamp": "2015-01-14T23:00:00+00:00",
293
+ "utc_offset": "-05:00",
294
+ "type": "walking",
295
+ "intensity": null,
296
+ "start_time": "2015-01-14T18:00:00-05:00",
297
+ "distance": 19,
298
+ "duration": 21,
299
+ "calories": 1,
300
+ "source": "movesapp",
301
+ "source_name": "Moves App",
302
+ "last_updated": "2015-01-15T03:32:41+00:00",
303
+ "user_id": "53bec5ad84626bc886000002"
304
+ },
305
+ {
306
+ "_id": "54b734d9f9d13907b8061058",
307
+ "timestamp": "2015-01-14T22:53:07+00:00",
308
+ "utc_offset": "-05:00",
309
+ "type": "walking",
310
+ "intensity": null,
311
+ "start_time": "2015-01-14T17:53:07-05:00",
312
+ "distance": 282,
313
+ "duration": 219,
314
+ "calories": 18,
315
+ "source": "movesapp",
316
+ "source_name": "Moves App",
317
+ "last_updated": "2015-01-15T03:32:41+00:00",
318
+ "user_id": "53bec5ad84626bc886000002"
319
+ },
320
+ {
321
+ "_id": "54b6990d75cb31f2e5000a53",
322
+ "timestamp": "2015-01-14T22:00:00+00:00",
323
+ "utc_offset": "+08:00",
324
+ "type": "Sports / Activities",
325
+ "intensity": null,
326
+ "start_time": "2015-01-14T22:00:00+00:00",
327
+ "distance": 0,
328
+ "duration": 900,
329
+ "calories": null,
330
+ "source": "mapmyfitness",
331
+ "source_name": "Map My Fitness",
332
+ "last_updated": "2015-01-14T23:17:29+00:00",
333
+ "user_id": "5433fd4084626b6b530000f7"
334
+ },
335
+ {
336
+ "_id": "54b6990d75cb31f2e5000a4e",
337
+ "timestamp": "2015-01-14T22:00:00+00:00",
338
+ "utc_offset": "+08:00",
339
+ "type": "Sports / Activities",
340
+ "intensity": null,
341
+ "start_time": "2015-01-14T22:00:00+00:00",
342
+ "distance": 0,
343
+ "duration": 1200,
344
+ "calories": null,
345
+ "source": "mapmyfitness",
346
+ "source_name": "Map My Fitness",
347
+ "last_updated": "2015-01-14T23:17:29+00:00",
348
+ "user_id": "5433fd4084626b6b530000f7"
349
+ },
350
+ {
351
+ "_id": "54b6990c75cb31f2e5000a49",
352
+ "timestamp": "2015-01-14T22:00:00+00:00",
353
+ "utc_offset": "+08:00",
354
+ "type": "Sports / Activities",
355
+ "intensity": null,
356
+ "start_time": "2015-01-14T22:00:00+00:00",
357
+ "distance": 0,
358
+ "duration": 1500,
359
+ "calories": null,
360
+ "source": "mapmyfitness",
361
+ "source_name": "Map My Fitness",
362
+ "last_updated": "2015-01-14T23:17:29+00:00",
363
+ "user_id": "5433fd4084626b6b530000f7"
364
+ },
365
+ {
366
+ "_id": "54b6990c75cb31f2e5000a44",
367
+ "timestamp": "2015-01-14T22:00:00+00:00",
368
+ "utc_offset": "+08:00",
369
+ "type": "Sports / Activities",
370
+ "intensity": null,
371
+ "start_time": "2015-01-14T22:00:00+00:00",
372
+ "distance": 0,
373
+ "duration": 1500,
374
+ "calories": null,
375
+ "source": "mapmyfitness",
376
+ "source_name": "Map My Fitness",
377
+ "last_updated": "2015-01-14T23:17:29+00:00",
378
+ "user_id": "5433fd4084626b6b530000f7"
379
+ },
380
+ {
381
+ "_id": "54b6990c75cb31f2e5000a3f",
382
+ "timestamp": "2015-01-14T22:00:00+00:00",
383
+ "utc_offset": "+08:00",
384
+ "type": "Sports / Activities",
385
+ "intensity": null,
386
+ "start_time": "2015-01-14T22:00:00+00:00",
387
+ "distance": 0,
388
+ "duration": 1200,
389
+ "calories": null,
390
+ "source": "mapmyfitness",
391
+ "source_name": "Map My Fitness",
392
+ "last_updated": "2015-01-14T23:17:28+00:00",
393
+ "user_id": "5433fd4084626b6b530000f7"
394
+ },
395
+ {
396
+ "_id": "54b6990c75cb31f2e5000a3a",
397
+ "timestamp": "2015-01-14T22:00:00+00:00",
398
+ "utc_offset": "+08:00",
399
+ "type": "Sports / Activities",
400
+ "intensity": null,
401
+ "start_time": "2015-01-14T22:00:00+00:00",
402
+ "distance": 0,
403
+ "duration": 1500,
404
+ "calories": null,
405
+ "source": "mapmyfitness",
406
+ "source_name": "Map My Fitness",
407
+ "last_updated": "2015-01-14T23:17:28+00:00",
408
+ "user_id": "5433fd4084626b6b530000f7"
409
+ },
410
+ {
411
+ "_id": "54b6990975cb31f2e5000a35",
412
+ "timestamp": "2015-01-14T22:00:00+00:00",
413
+ "utc_offset": "+08:00",
414
+ "type": "Sports / Activities",
415
+ "intensity": null,
416
+ "start_time": "2015-01-14T22:00:00+00:00",
417
+ "distance": 0,
418
+ "duration": 300,
419
+ "calories": null,
420
+ "source": "mapmyfitness",
421
+ "source_name": "Map My Fitness",
422
+ "last_updated": "2015-01-14T23:17:28+00:00",
423
+ "user_id": "5433fd4084626b6b530000f7"
424
+ },
425
+ {
426
+ "_id": "54b5b6d0734d914429000a13",
427
+ "timestamp": "2015-01-14T22:00:00+00:00",
428
+ "utc_offset": "+08:00",
429
+ "type": "Sports / Activities",
430
+ "intensity": null,
431
+ "start_time": "2015-01-14T22:00:00+00:00",
432
+ "distance": 0,
433
+ "duration": 300,
434
+ "calories": null,
435
+ "source": "mapmyfitness",
436
+ "source_name": "Map My Fitness",
437
+ "last_updated": "2015-01-14T23:18:35+00:00",
438
+ "user_id": "538c9054f1f70eb3a3000006"
439
+ },
440
+ {
441
+ "_id": "54b5b6cf734d914429000a10",
442
+ "timestamp": "2015-01-14T22:00:00+00:00",
443
+ "utc_offset": "+08:00",
444
+ "type": "Sports / Activities",
445
+ "intensity": null,
446
+ "start_time": "2015-01-14T22:00:00+00:00",
447
+ "distance": 0,
448
+ "duration": 300,
449
+ "calories": null,
450
+ "source": "mapmyfitness",
451
+ "source_name": "Map My Fitness",
452
+ "last_updated": "2015-01-14T23:18:35+00:00",
453
+ "user_id": "538c9054f1f70eb3a3000006"
454
+ },
455
+ {
456
+ "_id": "54b5b6cf734d914429000a0d",
457
+ "timestamp": "2015-01-14T22:00:00+00:00",
458
+ "utc_offset": "+08:00",
459
+ "type": "Sports / Activities",
460
+ "intensity": null,
461
+ "start_time": "2015-01-14T22:00:00+00:00",
462
+ "distance": 0,
463
+ "duration": 600,
464
+ "calories": null,
465
+ "source": "mapmyfitness",
466
+ "source_name": "Map My Fitness",
467
+ "last_updated": "2015-01-14T23:18:35+00:00",
468
+ "user_id": "538c9054f1f70eb3a3000006"
469
+ },
470
+ {
471
+ "_id": "54b5b6cf734d914429000a0a",
472
+ "timestamp": "2015-01-14T22:00:00+00:00",
473
+ "utc_offset": "+08:00",
474
+ "type": "Sports / Activities",
475
+ "intensity": null,
476
+ "start_time": "2015-01-14T22:00:00+00:00",
477
+ "distance": 0,
478
+ "duration": 900,
479
+ "calories": null,
480
+ "source": "mapmyfitness",
481
+ "source_name": "Map My Fitness",
482
+ "last_updated": "2015-01-14T23:18:35+00:00",
483
+ "user_id": "538c9054f1f70eb3a3000006"
484
+ },
485
+ {
486
+ "_id": "54b5b6ce734d914429000a07",
487
+ "timestamp": "2015-01-14T22:00:00+00:00",
488
+ "utc_offset": "+08:00",
489
+ "type": "Sports / Activities",
490
+ "intensity": null,
491
+ "start_time": "2015-01-14T22:00:00+00:00",
492
+ "distance": 0,
493
+ "duration": 300,
494
+ "calories": null,
495
+ "source": "mapmyfitness",
496
+ "source_name": "Map My Fitness",
497
+ "last_updated": "2015-01-14T23:18:35+00:00",
498
+ "user_id": "538c9054f1f70eb3a3000006"
499
+ },
500
+ {
501
+ "_id": "54b5b6ce734d914429000a04",
502
+ "timestamp": "2015-01-14T22:00:00+00:00",
503
+ "utc_offset": "+08:00",
504
+ "type": "Sports / Activities",
505
+ "intensity": null,
506
+ "start_time": "2015-01-14T22:00:00+00:00",
507
+ "distance": 0,
508
+ "duration": 600,
509
+ "calories": null,
510
+ "source": "mapmyfitness",
511
+ "source_name": "Map My Fitness",
512
+ "last_updated": "2015-01-14T23:18:34+00:00",
513
+ "user_id": "538c9054f1f70eb3a3000006"
514
+ },
515
+ {
516
+ "_id": "54b5b6cd734d914429000a01",
517
+ "timestamp": "2015-01-14T22:00:00+00:00",
518
+ "utc_offset": "+08:00",
519
+ "type": "Sports / Activities",
520
+ "intensity": null,
521
+ "start_time": "2015-01-14T22:00:00+00:00",
522
+ "distance": 0,
523
+ "duration": 900,
524
+ "calories": null,
525
+ "source": "mapmyfitness",
526
+ "source_name": "Map My Fitness",
527
+ "last_updated": "2015-01-14T23:18:34+00:00",
528
+ "user_id": "538c9054f1f70eb3a3000006"
529
+ },
530
+ {
531
+ "_id": "54b5b6cd734d9144290009fe",
532
+ "timestamp": "2015-01-14T22:00:00+00:00",
533
+ "utc_offset": "+08:00",
534
+ "type": "Sports / Activities",
535
+ "intensity": null,
536
+ "start_time": "2015-01-14T22:00:00+00:00",
537
+ "distance": 0,
538
+ "duration": 1200,
539
+ "calories": null,
540
+ "source": "mapmyfitness",
541
+ "source_name": "Map My Fitness",
542
+ "last_updated": "2015-01-14T23:18:33+00:00",
543
+ "user_id": "538c9054f1f70eb3a3000006"
544
+ },
545
+ {
546
+ "_id": "54b5b6cd734d9144290009fb",
547
+ "timestamp": "2015-01-14T22:00:00+00:00",
548
+ "utc_offset": "+08:00",
549
+ "type": "Sports / Activities",
550
+ "intensity": null,
551
+ "start_time": "2015-01-14T22:00:00+00:00",
552
+ "distance": 0,
553
+ "duration": 300,
554
+ "calories": null,
555
+ "source": "mapmyfitness",
556
+ "source_name": "Map My Fitness",
557
+ "last_updated": "2015-01-14T23:18:33+00:00",
558
+ "user_id": "538c9054f1f70eb3a3000006"
559
+ },
560
+ {
561
+ "_id": "54b5b6cc734d9144290009f8",
562
+ "timestamp": "2015-01-14T22:00:00+00:00",
563
+ "utc_offset": "+08:00",
564
+ "type": "Sports / Activities",
565
+ "intensity": null,
566
+ "start_time": "2015-01-14T22:00:00+00:00",
567
+ "distance": 0,
568
+ "duration": 900,
569
+ "calories": null,
570
+ "source": "mapmyfitness",
571
+ "source_name": "Map My Fitness",
572
+ "last_updated": "2015-01-14T23:18:33+00:00",
573
+ "user_id": "538c9054f1f70eb3a3000006"
574
+ },
575
+ {
576
+ "_id": "54b5b6cc734d9144290009f5",
577
+ "timestamp": "2015-01-14T22:00:00+00:00",
578
+ "utc_offset": "+08:00",
579
+ "type": "Sports / Activities",
580
+ "intensity": null,
581
+ "start_time": "2015-01-14T22:00:00+00:00",
582
+ "distance": 0,
583
+ "duration": 900,
584
+ "calories": null,
585
+ "source": "mapmyfitness",
586
+ "source_name": "Map My Fitness",
587
+ "last_updated": "2015-01-14T23:18:33+00:00",
588
+ "user_id": "538c9054f1f70eb3a3000006"
589
+ },
590
+ {
591
+ "_id": "54b5b6cc734d9144290009f2",
592
+ "timestamp": "2015-01-14T22:00:00+00:00",
593
+ "utc_offset": "+08:00",
594
+ "type": "Sports / Activities",
595
+ "intensity": null,
596
+ "start_time": "2015-01-14T22:00:00+00:00",
597
+ "distance": 0,
598
+ "duration": 300,
599
+ "calories": null,
600
+ "source": "mapmyfitness",
601
+ "source_name": "Map My Fitness",
602
+ "last_updated": "2015-01-14T23:18:32+00:00",
603
+ "user_id": "538c9054f1f70eb3a3000006"
604
+ },
605
+ {
606
+ "_id": "54b5b6cb734d9144290009ef",
607
+ "timestamp": "2015-01-14T22:00:00+00:00",
608
+ "utc_offset": "+08:00",
609
+ "type": "Sports / Activities",
610
+ "intensity": null,
611
+ "start_time": "2015-01-14T22:00:00+00:00",
612
+ "distance": 0,
613
+ "duration": 600,
614
+ "calories": null,
615
+ "source": "mapmyfitness",
616
+ "source_name": "Map My Fitness",
617
+ "last_updated": "2015-01-14T23:18:32+00:00",
618
+ "user_id": "538c9054f1f70eb3a3000006"
619
+ },
620
+ {
621
+ "_id": "54b5b6cb734d9144290009ec",
622
+ "timestamp": "2015-01-14T22:00:00+00:00",
623
+ "utc_offset": "+08:00",
624
+ "type": "Sports / Activities",
625
+ "intensity": null,
626
+ "start_time": "2015-01-14T22:00:00+00:00",
627
+ "distance": 0,
628
+ "duration": 900,
629
+ "calories": null,
630
+ "source": "mapmyfitness",
631
+ "source_name": "Map My Fitness",
632
+ "last_updated": "2015-01-14T23:18:31+00:00",
633
+ "user_id": "538c9054f1f70eb3a3000006"
634
+ },
635
+ {
636
+ "_id": "54b5b6cb734d9144290009e9",
637
+ "timestamp": "2015-01-14T22:00:00+00:00",
638
+ "utc_offset": "+08:00",
639
+ "type": "Sports / Activities",
640
+ "intensity": null,
641
+ "start_time": "2015-01-14T22:00:00+00:00",
642
+ "distance": 0,
643
+ "duration": 900,
644
+ "calories": null,
645
+ "source": "mapmyfitness",
646
+ "source_name": "Map My Fitness",
647
+ "last_updated": "2015-01-14T23:18:31+00:00",
648
+ "user_id": "538c9054f1f70eb3a3000006"
649
+ },
650
+ {
651
+ "_id": "54b5b6ca734d9144290009e6",
652
+ "timestamp": "2015-01-14T22:00:00+00:00",
653
+ "utc_offset": "+08:00",
654
+ "type": "Sports / Activities",
655
+ "intensity": null,
656
+ "start_time": "2015-01-14T22:00:00+00:00",
657
+ "distance": 0,
658
+ "duration": 300,
659
+ "calories": null,
660
+ "source": "mapmyfitness",
661
+ "source_name": "Map My Fitness",
662
+ "last_updated": "2015-01-14T23:18:30+00:00",
663
+ "user_id": "538c9054f1f70eb3a3000006"
664
+ },
665
+ {
666
+ "_id": "54b5b6ca734d9144290009e3",
667
+ "timestamp": "2015-01-14T22:00:00+00:00",
668
+ "utc_offset": "+08:00",
669
+ "type": "Sports / Activities",
670
+ "intensity": null,
671
+ "start_time": "2015-01-14T22:00:00+00:00",
672
+ "distance": 0,
673
+ "duration": 600,
674
+ "calories": null,
675
+ "source": "mapmyfitness",
676
+ "source_name": "Map My Fitness",
677
+ "last_updated": "2015-01-14T23:18:30+00:00",
678
+ "user_id": "538c9054f1f70eb3a3000006"
679
+ },
680
+ {
681
+ "_id": "54b5b6c9734d9144290009e0",
682
+ "timestamp": "2015-01-14T22:00:00+00:00",
683
+ "utc_offset": "+08:00",
684
+ "type": "Sports / Activities",
685
+ "intensity": null,
686
+ "start_time": "2015-01-14T22:00:00+00:00",
687
+ "distance": 0,
688
+ "duration": 900,
689
+ "calories": null,
690
+ "source": "mapmyfitness",
691
+ "source_name": "Map My Fitness",
692
+ "last_updated": "2015-01-14T23:18:30+00:00",
693
+ "user_id": "538c9054f1f70eb3a3000006"
694
+ },
695
+ {
696
+ "_id": "54b5b6c9734d9144290009dd",
697
+ "timestamp": "2015-01-14T22:00:00+00:00",
698
+ "utc_offset": "+08:00",
699
+ "type": "Sports / Activities",
700
+ "intensity": null,
701
+ "start_time": "2015-01-14T22:00:00+00:00",
702
+ "distance": 0,
703
+ "duration": 1200,
704
+ "calories": null,
705
+ "source": "mapmyfitness",
706
+ "source_name": "Map My Fitness",
707
+ "last_updated": "2015-01-14T23:18:29+00:00",
708
+ "user_id": "538c9054f1f70eb3a3000006"
709
+ },
710
+ {
711
+ "_id": "54b5b6c8734d9144290009d9",
712
+ "timestamp": "2015-01-14T22:00:00+00:00",
713
+ "utc_offset": "+08:00",
714
+ "type": "Sports / Activities",
715
+ "intensity": null,
716
+ "start_time": "2015-01-14T22:00:00+00:00",
717
+ "distance": 0,
718
+ "duration": 1500,
719
+ "calories": null,
720
+ "source": "mapmyfitness",
721
+ "source_name": "Map My Fitness",
722
+ "last_updated": "2015-01-14T23:18:28+00:00",
723
+ "user_id": "538c9054f1f70eb3a3000006"
724
+ },
725
+ {
726
+ "_id": "54b5b6c8734d9144290009d4",
727
+ "timestamp": "2015-01-14T22:00:00+00:00",
728
+ "utc_offset": "+08:00",
729
+ "type": "Sports / Activities",
730
+ "intensity": null,
731
+ "start_time": "2015-01-14T22:00:00+00:00",
732
+ "distance": 0,
733
+ "duration": 300,
734
+ "calories": null,
735
+ "source": "mapmyfitness",
736
+ "source_name": "Map My Fitness",
737
+ "last_updated": "2015-01-14T23:18:28+00:00",
738
+ "user_id": "538c9054f1f70eb3a3000006"
739
+ },
740
+ {
741
+ "_id": "54b5b6c7734d9144290009d1",
742
+ "timestamp": "2015-01-14T22:00:00+00:00",
743
+ "utc_offset": "+08:00",
744
+ "type": "Sports / Activities",
745
+ "intensity": null,
746
+ "start_time": "2015-01-14T22:00:00+00:00",
747
+ "distance": 0,
748
+ "duration": 600,
749
+ "calories": null,
750
+ "source": "mapmyfitness",
751
+ "source_name": "Map My Fitness",
752
+ "last_updated": "2015-01-14T23:18:28+00:00",
753
+ "user_id": "538c9054f1f70eb3a3000006"
754
+ },
755
+ {
756
+ "_id": "54b5b6c7734d9144290009ce",
757
+ "timestamp": "2015-01-14T22:00:00+00:00",
758
+ "utc_offset": "+08:00",
759
+ "type": "Sports / Activities",
760
+ "intensity": null,
761
+ "start_time": "2015-01-14T22:00:00+00:00",
762
+ "distance": 0,
763
+ "duration": 900,
764
+ "calories": null,
765
+ "source": "mapmyfitness",
766
+ "source_name": "Map My Fitness",
767
+ "last_updated": "2015-01-14T23:18:27+00:00",
768
+ "user_id": "538c9054f1f70eb3a3000006"
769
+ },
770
+ {
771
+ "_id": "54b5b6c6734d9144290009cb",
772
+ "timestamp": "2015-01-14T22:00:00+00:00",
773
+ "utc_offset": "+08:00",
774
+ "type": "Sports / Activities",
775
+ "intensity": null,
776
+ "start_time": "2015-01-14T22:00:00+00:00",
777
+ "distance": 0,
778
+ "duration": 1200,
779
+ "calories": null,
780
+ "source": "mapmyfitness",
781
+ "source_name": "Map My Fitness",
782
+ "last_updated": "2015-01-14T23:18:27+00:00",
783
+ "user_id": "538c9054f1f70eb3a3000006"
784
+ },
785
+ {
786
+ "_id": "54b5b6c6734d9144290009c8",
787
+ "timestamp": "2015-01-14T22:00:00+00:00",
788
+ "utc_offset": "+08:00",
789
+ "type": "Sports / Activities",
790
+ "intensity": null,
791
+ "start_time": "2015-01-14T22:00:00+00:00",
792
+ "distance": 0,
793
+ "duration": 1500,
794
+ "calories": null,
795
+ "source": "mapmyfitness",
796
+ "source_name": "Map My Fitness",
797
+ "last_updated": "2015-01-14T23:18:26+00:00",
798
+ "user_id": "538c9054f1f70eb3a3000006"
799
+ },
800
+ {
801
+ "_id": "54b5b6a8f9d139b28a0230b8",
802
+ "timestamp": "2015-01-14T22:00:00+00:00",
803
+ "utc_offset": "+08:00",
804
+ "type": "Sports / Activities",
805
+ "intensity": null,
806
+ "start_time": "2015-01-14T22:00:00+00:00",
807
+ "distance": 0,
808
+ "duration": 300,
809
+ "calories": null,
810
+ "source": "mapmyfitness",
811
+ "source_name": "Map My Fitness",
812
+ "last_updated": "2015-01-14T23:18:11+00:00",
813
+ "user_id": "53fcf61484626bf9d8000006"
814
+ },
815
+ {
816
+ "_id": "54b5b6a8f9d139b28a0230b5",
817
+ "timestamp": "2015-01-14T22:00:00+00:00",
818
+ "utc_offset": "+08:00",
819
+ "type": "Sports / Activities",
820
+ "intensity": null,
821
+ "start_time": "2015-01-14T22:00:00+00:00",
822
+ "distance": 0,
823
+ "duration": 300,
824
+ "calories": null,
825
+ "source": "mapmyfitness",
826
+ "source_name": "Map My Fitness",
827
+ "last_updated": "2015-01-14T23:18:10+00:00",
828
+ "user_id": "53fcf61484626bf9d8000006"
829
+ },
830
+ {
831
+ "_id": "54b5b6a8f9d139b28a0230b2",
832
+ "timestamp": "2015-01-14T22:00:00+00:00",
833
+ "utc_offset": "+08:00",
834
+ "type": "Sports / Activities",
835
+ "intensity": null,
836
+ "start_time": "2015-01-14T22:00:00+00:00",
837
+ "distance": 0,
838
+ "duration": 600,
839
+ "calories": null,
840
+ "source": "mapmyfitness",
841
+ "source_name": "Map My Fitness",
842
+ "last_updated": "2015-01-14T23:18:10+00:00",
843
+ "user_id": "53fcf61484626bf9d8000006"
844
+ },
845
+ {
846
+ "_id": "54b5b6a8f9d139b28a0230af",
847
+ "timestamp": "2015-01-14T22:00:00+00:00",
848
+ "utc_offset": "+08:00",
849
+ "type": "Sports / Activities",
850
+ "intensity": null,
851
+ "start_time": "2015-01-14T22:00:00+00:00",
852
+ "distance": 0,
853
+ "duration": 900,
854
+ "calories": null,
855
+ "source": "mapmyfitness",
856
+ "source_name": "Map My Fitness",
857
+ "last_updated": "2015-01-14T23:18:10+00:00",
858
+ "user_id": "53fcf61484626bf9d8000006"
859
+ },
860
+ {
861
+ "_id": "54b5b6a8f9d139b28a0230ac",
862
+ "timestamp": "2015-01-14T22:00:00+00:00",
863
+ "utc_offset": "+08:00",
864
+ "type": "Sports / Activities",
865
+ "intensity": null,
866
+ "start_time": "2015-01-14T22:00:00+00:00",
867
+ "distance": 0,
868
+ "duration": 300,
869
+ "calories": null,
870
+ "source": "mapmyfitness",
871
+ "source_name": "Map My Fitness",
872
+ "last_updated": "2015-01-14T23:18:10+00:00",
873
+ "user_id": "53fcf61484626bf9d8000006"
874
+ },
875
+ {
876
+ "_id": "54b5b6a7f9d139b28a0230a9",
877
+ "timestamp": "2015-01-14T22:00:00+00:00",
878
+ "utc_offset": "+08:00",
879
+ "type": "Sports / Activities",
880
+ "intensity": null,
881
+ "start_time": "2015-01-14T22:00:00+00:00",
882
+ "distance": 0,
883
+ "duration": 600,
884
+ "calories": null,
885
+ "source": "mapmyfitness",
886
+ "source_name": "Map My Fitness",
887
+ "last_updated": "2015-01-14T23:18:09+00:00",
888
+ "user_id": "53fcf61484626bf9d8000006"
889
+ },
890
+ {
891
+ "_id": "54b5b6a7f9d139b28a0230a6",
892
+ "timestamp": "2015-01-14T22:00:00+00:00",
893
+ "utc_offset": "+08:00",
894
+ "type": "Sports / Activities",
895
+ "intensity": null,
896
+ "start_time": "2015-01-14T22:00:00+00:00",
897
+ "distance": 0,
898
+ "duration": 900,
899
+ "calories": null,
900
+ "source": "mapmyfitness",
901
+ "source_name": "Map My Fitness",
902
+ "last_updated": "2015-01-14T23:18:09+00:00",
903
+ "user_id": "53fcf61484626bf9d8000006"
904
+ },
905
+ {
906
+ "_id": "54b5b6a7f9d139b28a0230a3",
907
+ "timestamp": "2015-01-14T22:00:00+00:00",
908
+ "utc_offset": "+08:00",
909
+ "type": "Sports / Activities",
910
+ "intensity": null,
911
+ "start_time": "2015-01-14T22:00:00+00:00",
912
+ "distance": 0,
913
+ "duration": 1200,
914
+ "calories": null,
915
+ "source": "mapmyfitness",
916
+ "source_name": "Map My Fitness",
917
+ "last_updated": "2015-01-14T23:18:09+00:00",
918
+ "user_id": "53fcf61484626bf9d8000006"
919
+ },
920
+ {
921
+ "_id": "54b5b6a6f9d139b28a0230a0",
922
+ "timestamp": "2015-01-14T22:00:00+00:00",
923
+ "utc_offset": "+08:00",
924
+ "type": "Sports / Activities",
925
+ "intensity": null,
926
+ "start_time": "2015-01-14T22:00:00+00:00",
927
+ "distance": 0,
928
+ "duration": 300,
929
+ "calories": null,
930
+ "source": "mapmyfitness",
931
+ "source_name": "Map My Fitness",
932
+ "last_updated": "2015-01-14T23:18:09+00:00",
933
+ "user_id": "53fcf61484626bf9d8000006"
934
+ },
935
+ {
936
+ "_id": "54b5b6a6f9d139b28a02309d",
937
+ "timestamp": "2015-01-14T22:00:00+00:00",
938
+ "utc_offset": "+08:00",
939
+ "type": "Sports / Activities",
940
+ "intensity": null,
941
+ "start_time": "2015-01-14T22:00:00+00:00",
942
+ "distance": 0,
943
+ "duration": 900,
944
+ "calories": null,
945
+ "source": "mapmyfitness",
946
+ "source_name": "Map My Fitness",
947
+ "last_updated": "2015-01-14T23:18:08+00:00",
948
+ "user_id": "53fcf61484626bf9d8000006"
949
+ },
950
+ {
951
+ "_id": "54b5b6a6f9d139b28a02309a",
952
+ "timestamp": "2015-01-14T22:00:00+00:00",
953
+ "utc_offset": "+08:00",
954
+ "type": "Sports / Activities",
955
+ "intensity": null,
956
+ "start_time": "2015-01-14T22:00:00+00:00",
957
+ "distance": 0,
958
+ "duration": 900,
959
+ "calories": null,
960
+ "source": "mapmyfitness",
961
+ "source_name": "Map My Fitness",
962
+ "last_updated": "2015-01-14T23:18:08+00:00",
963
+ "user_id": "53fcf61484626bf9d8000006"
964
+ },
965
+ {
966
+ "_id": "54b5b6a6f9d139b28a023097",
967
+ "timestamp": "2015-01-14T22:00:00+00:00",
968
+ "utc_offset": "+08:00",
969
+ "type": "Sports / Activities",
970
+ "intensity": null,
971
+ "start_time": "2015-01-14T22:00:00+00:00",
972
+ "distance": 0,
973
+ "duration": 300,
974
+ "calories": null,
975
+ "source": "mapmyfitness",
976
+ "source_name": "Map My Fitness",
977
+ "last_updated": "2015-01-14T23:18:08+00:00",
978
+ "user_id": "53fcf61484626bf9d8000006"
979
+ },
980
+ {
981
+ "_id": "54b5b6a6f9d139b28a023093",
982
+ "timestamp": "2015-01-14T22:00:00+00:00",
983
+ "utc_offset": "+08:00",
984
+ "type": "Sports / Activities",
985
+ "intensity": null,
986
+ "start_time": "2015-01-14T22:00:00+00:00",
987
+ "distance": 0,
988
+ "duration": 600,
989
+ "calories": null,
990
+ "source": "mapmyfitness",
991
+ "source_name": "Map My Fitness",
992
+ "last_updated": "2015-01-14T23:18:08+00:00",
993
+ "user_id": "53fcf61484626bf9d8000006"
994
+ },
995
+ {
996
+ "_id": "54b5b6a5f9d139b28a023090",
997
+ "timestamp": "2015-01-14T22:00:00+00:00",
998
+ "utc_offset": "+08:00",
999
+ "type": "Sports / Activities",
1000
+ "intensity": null,
1001
+ "start_time": "2015-01-14T22:00:00+00:00",
1002
+ "distance": 0,
1003
+ "duration": 900,
1004
+ "calories": null,
1005
+ "source": "mapmyfitness",
1006
+ "source_name": "Map My Fitness",
1007
+ "last_updated": "2015-01-14T23:18:07+00:00",
1008
+ "user_id": "53fcf61484626bf9d8000006"
1009
+ },
1010
+ {
1011
+ "_id": "54b5b6a5f9d139b28a02308d",
1012
+ "timestamp": "2015-01-14T22:00:00+00:00",
1013
+ "utc_offset": "+08:00",
1014
+ "type": "Sports / Activities",
1015
+ "intensity": null,
1016
+ "start_time": "2015-01-14T22:00:00+00:00",
1017
+ "distance": 0,
1018
+ "duration": 900,
1019
+ "calories": null,
1020
+ "source": "mapmyfitness",
1021
+ "source_name": "Map My Fitness",
1022
+ "last_updated": "2015-01-14T23:18:07+00:00",
1023
+ "user_id": "53fcf61484626bf9d8000006"
1024
+ },
1025
+ {
1026
+ "_id": "54b5b6a5f9d139b28a02308a",
1027
+ "timestamp": "2015-01-14T22:00:00+00:00",
1028
+ "utc_offset": "+08:00",
1029
+ "type": "Sports / Activities",
1030
+ "intensity": null,
1031
+ "start_time": "2015-01-14T22:00:00+00:00",
1032
+ "distance": 0,
1033
+ "duration": 300,
1034
+ "calories": null,
1035
+ "source": "mapmyfitness",
1036
+ "source_name": "Map My Fitness",
1037
+ "last_updated": "2015-01-14T23:18:07+00:00",
1038
+ "user_id": "53fcf61484626bf9d8000006"
1039
+ },
1040
+ {
1041
+ "_id": "54b5b6a5f9d139b28a023086",
1042
+ "timestamp": "2015-01-14T22:00:00+00:00",
1043
+ "utc_offset": "+08:00",
1044
+ "type": "Sports / Activities",
1045
+ "intensity": null,
1046
+ "start_time": "2015-01-14T22:00:00+00:00",
1047
+ "distance": 0,
1048
+ "duration": 600,
1049
+ "calories": null,
1050
+ "source": "mapmyfitness",
1051
+ "source_name": "Map My Fitness",
1052
+ "last_updated": "2015-01-14T23:18:06+00:00",
1053
+ "user_id": "53fcf61484626bf9d8000006"
1054
+ },
1055
+ {
1056
+ "_id": "54b5b6a4f9d139b28a023080",
1057
+ "timestamp": "2015-01-14T22:00:00+00:00",
1058
+ "utc_offset": "+08:00",
1059
+ "type": "Sports / Activities",
1060
+ "intensity": null,
1061
+ "start_time": "2015-01-14T22:00:00+00:00",
1062
+ "distance": 0,
1063
+ "duration": 900,
1064
+ "calories": null,
1065
+ "source": "mapmyfitness",
1066
+ "source_name": "Map My Fitness",
1067
+ "last_updated": "2015-01-14T23:18:05+00:00",
1068
+ "user_id": "53fcf61484626bf9d8000006"
1069
+ },
1070
+ {
1071
+ "_id": "54b5b6a4f9d139b28a02307b",
1072
+ "timestamp": "2015-01-14T22:00:00+00:00",
1073
+ "utc_offset": "+08:00",
1074
+ "type": "Sports / Activities",
1075
+ "intensity": null,
1076
+ "start_time": "2015-01-14T22:00:00+00:00",
1077
+ "distance": 0,
1078
+ "duration": 1200,
1079
+ "calories": null,
1080
+ "source": "mapmyfitness",
1081
+ "source_name": "Map My Fitness",
1082
+ "last_updated": "2015-01-14T23:18:05+00:00",
1083
+ "user_id": "53fcf61484626bf9d8000006"
1084
+ },
1085
+ {
1086
+ "_id": "54b5b6a4f9d139b28a023075",
1087
+ "timestamp": "2015-01-14T22:00:00+00:00",
1088
+ "utc_offset": "+08:00",
1089
+ "type": "Sports / Activities",
1090
+ "intensity": null,
1091
+ "start_time": "2015-01-14T22:00:00+00:00",
1092
+ "distance": 0,
1093
+ "duration": 1500,
1094
+ "calories": null,
1095
+ "source": "mapmyfitness",
1096
+ "source_name": "Map My Fitness",
1097
+ "last_updated": "2015-01-14T23:18:05+00:00",
1098
+ "user_id": "53fcf61484626bf9d8000006"
1099
+ },
1100
+ {
1101
+ "_id": "54b5b6a3f9d139b28a02306f",
1102
+ "timestamp": "2015-01-14T22:00:00+00:00",
1103
+ "utc_offset": "+08:00",
1104
+ "type": "Sports / Activities",
1105
+ "intensity": null,
1106
+ "start_time": "2015-01-14T22:00:00+00:00",
1107
+ "distance": 0,
1108
+ "duration": 300,
1109
+ "calories": null,
1110
+ "source": "mapmyfitness",
1111
+ "source_name": "Map My Fitness",
1112
+ "last_updated": "2015-01-14T23:18:05+00:00",
1113
+ "user_id": "53fcf61484626bf9d8000006"
1114
+ },
1115
+ {
1116
+ "_id": "54b5b6a3f9d139b28a023068",
1117
+ "timestamp": "2015-01-14T22:00:00+00:00",
1118
+ "utc_offset": "+08:00",
1119
+ "type": "Sports / Activities",
1120
+ "intensity": null,
1121
+ "start_time": "2015-01-14T22:00:00+00:00",
1122
+ "distance": 0,
1123
+ "duration": 600,
1124
+ "calories": null,
1125
+ "source": "mapmyfitness",
1126
+ "source_name": "Map My Fitness",
1127
+ "last_updated": "2015-01-14T23:18:04+00:00",
1128
+ "user_id": "53fcf61484626bf9d8000006"
1129
+ },
1130
+ {
1131
+ "_id": "54b5b6a3f9d139b28a023061",
1132
+ "timestamp": "2015-01-14T22:00:00+00:00",
1133
+ "utc_offset": "+08:00",
1134
+ "type": "Sports / Activities",
1135
+ "intensity": null,
1136
+ "start_time": "2015-01-14T22:00:00+00:00",
1137
+ "distance": 0,
1138
+ "duration": 900,
1139
+ "calories": null,
1140
+ "source": "mapmyfitness",
1141
+ "source_name": "Map My Fitness",
1142
+ "last_updated": "2015-01-14T23:18:04+00:00",
1143
+ "user_id": "53fcf61484626bf9d8000006"
1144
+ },
1145
+ {
1146
+ "_id": "54b5b6a2f9d139b28a02305a",
1147
+ "timestamp": "2015-01-14T22:00:00+00:00",
1148
+ "utc_offset": "+08:00",
1149
+ "type": "Sports / Activities",
1150
+ "intensity": null,
1151
+ "start_time": "2015-01-14T22:00:00+00:00",
1152
+ "distance": 0,
1153
+ "duration": 1200,
1154
+ "calories": null,
1155
+ "source": "mapmyfitness",
1156
+ "source_name": "Map My Fitness",
1157
+ "last_updated": "2015-01-14T23:18:04+00:00",
1158
+ "user_id": "53fcf61484626bf9d8000006"
1159
+ },
1160
+ {
1161
+ "_id": "54b5b6a2f9d139b28a023052",
1162
+ "timestamp": "2015-01-14T22:00:00+00:00",
1163
+ "utc_offset": "+08:00",
1164
+ "type": "Sports / Activities",
1165
+ "intensity": null,
1166
+ "start_time": "2015-01-14T22:00:00+00:00",
1167
+ "distance": 0,
1168
+ "duration": 1500,
1169
+ "calories": null,
1170
+ "source": "mapmyfitness",
1171
+ "source_name": "Map My Fitness",
1172
+ "last_updated": "2015-01-14T23:18:03+00:00",
1173
+ "user_id": "53fcf61484626bf9d8000006"
1174
+ },
1175
+ {
1176
+ "_id": "54b6ee7dcf8afda786000b7f",
1177
+ "timestamp": "2015-01-14T20:20:50+00:00",
1178
+ "utc_offset": "-05:00",
1179
+ "type": "walking",
1180
+ "intensity": null,
1181
+ "start_time": "2015-01-14T15:20:50-05:00",
1182
+ "distance": 70,
1183
+ "duration": 90,
1184
+ "calories": 4,
1185
+ "source": "movesapp",
1186
+ "source_name": "Moves App",
1187
+ "last_updated": "2015-01-14T22:32:29+00:00",
1188
+ "user_id": "53bec5ad84626bc886000002"
1189
+ },
1190
+ {
1191
+ "_id": "54b6ee7ccf8afda786000b79",
1192
+ "timestamp": "2015-01-14T19:00:01+00:00",
1193
+ "utc_offset": "-05:00",
1194
+ "type": "walking",
1195
+ "intensity": null,
1196
+ "start_time": "2015-01-14T14:00:01-05:00",
1197
+ "distance": 241,
1198
+ "duration": 180,
1199
+ "calories": 15,
1200
+ "source": "movesapp",
1201
+ "source_name": "Moves App",
1202
+ "last_updated": "2015-01-14T22:32:28+00:00",
1203
+ "user_id": "53bec5ad84626bc886000002"
1204
+ },
1205
+ {
1206
+ "_id": "54b6ee7bcf8afda786000b71",
1207
+ "timestamp": "2015-01-14T18:00:00+00:00",
1208
+ "utc_offset": "-05:00",
1209
+ "type": "walking",
1210
+ "intensity": null,
1211
+ "start_time": "2015-01-14T13:00:00-05:00",
1212
+ "distance": 66,
1213
+ "duration": 102,
1214
+ "calories": 4,
1215
+ "source": "movesapp",
1216
+ "source_name": "Moves App",
1217
+ "last_updated": "2015-01-14T22:32:27+00:00",
1218
+ "user_id": "53bec5ad84626bc886000002"
1219
+ },
1220
+ {
1221
+ "_id": "54b6c2ccf9d139941404a32d",
1222
+ "timestamp": "2015-01-14T17:28:41+00:00",
1223
+ "utc_offset": "-05:00",
1224
+ "type": "walking",
1225
+ "intensity": null,
1226
+ "start_time": "2015-01-14T12:28:41-05:00",
1227
+ "distance": 354,
1228
+ "duration": 319,
1229
+ "calories": 23,
1230
+ "source": "movesapp",
1231
+ "source_name": "Moves App",
1232
+ "last_updated": "2015-01-14T22:32:27+00:00",
1233
+ "user_id": "53bec5ad84626bc886000002"
1234
+ },
1235
+ {
1236
+ "_id": "54b6c2cbf9d139941404a323",
1237
+ "timestamp": "2015-01-14T16:50:57+00:00",
1238
+ "utc_offset": "-05:00",
1239
+ "type": "walking",
1240
+ "intensity": null,
1241
+ "start_time": "2015-01-14T11:50:57-05:00",
1242
+ "distance": 50,
1243
+ "duration": 60,
1244
+ "calories": 3,
1245
+ "source": "movesapp",
1246
+ "source_name": "Moves App",
1247
+ "last_updated": "2015-01-14T19:26:03+00:00",
1248
+ "user_id": "53bec5ad84626bc886000002"
1249
+ },
1250
+ {
1251
+ "_id": "54b69a74587b6f7a0e024f32",
1252
+ "timestamp": "2015-01-14T14:24:22+00:00",
1253
+ "utc_offset": "-05:00",
1254
+ "type": "walking",
1255
+ "intensity": null,
1256
+ "start_time": "2015-01-14T09:24:22-05:00",
1257
+ "distance": 65,
1258
+ "duration": 90,
1259
+ "calories": 4,
1260
+ "source": "movesapp",
1261
+ "source_name": "Moves App",
1262
+ "last_updated": "2015-01-14T16:33:56+00:00",
1263
+ "user_id": "53bec5ad84626bc886000002"
1264
+ },
1265
+ {
1266
+ "_id": "54b69a73587b6f7a0e024f29",
1267
+ "timestamp": "2015-01-14T13:50:19+00:00",
1268
+ "utc_offset": "-05:00",
1269
+ "type": "walking",
1270
+ "intensity": null,
1271
+ "start_time": "2015-01-14T08:50:19-05:00",
1272
+ "distance": 30,
1273
+ "duration": 30,
1274
+ "calories": 2,
1275
+ "source": "movesapp",
1276
+ "source_name": "Moves App",
1277
+ "last_updated": "2015-01-14T16:33:55+00:00",
1278
+ "user_id": "53bec5ad84626bc886000002"
1279
+ },
1280
+ {
1281
+ "_id": "54b69a72587b6f7a0e024f22",
1282
+ "timestamp": "2015-01-14T13:15:06+00:00",
1283
+ "utc_offset": "-05:00",
1284
+ "type": "walking",
1285
+ "intensity": null,
1286
+ "start_time": "2015-01-14T08:15:06-05:00",
1287
+ "distance": 242,
1288
+ "duration": 280,
1289
+ "calories": 15,
1290
+ "source": "movesapp",
1291
+ "source_name": "Moves App",
1292
+ "last_updated": "2015-01-14T16:33:54+00:00",
1293
+ "user_id": "53bec5ad84626bc886000002"
1294
+ },
1295
+ {
1296
+ "_id": "54b69a71587b6f7a0e024f1d",
1297
+ "timestamp": "2015-01-14T12:53:22+00:00",
1298
+ "utc_offset": "-05:00",
1299
+ "type": "transport",
1300
+ "intensity": null,
1301
+ "start_time": "2015-01-14T07:53:22-05:00",
1302
+ "distance": 23219,
1303
+ "duration": 1304,
1304
+ "calories": null,
1305
+ "source": "movesapp",
1306
+ "source_name": "Moves App",
1307
+ "last_updated": "2015-01-14T16:33:53+00:00",
1308
+ "user_id": "53bec5ad84626bc886000002"
1309
+ },
1310
+ {
1311
+ "_id": "54b66fd3f9d13907b803581b",
1312
+ "timestamp": "2015-01-14T12:46:35+00:00",
1313
+ "utc_offset": "-05:00",
1314
+ "type": "walking",
1315
+ "intensity": null,
1316
+ "start_time": "2015-01-14T07:46:35-05:00",
1317
+ "distance": 65,
1318
+ "duration": 60,
1319
+ "calories": 4,
1320
+ "source": "movesapp",
1321
+ "source_name": "Moves App",
1322
+ "last_updated": "2015-01-14T13:32:03+00:00",
1323
+ "user_id": "53bec5ad84626bc886000002"
1324
+ },
1325
+ {
1326
+ "_id": "54b7ec4df9d139bab0071743",
1327
+ "timestamp": "2015-01-14T10:53:00+00:00",
1328
+ "utc_offset": "+08:00",
1329
+ "type": "walking",
1330
+ "intensity": null,
1331
+ "start_time": "2015-01-14T18:53:00+08:00",
1332
+ "distance": 1541,
1333
+ "duration": 1444,
1334
+ "calories": 78,
1335
+ "source": "movesapp",
1336
+ "source_name": "Moves App",
1337
+ "last_updated": "2015-01-15T16:35:25+00:00",
1338
+ "user_id": "52ffcb4bf1f70eefba000004"
1339
+ },
1340
+ {
1341
+ "_id": "54b7ec4df9d139bab0071740",
1342
+ "timestamp": "2015-01-14T10:41:31+00:00",
1343
+ "utc_offset": "+08:00",
1344
+ "type": "walking",
1345
+ "intensity": null,
1346
+ "start_time": "2015-01-14T18:41:31+08:00",
1347
+ "distance": 61,
1348
+ "duration": 60,
1349
+ "calories": 3,
1350
+ "source": "movesapp",
1351
+ "source_name": "Moves App",
1352
+ "last_updated": "2015-01-15T16:35:25+00:00",
1353
+ "user_id": "52ffcb4bf1f70eefba000004"
1354
+ },
1355
+ {
1356
+ "_id": "54b627d8587b6f1ed701dfa8",
1357
+ "timestamp": "2015-01-14T05:53:35+00:00",
1358
+ "utc_offset": "+10:00",
1359
+ "type": "Running",
1360
+ "intensity": null,
1361
+ "start_time": "2015-01-14T15:53:35+10:00",
1362
+ "distance": 4857.48656334596,
1363
+ "duration": 2454.384,
1364
+ "calories": 468.837515605714,
1365
+ "source": "healthgraph",
1366
+ "source_name": "RunKeeper",
1367
+ "last_updated": "2015-01-14T08:24:56+00:00",
1368
+ "user_id": "51c7dc676dedda04f9000011"
1369
+ },
1370
+ {
1371
+ "_id": "54b6bc8334f588c20a001064",
1372
+ "timestamp": "2015-01-14T03:00:25+00:00",
1373
+ "utc_offset": "+08:00",
1374
+ "type": "Bike",
1375
+ "intensity": "1.0",
1376
+ "start_time": "2015-01-14T11:00:25+08:00",
1377
+ "distance": 0,
1378
+ "duration": 3600,
1379
+ "calories": 202.846920121,
1380
+ "source": "jawbone_up",
1381
+ "source_name": "Jawbone Up",
1382
+ "last_updated": "2015-01-14T18:59:15+00:00",
1383
+ "user_id": "52ffcb4bf1f70eefba000004"
1384
+ },
1385
+ {
1386
+ "_id": "54b6a15da51a82dc2b08f0bc",
1387
+ "timestamp": "2015-01-14T01:30:00+00:00",
1388
+ "utc_offset": "+05:30",
1389
+ "type": "Bike",
1390
+ "intensity": "Very Leisurely - under 10 mph",
1391
+ "start_time": "2015-01-14T07:00:00+05:30",
1392
+ "distance": 1000,
1393
+ "duration": 900,
1394
+ "calories": 57,
1395
+ "source": "fitbit",
1396
+ "source_name": "Fitbit",
1397
+ "last_updated": "2015-01-14T17:03:25+00:00",
1398
+ "user_id": "52fa869cf1f70e078700001f"
1399
+ },
1400
+ {
1401
+ "_id": "54b5b636587b6ff298013fd0",
1402
+ "timestamp": "2015-01-14T00:30:00+00:00",
1403
+ "utc_offset": "+05:30",
1404
+ "type": "Sports / Activities",
1405
+ "intensity": null,
1406
+ "start_time": "2015-01-14T00:30:00+00:00",
1407
+ "distance": 0,
1408
+ "duration": 180,
1409
+ "calories": null,
1410
+ "source": "mapmyfitness",
1411
+ "source_name": "Map My Fitness",
1412
+ "last_updated": "2015-01-14T23:18:21+00:00",
1413
+ "user_id": "52fa869cf1f70e078700001f"
1414
+ },
1415
+ {
1416
+ "_id": "54b5b636587b6ff298013fca",
1417
+ "timestamp": "2015-01-14T00:30:00+00:00",
1418
+ "utc_offset": "+05:30",
1419
+ "type": "Sports / Activities",
1420
+ "intensity": null,
1421
+ "start_time": "2015-01-14T00:30:00+00:00",
1422
+ "distance": 0,
1423
+ "duration": 60,
1424
+ "calories": null,
1425
+ "source": "mapmyfitness",
1426
+ "source_name": "Map My Fitness",
1427
+ "last_updated": "2015-01-14T23:18:21+00:00",
1428
+ "user_id": "52fa869cf1f70e078700001f"
1429
+ },
1430
+ {
1431
+ "_id": "54b5b636587b6ff298013fc5",
1432
+ "timestamp": "2015-01-14T00:30:00+00:00",
1433
+ "utc_offset": "+05:30",
1434
+ "type": "Sports / Activities",
1435
+ "intensity": null,
1436
+ "start_time": "2015-01-14T00:30:00+00:00",
1437
+ "distance": 0,
1438
+ "duration": 120,
1439
+ "calories": null,
1440
+ "source": "mapmyfitness",
1441
+ "source_name": "Map My Fitness",
1442
+ "last_updated": "2015-01-14T23:18:20+00:00",
1443
+ "user_id": "52fa869cf1f70e078700001f"
1444
+ },
1445
+ {
1446
+ "_id": "54b5b635587b6ff298013fbc",
1447
+ "timestamp": "2015-01-14T00:30:00+00:00",
1448
+ "utc_offset": "+05:30",
1449
+ "type": "Sports / Activities",
1450
+ "intensity": null,
1451
+ "start_time": "2015-01-14T00:30:00+00:00",
1452
+ "distance": 0,
1453
+ "duration": 300,
1454
+ "calories": null,
1455
+ "source": "mapmyfitness",
1456
+ "source_name": "Map My Fitness",
1457
+ "last_updated": "2015-01-14T23:18:20+00:00",
1458
+ "user_id": "52fa869cf1f70e078700001f"
1459
+ },
1460
+ {
1461
+ "_id": "54b5b635587b6ff298013fb7",
1462
+ "timestamp": "2015-01-14T00:30:00+00:00",
1463
+ "utc_offset": "+05:30",
1464
+ "type": "Sports / Activities",
1465
+ "intensity": null,
1466
+ "start_time": "2015-01-14T00:30:00+00:00",
1467
+ "distance": 0,
1468
+ "duration": 180,
1469
+ "calories": null,
1470
+ "source": "mapmyfitness",
1471
+ "source_name": "Map My Fitness",
1472
+ "last_updated": "2015-01-14T23:18:20+00:00",
1473
+ "user_id": "52fa869cf1f70e078700001f"
1474
+ },
1475
+ {
1476
+ "_id": "54b5b635587b6ff298013faf",
1477
+ "timestamp": "2015-01-14T00:30:00+00:00",
1478
+ "utc_offset": "+05:30",
1479
+ "type": "Sports / Activities",
1480
+ "intensity": null,
1481
+ "start_time": "2015-01-14T00:30:00+00:00",
1482
+ "distance": 0,
1483
+ "duration": 60,
1484
+ "calories": null,
1485
+ "source": "mapmyfitness",
1486
+ "source_name": "Map My Fitness",
1487
+ "last_updated": "2015-01-14T23:18:20+00:00",
1488
+ "user_id": "52fa869cf1f70e078700001f"
1489
+ },
1490
+ {
1491
+ "_id": "54b5b634587b6ff298013fa8",
1492
+ "timestamp": "2015-01-14T00:30:00+00:00",
1493
+ "utc_offset": "+05:30",
1494
+ "type": "Sports / Activities",
1495
+ "intensity": null,
1496
+ "start_time": "2015-01-14T00:30:00+00:00",
1497
+ "distance": 0,
1498
+ "duration": 120,
1499
+ "calories": null,
1500
+ "source": "mapmyfitness",
1501
+ "source_name": "Map My Fitness",
1502
+ "last_updated": "2015-01-14T23:18:20+00:00",
1503
+ "user_id": "52fa869cf1f70e078700001f"
1504
+ },
1505
+ {
1506
+ "_id": "54b5b634587b6ff298013fa4",
1507
+ "timestamp": "2015-01-14T00:30:00+00:00",
1508
+ "utc_offset": "+05:30",
1509
+ "type": "Sports / Activities",
1510
+ "intensity": null,
1511
+ "start_time": "2015-01-14T00:30:00+00:00",
1512
+ "distance": 0,
1513
+ "duration": 240,
1514
+ "calories": null,
1515
+ "source": "mapmyfitness",
1516
+ "source_name": "Map My Fitness",
1517
+ "last_updated": "2015-01-14T23:18:19+00:00",
1518
+ "user_id": "52fa869cf1f70e078700001f"
1519
+ }
1520
+ ]
1521
+ }