clever-ruby 0.11.1 → 0.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +15 -1
- data/clever-ruby.gemspec +0 -1
- data/lib/clever-ruby.rb +1 -1
- data/lib/clever-ruby/api_resource.rb +43 -7
- data/lib/clever-ruby/district.rb +14 -0
- data/lib/clever-ruby/event.rb +2 -0
- data/lib/clever-ruby/school.rb +2 -0
- data/lib/clever-ruby/school_admin.rb +17 -0
- data/lib/clever-ruby/section.rb +2 -0
- data/lib/clever-ruby/student.rb +2 -0
- data/lib/clever-ruby/teacher.rb +2 -0
- data/lib/clever-ruby/util.rb +1 -9
- data/lib/clever-ruby/version.rb +1 -1
- data/test/data/vcr_cassettes/Clever_APIOperations_List/counts_district_properly.yml +14 -8
- data/test/data/vcr_cassettes/Clever_APIOperations_List/counts_event_properly.yml +14 -8
- data/test/data/vcr_cassettes/Clever_APIOperations_List/counts_school_admin_properly.yml +52 -0
- data/test/data/vcr_cassettes/Clever_APIOperations_List/counts_school_properly.yml +14 -8
- data/test/data/vcr_cassettes/Clever_APIOperations_List/counts_section_properly.yml +14 -8
- data/test/data/vcr_cassettes/Clever_APIOperations_List/counts_student_properly.yml +14 -8
- data/test/data/vcr_cassettes/Clever_APIOperations_List/counts_teacher_properly.yml +14 -8
- data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_a_single_district.yml +28 -16
- data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_a_single_event.yml +28 -16
- data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_a_single_school.yml +28 -18
- data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_a_single_school_admin.yml +101 -0
- data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_a_single_section.yml +30 -18
- data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_a_single_student.yml +30 -18
- data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_a_single_teacher.yml +28 -18
- data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_districts_by_page.yml +28 -16
- data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_districts_with_multiple_ids.yml +28 -16
- data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_events_by_page.yml +24 -10
- data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_events_with_multiple_ids.yml +30 -18
- data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_school_admins_by_page.yml +101 -0
- data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_school_admins_with_multiple_ids.yml +101 -0
- data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_schools_by_page.yml +28 -18
- data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_schools_with_multiple_ids.yml +28 -20
- data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_sections_by_page.yml +34 -22
- data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_sections_with_multiple_ids.yml +30 -18
- data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_students_by_page.yml +48 -36
- data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_students_with_multiple_ids.yml +30 -18
- data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_teachers_by_page.yml +27 -17
- data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_teachers_with_multiple_ids.yml +28 -20
- data/test/data/vcr_cassettes/Clever_APIOperations_List/retrieves_all_district.yml +28 -16
- data/test/data/vcr_cassettes/Clever_APIOperations_List/retrieves_all_event.yml +28 -14
- data/test/data/vcr_cassettes/Clever_APIOperations_List/retrieves_all_school.yml +28 -18
- data/test/data/vcr_cassettes/Clever_APIOperations_List/retrieves_all_school_admin.yml +101 -0
- data/test/data/vcr_cassettes/Clever_APIOperations_List/retrieves_all_section.yml +34 -22
- data/test/data/vcr_cassettes/Clever_APIOperations_List/retrieves_all_student.yml +48 -36
- data/test/data/vcr_cassettes/Clever_APIOperations_List/retrieves_all_teacher.yml +30 -20
- data/test/data/vcr_cassettes/Clever_District_without_global_token/pages_methods/pages_a_district_s_events.yml +39 -19
- data/test/data/vcr_cassettes/Clever_District_without_global_token/pages_methods/pages_a_district_s_schools.yml +36 -22
- data/test/data/vcr_cassettes/Clever_District_without_global_token/pages_methods/pages_a_district_s_sections.yml +37 -19
- data/test/data/vcr_cassettes/Clever_District_without_global_token/pages_methods/pages_a_district_s_students.yml +37 -19
- data/test/data/vcr_cassettes/Clever_District_without_global_token/pages_methods/pages_a_district_s_teachers.yml +34 -20
- data/test/data/vcr_cassettes/Clever_District_without_global_token/retrieves_a_district_s_school_admins.yml +101 -0
- data/test/data/vcr_cassettes/Clever_District_without_global_token/retrieves_a_district_s_schools.yml +25 -15
- data/test/data/vcr_cassettes/Clever_District_without_global_token/retrieves_a_district_s_sections.yml +26 -14
- data/test/data/vcr_cassettes/Clever_District_without_global_token/retrieves_a_district_s_students.yml +26 -14
- data/test/data/vcr_cassettes/Clever_District_without_global_token/retrieves_a_district_s_teachers.yml +25 -15
- data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_district_s_events.yml +54 -30
- data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_district_s_schools.yml +50 -30
- data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_district_s_sections.yml +51 -27
- data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_district_s_students.yml +51 -27
- data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_district_s_teachers.yml +50 -30
- data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_school_admin_s_schools.yml +205 -0
- data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_school_s_district.yml +43 -27
- data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_school_s_events.yml +56 -30
- data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_school_s_sections.yml +58 -36
- data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_school_s_students.yml +69 -45
- data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_school_s_teachers.yml +52 -34
- data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_section_s_district.yml +42 -24
- data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_section_s_events.yml +58 -30
- data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_section_s_school.yml +41 -23
- data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_section_s_students.yml +45 -27
- data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_section_s_teacher.yml +41 -23
- data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_student_s_district.yml +42 -24
- data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_student_s_events.yml +58 -30
- data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_student_s_school.yml +41 -23
- data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_student_s_sections.yml +56 -32
- data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_student_s_teachers.yml +54 -30
- data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_teacher_s_district.yml +40 -24
- data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_teacher_s_events.yml +56 -30
- data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_teacher_s_school.yml +39 -23
- data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_teacher_s_sections.yml +54 -32
- data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_teacher_s_students.yml +54 -32
- data/test/data/vcr_cassettes/Error_handling/raises_an_InvalidRequestError_when_given_a_bad_created_since.yml +42 -24
- data/test/data/vcr_cassettes/Optional_attributes/has_the_expected_value_for_an_optional_attribute_that_is_present.yml +13 -7
- data/test/data/vcr_cassettes/last_method/page/has_working_first_and_last_methods.yml +142 -61
- data/test/integration/api_operations/list_test.rb +5 -3
- data/test/integration/district_with_non_global_token_test.rb +7 -0
- data/test/integration/last_test.rb +3 -2
- data/test/integration/nested_resource_test.rb +3 -2
- data/test/unit/api_resource_test.rb +29 -14
- data/test/unit/clever_test.rb +1 -0
- metadata +17 -16
@@ -8,7 +8,7 @@ http_interactions:
|
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
Accept:
|
11
|
-
-
|
11
|
+
- "*/*; q=0.5, application/xml"
|
12
12
|
Accept-Encoding:
|
13
13
|
- gzip, deflate
|
14
14
|
Authorization:
|
@@ -25,24 +25,30 @@ http_interactions:
|
|
25
25
|
Access-Control-Allow-Methods:
|
26
26
|
- GET,PATCH,POST,DELETE
|
27
27
|
Access-Control-Allow-Origin:
|
28
|
-
-
|
28
|
+
- "*"
|
29
29
|
Content-Type:
|
30
30
|
- application/json; charset=utf-8
|
31
31
|
Date:
|
32
|
-
- Sat,
|
32
|
+
- Sat, 26 Sep 2015 17:37:36 GMT
|
33
33
|
Etag:
|
34
|
-
-
|
35
|
-
Server:
|
36
|
-
- nginx/1.4.7
|
34
|
+
- '"-1672977800"'
|
37
35
|
X-Powered-By:
|
38
36
|
- Express
|
37
|
+
X-Ratelimit-Bucket:
|
38
|
+
- bearer
|
39
|
+
X-Ratelimit-Limit:
|
40
|
+
- '1200'
|
41
|
+
X-Ratelimit-Remaining:
|
42
|
+
- '1084'
|
43
|
+
X-Ratelimit-Reset:
|
44
|
+
- '1443289062'
|
39
45
|
Content-Length:
|
40
46
|
- '66289'
|
41
47
|
Connection:
|
42
48
|
- keep-alive
|
43
49
|
body:
|
44
|
-
encoding:
|
45
|
-
string:
|
50
|
+
encoding: UTF-8
|
51
|
+
string: '{"data":[{"data":{"created":"2014-02-26T21:15:12.346Z","credentials":{"district_username":"stevez33","district_password":"auyik3tiTieL"},"district":"4fd43cc56d11340000000005","dob":"2/11/2007","ell_status":"N","email":"z.steve@example.net","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.656Z","location":{"zip":"10459"},"name":{"first":"Steve","middle":"G","last":"Ziemann"},"race":"Black
|
46
52
|
or African American","school":"530e595026403103360ff9fe","sis_id":"100095233","state_id":"231786324","student_number":"100095233","id":"530e5960049e75a9262cff1d"},"uri":"/v1.1/students/530e5960049e75a9262cff1d"},{"data":{"created":"2014-02-26T21:15:12.358Z","credentials":{"district_username":"douglasw58","district_password":"ahFii2nae"},"district":"4fd43cc56d11340000000005","dob":"6/18/1998","ell_status":"Y","email":"w_douglas@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.661Z","location":{"zip":"11004"},"name":{"first":"Douglas","middle":"S","last":"Wisoky"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"101565758","state_id":"498006597","student_number":"101565758","id":"530e5960049e75a9262cff1e"},"uri":"/v1.1/students/530e5960049e75a9262cff1e"},{"data":{"created":"2014-02-26T21:15:12.368Z","credentials":{"district_username":"joel42","district_password":"CaaDie0eboo"},"district":"4fd43cc56d11340000000005","dob":"7/4/1997","ell_status":"Y","email":"l.joe@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.664Z","location":{"zip":"10473"},"name":{"first":"Joe","middle":"S","last":"Lakin"},"race":"Black
|
47
53
|
or African American","school":"530e595026403103360ff9fd","sis_id":"106078142","state_id":"635493722","student_number":"106078142","id":"530e5960049e75a9262cff1f"},"uri":"/v1.1/students/530e5960049e75a9262cff1f"},{"data":{"created":"2014-02-26T21:15:12.374Z","credentials":{"district_username":"evalynb40","district_password":"ooXahwook2"},"district":"4fd43cc56d11340000000005","dob":"8/10/2006","ell_status":"N","email":"b_evalyn@example.org","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.668Z","location":{"zip":"10029"},"name":{"first":"Evalyn","middle":"J","last":"Bradtke"},"race":"Black
|
48
54
|
or African American","school":"530e595026403103360ff9fe","sis_id":"106091540","state_id":"552729322","student_number":"106091540","id":"530e5960049e75a9262cff20"},"uri":"/v1.1/students/530e5960049e75a9262cff20"},{"data":{"created":"2014-02-26T21:15:12.382Z","credentials":{"district_username":"coryt00","district_password":"ahW1taesao5"},"district":"4fd43cc56d11340000000005","dob":"7/21/1997","ell_status":"Y","email":"cory_t@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.673Z","location":{"zip":"10038"},"name":{"first":"Cory","middle":"V","last":"Thompson"},"race":"Black
|
@@ -124,7 +130,7 @@ http_interactions:
|
|
124
130
|
string: ''
|
125
131
|
headers:
|
126
132
|
Accept:
|
127
|
-
-
|
133
|
+
- "*/*; q=0.5, application/xml"
|
128
134
|
Accept-Encoding:
|
129
135
|
- gzip, deflate
|
130
136
|
Authorization:
|
@@ -141,24 +147,30 @@ http_interactions:
|
|
141
147
|
Access-Control-Allow-Methods:
|
142
148
|
- GET,PATCH,POST,DELETE
|
143
149
|
Access-Control-Allow-Origin:
|
144
|
-
-
|
150
|
+
- "*"
|
145
151
|
Content-Type:
|
146
152
|
- application/json; charset=utf-8
|
147
153
|
Date:
|
148
|
-
- Sat,
|
154
|
+
- Sat, 26 Sep 2015 17:37:37 GMT
|
149
155
|
Etag:
|
150
|
-
-
|
151
|
-
Server:
|
152
|
-
- nginx/1.4.7
|
156
|
+
- '"558167227"'
|
153
157
|
X-Powered-By:
|
154
158
|
- Express
|
159
|
+
X-Ratelimit-Bucket:
|
160
|
+
- bearer
|
161
|
+
X-Ratelimit-Limit:
|
162
|
+
- '1200'
|
163
|
+
X-Ratelimit-Remaining:
|
164
|
+
- '1083'
|
165
|
+
X-Ratelimit-Reset:
|
166
|
+
- '1443289062'
|
155
167
|
Content-Length:
|
156
168
|
- '1151'
|
157
169
|
Connection:
|
158
170
|
- keep-alive
|
159
171
|
body:
|
160
|
-
encoding:
|
161
|
-
string:
|
172
|
+
encoding: UTF-8
|
173
|
+
string: '{"data":{"created":"2014-02-26T21:15:12.346Z","credentials":{"district_username":"stevez33","district_password":"auyik3tiTieL"},"district":"4fd43cc56d11340000000005","dob":"2/11/2007","ell_status":"N","email":"z.steve@example.net","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.656Z","location":{"zip":"10459"},"name":{"first":"Steve","middle":"G","last":"Ziemann"},"race":"Black
|
162
174
|
or African American","school":"530e595026403103360ff9fe","sis_id":"100095233","state_id":"231786324","student_number":"100095233","id":"530e5960049e75a9262cff1d"},"links":[{"rel":"self","uri":"/v1.1/students/530e5960049e75a9262cff1d"},{"rel":"district","uri":"/v1.1/students/530e5960049e75a9262cff1d/district"},{"rel":"sections","uri":"/v1.1/students/530e5960049e75a9262cff1d/sections"},{"rel":"school","uri":"/v1.1/students/530e5960049e75a9262cff1d/school"},{"rel":"teachers","uri":"/v1.1/students/530e5960049e75a9262cff1d/teachers"},{"rel":"contacts","uri":"/v1.1/students/530e5960049e75a9262cff1d/contacts"},{"rel":"events","uri":"/v1.1/students/530e5960049e75a9262cff1d/events"}]}'
|
163
175
|
http_version:
|
164
176
|
recorded_at: Sat, 13 Sep 2014 00:07:50 GMT
|
@@ -170,7 +182,7 @@ http_interactions:
|
|
170
182
|
string: ''
|
171
183
|
headers:
|
172
184
|
Accept:
|
173
|
-
-
|
185
|
+
- "*/*; q=0.5, application/xml"
|
174
186
|
Accept-Encoding:
|
175
187
|
- gzip, deflate
|
176
188
|
Authorization:
|
@@ -187,22 +199,30 @@ http_interactions:
|
|
187
199
|
Access-Control-Allow-Methods:
|
188
200
|
- GET,PATCH,POST,DELETE
|
189
201
|
Access-Control-Allow-Origin:
|
190
|
-
-
|
202
|
+
- "*"
|
191
203
|
Content-Type:
|
192
204
|
- application/json; charset=utf-8
|
193
205
|
Date:
|
194
|
-
- Sat,
|
195
|
-
|
196
|
-
-
|
206
|
+
- Sat, 26 Sep 2015 17:37:37 GMT
|
207
|
+
Etag:
|
208
|
+
- '"798229665"'
|
197
209
|
X-Powered-By:
|
198
210
|
- Express
|
211
|
+
X-Ratelimit-Bucket:
|
212
|
+
- bearer
|
213
|
+
X-Ratelimit-Limit:
|
214
|
+
- '1200'
|
215
|
+
X-Ratelimit-Remaining:
|
216
|
+
- '1082'
|
217
|
+
X-Ratelimit-Reset:
|
218
|
+
- '1443289062'
|
199
219
|
Content-Length:
|
200
220
|
- '134'
|
201
221
|
Connection:
|
202
222
|
- keep-alive
|
203
223
|
body:
|
204
|
-
encoding:
|
205
|
-
string:
|
224
|
+
encoding: UTF-8
|
225
|
+
string: '{"data":[],"paging":{"current":0,"total":0,"count":0},"links":[{"rel":"self","uri":"/v1.1/students/530e5960049e75a9262cff1d/events"}]}'
|
206
226
|
http_version:
|
207
227
|
recorded_at: Sat, 13 Sep 2014 00:07:50 GMT
|
208
228
|
- request:
|
@@ -213,7 +233,7 @@ http_interactions:
|
|
213
233
|
string: ''
|
214
234
|
headers:
|
215
235
|
Accept:
|
216
|
-
-
|
236
|
+
- "*/*; q=0.5, application/xml"
|
217
237
|
Accept-Encoding:
|
218
238
|
- gzip, deflate
|
219
239
|
Authorization:
|
@@ -230,22 +250,30 @@ http_interactions:
|
|
230
250
|
Access-Control-Allow-Methods:
|
231
251
|
- GET,PATCH,POST,DELETE
|
232
252
|
Access-Control-Allow-Origin:
|
233
|
-
-
|
253
|
+
- "*"
|
234
254
|
Content-Type:
|
235
255
|
- application/json; charset=utf-8
|
236
256
|
Date:
|
237
|
-
- Sat,
|
238
|
-
|
239
|
-
-
|
257
|
+
- Sat, 26 Sep 2015 17:37:38 GMT
|
258
|
+
Etag:
|
259
|
+
- '"798229665"'
|
240
260
|
X-Powered-By:
|
241
261
|
- Express
|
262
|
+
X-Ratelimit-Bucket:
|
263
|
+
- bearer
|
264
|
+
X-Ratelimit-Limit:
|
265
|
+
- '1200'
|
266
|
+
X-Ratelimit-Remaining:
|
267
|
+
- '1081'
|
268
|
+
X-Ratelimit-Reset:
|
269
|
+
- '1443289062'
|
242
270
|
Content-Length:
|
243
271
|
- '134'
|
244
272
|
Connection:
|
245
273
|
- keep-alive
|
246
274
|
body:
|
247
|
-
encoding:
|
248
|
-
string:
|
275
|
+
encoding: UTF-8
|
276
|
+
string: '{"data":[],"paging":{"current":0,"total":0,"count":0},"links":[{"rel":"self","uri":"/v1.1/students/530e5960049e75a9262cff1d/events"}]}'
|
249
277
|
http_version:
|
250
278
|
recorded_at: Sat, 13 Sep 2014 00:07:50 GMT
|
251
279
|
recorded_with: VCR 2.9.3
|
@@ -8,7 +8,7 @@ http_interactions:
|
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
Accept:
|
11
|
-
-
|
11
|
+
- "*/*; q=0.5, application/xml"
|
12
12
|
Accept-Encoding:
|
13
13
|
- gzip, deflate
|
14
14
|
Authorization:
|
@@ -25,24 +25,30 @@ http_interactions:
|
|
25
25
|
Access-Control-Allow-Methods:
|
26
26
|
- GET,PATCH,POST,DELETE
|
27
27
|
Access-Control-Allow-Origin:
|
28
|
-
-
|
28
|
+
- "*"
|
29
29
|
Content-Type:
|
30
30
|
- application/json; charset=utf-8
|
31
31
|
Date:
|
32
|
-
- Sat,
|
32
|
+
- Sat, 26 Sep 2015 17:37:19 GMT
|
33
33
|
Etag:
|
34
|
-
-
|
35
|
-
Server:
|
36
|
-
- nginx/1.4.7
|
34
|
+
- '"-1672977800"'
|
37
35
|
X-Powered-By:
|
38
36
|
- Express
|
37
|
+
X-Ratelimit-Bucket:
|
38
|
+
- bearer
|
39
|
+
X-Ratelimit-Limit:
|
40
|
+
- '1200'
|
41
|
+
X-Ratelimit-Remaining:
|
42
|
+
- '1130'
|
43
|
+
X-Ratelimit-Reset:
|
44
|
+
- '1443289062'
|
39
45
|
Content-Length:
|
40
46
|
- '66289'
|
41
47
|
Connection:
|
42
48
|
- keep-alive
|
43
49
|
body:
|
44
|
-
encoding:
|
45
|
-
string:
|
50
|
+
encoding: UTF-8
|
51
|
+
string: '{"data":[{"data":{"created":"2014-02-26T21:15:12.346Z","credentials":{"district_username":"stevez33","district_password":"auyik3tiTieL"},"district":"4fd43cc56d11340000000005","dob":"2/11/2007","ell_status":"N","email":"z.steve@example.net","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.656Z","location":{"zip":"10459"},"name":{"first":"Steve","middle":"G","last":"Ziemann"},"race":"Black
|
46
52
|
or African American","school":"530e595026403103360ff9fe","sis_id":"100095233","state_id":"231786324","student_number":"100095233","id":"530e5960049e75a9262cff1d"},"uri":"/v1.1/students/530e5960049e75a9262cff1d"},{"data":{"created":"2014-02-26T21:15:12.358Z","credentials":{"district_username":"douglasw58","district_password":"ahFii2nae"},"district":"4fd43cc56d11340000000005","dob":"6/18/1998","ell_status":"Y","email":"w_douglas@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.661Z","location":{"zip":"11004"},"name":{"first":"Douglas","middle":"S","last":"Wisoky"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"101565758","state_id":"498006597","student_number":"101565758","id":"530e5960049e75a9262cff1e"},"uri":"/v1.1/students/530e5960049e75a9262cff1e"},{"data":{"created":"2014-02-26T21:15:12.368Z","credentials":{"district_username":"joel42","district_password":"CaaDie0eboo"},"district":"4fd43cc56d11340000000005","dob":"7/4/1997","ell_status":"Y","email":"l.joe@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.664Z","location":{"zip":"10473"},"name":{"first":"Joe","middle":"S","last":"Lakin"},"race":"Black
|
47
53
|
or African American","school":"530e595026403103360ff9fd","sis_id":"106078142","state_id":"635493722","student_number":"106078142","id":"530e5960049e75a9262cff1f"},"uri":"/v1.1/students/530e5960049e75a9262cff1f"},{"data":{"created":"2014-02-26T21:15:12.374Z","credentials":{"district_username":"evalynb40","district_password":"ooXahwook2"},"district":"4fd43cc56d11340000000005","dob":"8/10/2006","ell_status":"N","email":"b_evalyn@example.org","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.668Z","location":{"zip":"10029"},"name":{"first":"Evalyn","middle":"J","last":"Bradtke"},"race":"Black
|
48
54
|
or African American","school":"530e595026403103360ff9fe","sis_id":"106091540","state_id":"552729322","student_number":"106091540","id":"530e5960049e75a9262cff20"},"uri":"/v1.1/students/530e5960049e75a9262cff20"},{"data":{"created":"2014-02-26T21:15:12.382Z","credentials":{"district_username":"coryt00","district_password":"ahW1taesao5"},"district":"4fd43cc56d11340000000005","dob":"7/21/1997","ell_status":"Y","email":"cory_t@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.673Z","location":{"zip":"10038"},"name":{"first":"Cory","middle":"V","last":"Thompson"},"race":"Black
|
@@ -124,7 +130,7 @@ http_interactions:
|
|
124
130
|
string: ''
|
125
131
|
headers:
|
126
132
|
Accept:
|
127
|
-
-
|
133
|
+
- "*/*; q=0.5, application/xml"
|
128
134
|
Accept-Encoding:
|
129
135
|
- gzip, deflate
|
130
136
|
Authorization:
|
@@ -141,24 +147,30 @@ http_interactions:
|
|
141
147
|
Access-Control-Allow-Methods:
|
142
148
|
- GET,PATCH,POST,DELETE
|
143
149
|
Access-Control-Allow-Origin:
|
144
|
-
-
|
150
|
+
- "*"
|
145
151
|
Content-Type:
|
146
152
|
- application/json; charset=utf-8
|
147
153
|
Date:
|
148
|
-
- Sat,
|
154
|
+
- Sat, 26 Sep 2015 17:37:19 GMT
|
149
155
|
Etag:
|
150
|
-
-
|
151
|
-
Server:
|
152
|
-
- nginx/1.4.7
|
156
|
+
- '"558167227"'
|
153
157
|
X-Powered-By:
|
154
158
|
- Express
|
159
|
+
X-Ratelimit-Bucket:
|
160
|
+
- bearer
|
161
|
+
X-Ratelimit-Limit:
|
162
|
+
- '1200'
|
163
|
+
X-Ratelimit-Remaining:
|
164
|
+
- '1129'
|
165
|
+
X-Ratelimit-Reset:
|
166
|
+
- '1443289062'
|
155
167
|
Content-Length:
|
156
168
|
- '1151'
|
157
169
|
Connection:
|
158
170
|
- keep-alive
|
159
171
|
body:
|
160
|
-
encoding:
|
161
|
-
string:
|
172
|
+
encoding: UTF-8
|
173
|
+
string: '{"data":{"created":"2014-02-26T21:15:12.346Z","credentials":{"district_username":"stevez33","district_password":"auyik3tiTieL"},"district":"4fd43cc56d11340000000005","dob":"2/11/2007","ell_status":"N","email":"z.steve@example.net","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.656Z","location":{"zip":"10459"},"name":{"first":"Steve","middle":"G","last":"Ziemann"},"race":"Black
|
162
174
|
or African American","school":"530e595026403103360ff9fe","sis_id":"100095233","state_id":"231786324","student_number":"100095233","id":"530e5960049e75a9262cff1d"},"links":[{"rel":"self","uri":"/v1.1/students/530e5960049e75a9262cff1d"},{"rel":"district","uri":"/v1.1/students/530e5960049e75a9262cff1d/district"},{"rel":"sections","uri":"/v1.1/students/530e5960049e75a9262cff1d/sections"},{"rel":"school","uri":"/v1.1/students/530e5960049e75a9262cff1d/school"},{"rel":"teachers","uri":"/v1.1/students/530e5960049e75a9262cff1d/teachers"},{"rel":"contacts","uri":"/v1.1/students/530e5960049e75a9262cff1d/contacts"},{"rel":"events","uri":"/v1.1/students/530e5960049e75a9262cff1d/events"}]}'
|
163
175
|
http_version:
|
164
176
|
recorded_at: Sat, 13 Sep 2014 00:07:44 GMT
|
@@ -170,7 +182,7 @@ http_interactions:
|
|
170
182
|
string: ''
|
171
183
|
headers:
|
172
184
|
Accept:
|
173
|
-
-
|
185
|
+
- "*/*; q=0.5, application/xml"
|
174
186
|
Accept-Encoding:
|
175
187
|
- gzip, deflate
|
176
188
|
Authorization:
|
@@ -187,22 +199,28 @@ http_interactions:
|
|
187
199
|
Access-Control-Allow-Methods:
|
188
200
|
- GET,PATCH,POST,DELETE
|
189
201
|
Access-Control-Allow-Origin:
|
190
|
-
-
|
202
|
+
- "*"
|
191
203
|
Content-Type:
|
192
204
|
- application/json; charset=utf-8
|
193
205
|
Date:
|
194
|
-
- Sat,
|
195
|
-
Server:
|
196
|
-
- nginx/1.4.7
|
206
|
+
- Sat, 26 Sep 2015 17:37:20 GMT
|
197
207
|
X-Powered-By:
|
198
208
|
- Express
|
209
|
+
X-Ratelimit-Bucket:
|
210
|
+
- bearer
|
211
|
+
X-Ratelimit-Limit:
|
212
|
+
- '1200'
|
213
|
+
X-Ratelimit-Remaining:
|
214
|
+
- '1128'
|
215
|
+
X-Ratelimit-Reset:
|
216
|
+
- '1443289062'
|
199
217
|
Content-Length:
|
200
218
|
- '587'
|
201
219
|
Connection:
|
202
220
|
- keep-alive
|
203
221
|
body:
|
204
|
-
encoding:
|
205
|
-
string:
|
222
|
+
encoding: UTF-8
|
223
|
+
string: '{"data":{"created":"2014-02-26T21:14:56.668Z","district":"4fd43cc56d11340000000005","high_grade":"5","last_modified":"2014-02-26T21:14:56.670Z","location":{"address":"110
|
206
224
|
Pineapple Street","city":"Brooklyn","state":"NY","zip":"11201"},"low_grade":"Kindergarten","name":"Clever
|
207
225
|
Elementary School","nces_id":"360007000000","phone":"(718) 555-4567","principal":{"name":"Cecilia
|
208
226
|
Roderick","email":"ceciliar@mailinator.com"},"school_number":"13K123","sis_id":"13K123","state_id":"30890","id":"530e595026403103360ff9fe"},"links":[{"rel":"self","uri":"/v1.1/schools/530e595026403103360ff9fe"}]}'
|
@@ -8,7 +8,7 @@ http_interactions:
|
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
Accept:
|
11
|
-
-
|
11
|
+
- "*/*; q=0.5, application/xml"
|
12
12
|
Accept-Encoding:
|
13
13
|
- gzip, deflate
|
14
14
|
Authorization:
|
@@ -25,24 +25,30 @@ http_interactions:
|
|
25
25
|
Access-Control-Allow-Methods:
|
26
26
|
- GET,PATCH,POST,DELETE
|
27
27
|
Access-Control-Allow-Origin:
|
28
|
-
-
|
28
|
+
- "*"
|
29
29
|
Content-Type:
|
30
30
|
- application/json; charset=utf-8
|
31
31
|
Date:
|
32
|
-
- Sat,
|
32
|
+
- Sat, 26 Sep 2015 17:37:41 GMT
|
33
33
|
Etag:
|
34
|
-
-
|
35
|
-
Server:
|
36
|
-
- nginx/1.4.7
|
34
|
+
- '"-1672977800"'
|
37
35
|
X-Powered-By:
|
38
36
|
- Express
|
37
|
+
X-Ratelimit-Bucket:
|
38
|
+
- bearer
|
39
|
+
X-Ratelimit-Limit:
|
40
|
+
- '1200'
|
41
|
+
X-Ratelimit-Remaining:
|
42
|
+
- '1072'
|
43
|
+
X-Ratelimit-Reset:
|
44
|
+
- '1443289062'
|
39
45
|
Content-Length:
|
40
46
|
- '66289'
|
41
47
|
Connection:
|
42
48
|
- keep-alive
|
43
49
|
body:
|
44
|
-
encoding:
|
45
|
-
string:
|
50
|
+
encoding: UTF-8
|
51
|
+
string: '{"data":[{"data":{"created":"2014-02-26T21:15:12.346Z","credentials":{"district_username":"stevez33","district_password":"auyik3tiTieL"},"district":"4fd43cc56d11340000000005","dob":"2/11/2007","ell_status":"N","email":"z.steve@example.net","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.656Z","location":{"zip":"10459"},"name":{"first":"Steve","middle":"G","last":"Ziemann"},"race":"Black
|
46
52
|
or African American","school":"530e595026403103360ff9fe","sis_id":"100095233","state_id":"231786324","student_number":"100095233","id":"530e5960049e75a9262cff1d"},"uri":"/v1.1/students/530e5960049e75a9262cff1d"},{"data":{"created":"2014-02-26T21:15:12.358Z","credentials":{"district_username":"douglasw58","district_password":"ahFii2nae"},"district":"4fd43cc56d11340000000005","dob":"6/18/1998","ell_status":"Y","email":"w_douglas@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.661Z","location":{"zip":"11004"},"name":{"first":"Douglas","middle":"S","last":"Wisoky"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"101565758","state_id":"498006597","student_number":"101565758","id":"530e5960049e75a9262cff1e"},"uri":"/v1.1/students/530e5960049e75a9262cff1e"},{"data":{"created":"2014-02-26T21:15:12.368Z","credentials":{"district_username":"joel42","district_password":"CaaDie0eboo"},"district":"4fd43cc56d11340000000005","dob":"7/4/1997","ell_status":"Y","email":"l.joe@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.664Z","location":{"zip":"10473"},"name":{"first":"Joe","middle":"S","last":"Lakin"},"race":"Black
|
47
53
|
or African American","school":"530e595026403103360ff9fd","sis_id":"106078142","state_id":"635493722","student_number":"106078142","id":"530e5960049e75a9262cff1f"},"uri":"/v1.1/students/530e5960049e75a9262cff1f"},{"data":{"created":"2014-02-26T21:15:12.374Z","credentials":{"district_username":"evalynb40","district_password":"ooXahwook2"},"district":"4fd43cc56d11340000000005","dob":"8/10/2006","ell_status":"N","email":"b_evalyn@example.org","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.668Z","location":{"zip":"10029"},"name":{"first":"Evalyn","middle":"J","last":"Bradtke"},"race":"Black
|
48
54
|
or African American","school":"530e595026403103360ff9fe","sis_id":"106091540","state_id":"552729322","student_number":"106091540","id":"530e5960049e75a9262cff20"},"uri":"/v1.1/students/530e5960049e75a9262cff20"},{"data":{"created":"2014-02-26T21:15:12.382Z","credentials":{"district_username":"coryt00","district_password":"ahW1taesao5"},"district":"4fd43cc56d11340000000005","dob":"7/21/1997","ell_status":"Y","email":"cory_t@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.673Z","location":{"zip":"10038"},"name":{"first":"Cory","middle":"V","last":"Thompson"},"race":"Black
|
@@ -124,7 +130,7 @@ http_interactions:
|
|
124
130
|
string: ''
|
125
131
|
headers:
|
126
132
|
Accept:
|
127
|
-
-
|
133
|
+
- "*/*; q=0.5, application/xml"
|
128
134
|
Accept-Encoding:
|
129
135
|
- gzip, deflate
|
130
136
|
Authorization:
|
@@ -141,24 +147,30 @@ http_interactions:
|
|
141
147
|
Access-Control-Allow-Methods:
|
142
148
|
- GET,PATCH,POST,DELETE
|
143
149
|
Access-Control-Allow-Origin:
|
144
|
-
-
|
150
|
+
- "*"
|
145
151
|
Content-Type:
|
146
152
|
- application/json; charset=utf-8
|
147
153
|
Date:
|
148
|
-
- Sat,
|
154
|
+
- Sat, 26 Sep 2015 17:37:41 GMT
|
149
155
|
Etag:
|
150
|
-
-
|
151
|
-
Server:
|
152
|
-
- nginx/1.4.7
|
156
|
+
- '"558167227"'
|
153
157
|
X-Powered-By:
|
154
158
|
- Express
|
159
|
+
X-Ratelimit-Bucket:
|
160
|
+
- bearer
|
161
|
+
X-Ratelimit-Limit:
|
162
|
+
- '1200'
|
163
|
+
X-Ratelimit-Remaining:
|
164
|
+
- '1071'
|
165
|
+
X-Ratelimit-Reset:
|
166
|
+
- '1443289062'
|
155
167
|
Content-Length:
|
156
168
|
- '1151'
|
157
169
|
Connection:
|
158
170
|
- keep-alive
|
159
171
|
body:
|
160
|
-
encoding:
|
161
|
-
string:
|
172
|
+
encoding: UTF-8
|
173
|
+
string: '{"data":{"created":"2014-02-26T21:15:12.346Z","credentials":{"district_username":"stevez33","district_password":"auyik3tiTieL"},"district":"4fd43cc56d11340000000005","dob":"2/11/2007","ell_status":"N","email":"z.steve@example.net","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.656Z","location":{"zip":"10459"},"name":{"first":"Steve","middle":"G","last":"Ziemann"},"race":"Black
|
162
174
|
or African American","school":"530e595026403103360ff9fe","sis_id":"100095233","state_id":"231786324","student_number":"100095233","id":"530e5960049e75a9262cff1d"},"links":[{"rel":"self","uri":"/v1.1/students/530e5960049e75a9262cff1d"},{"rel":"district","uri":"/v1.1/students/530e5960049e75a9262cff1d/district"},{"rel":"sections","uri":"/v1.1/students/530e5960049e75a9262cff1d/sections"},{"rel":"school","uri":"/v1.1/students/530e5960049e75a9262cff1d/school"},{"rel":"teachers","uri":"/v1.1/students/530e5960049e75a9262cff1d/teachers"},{"rel":"contacts","uri":"/v1.1/students/530e5960049e75a9262cff1d/contacts"},{"rel":"events","uri":"/v1.1/students/530e5960049e75a9262cff1d/events"}]}'
|
163
175
|
http_version:
|
164
176
|
recorded_at: Sat, 13 Sep 2014 00:07:36 GMT
|
@@ -170,7 +182,7 @@ http_interactions:
|
|
170
182
|
string: ''
|
171
183
|
headers:
|
172
184
|
Accept:
|
173
|
-
-
|
185
|
+
- "*/*; q=0.5, application/xml"
|
174
186
|
Accept-Encoding:
|
175
187
|
- gzip, deflate
|
176
188
|
Authorization:
|
@@ -187,24 +199,30 @@ http_interactions:
|
|
187
199
|
Access-Control-Allow-Methods:
|
188
200
|
- GET,PATCH,POST,DELETE
|
189
201
|
Access-Control-Allow-Origin:
|
190
|
-
-
|
202
|
+
- "*"
|
191
203
|
Content-Type:
|
192
204
|
- application/json; charset=utf-8
|
193
205
|
Date:
|
194
|
-
- Sat,
|
206
|
+
- Sat, 26 Sep 2015 17:37:42 GMT
|
195
207
|
Etag:
|
196
|
-
-
|
197
|
-
Server:
|
198
|
-
- nginx/1.4.7
|
208
|
+
- '"-1046366735"'
|
199
209
|
X-Powered-By:
|
200
210
|
- Express
|
211
|
+
X-Ratelimit-Bucket:
|
212
|
+
- bearer
|
213
|
+
X-Ratelimit-Limit:
|
214
|
+
- '1200'
|
215
|
+
X-Ratelimit-Remaining:
|
216
|
+
- '1070'
|
217
|
+
X-Ratelimit-Reset:
|
218
|
+
- '1443289062'
|
201
219
|
Content-Length:
|
202
220
|
- '5801'
|
203
221
|
Connection:
|
204
222
|
- keep-alive
|
205
223
|
body:
|
206
|
-
encoding:
|
207
|
-
string:
|
224
|
+
encoding: UTF-8
|
225
|
+
string: '{"data":[{"data":{"course_name":"Class 002, Homeroom","course_number":"2","created":"2014-02-26T21:15:38.469Z","district":"4fd43cc56d11340000000005","grade":"Kindergarten","last_modified":"2014-02-26T21:15:38.472Z","name":"Class
|
208
226
|
002, Homeroom - 002 - S. Schoen (Section 2)","period":"0","school":"530e595026403103360ff9fe","sis_id":"709","students":["530e5960049e75a9262cff1d","530e5960049e75a9262cff55","530e5961049e75a9262cffc2","530e5961049e75a9262d0012","530e5962049e75a9262d00c0","530e5962049e75a9262d010d","530e5962049e75a9262d0136","530e5962049e75a9262d0151","530e5962049e75a9262d0162","530e5963049e75a9262d01bb","530e5963049e75a9262d01f0","530e5964049e75a9262d0295","530e5964049e75a9262d02a7","530e5964049e75a9262d02d8","530e5965049e75a9262d0320","530e5965049e75a9262d03b9","530e5966049e75a9262d0491","530e5966049e75a9262d04c4","530e5967049e75a9262d0520","530e5968049e75a9262d0615"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c03","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b71"},"uri":"/v1.1/sections/530e597a049e75a9262d0b71"},{"data":{"course_name":"Kindergarten
|
209
227
|
Math, Class 002","course_number":"2","created":"2014-02-26T21:15:38.640Z","district":"4fd43cc56d11340000000005","grade":"Kindergarten","last_modified":"2014-02-26T21:15:38.642Z","name":"Kindergarten
|
210
228
|
Math, Class 002 - 002 - S. Schoen","period":"1","school":"530e595026403103360ff9fe","sis_id":"748","students":["530e5960049e75a9262cff1d","530e5960049e75a9262cff55","530e5961049e75a9262cffc2","530e5961049e75a9262d0012","530e5962049e75a9262d00c0","530e5962049e75a9262d010d","530e5962049e75a9262d0136","530e5962049e75a9262d0151","530e5962049e75a9262d0162","530e5963049e75a9262d01bb","530e5963049e75a9262d01f0","530e5964049e75a9262d0295","530e5964049e75a9262d02a7","530e5964049e75a9262d02d8","530e5965049e75a9262d0320","530e5965049e75a9262d03b9","530e5966049e75a9262d0491","530e5966049e75a9262d04c4","530e5967049e75a9262d0520","530e5968049e75a9262d0615"],"subject":"math","teacher":"530e5955d50c310f36112c03","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b98"},"uri":"/v1.1/sections/530e597a049e75a9262d0b98"},{"data":{"course_name":"Kindergarten
|
@@ -226,7 +244,7 @@ http_interactions:
|
|
226
244
|
string: ''
|
227
245
|
headers:
|
228
246
|
Accept:
|
229
|
-
-
|
247
|
+
- "*/*; q=0.5, application/xml"
|
230
248
|
Accept-Encoding:
|
231
249
|
- gzip, deflate
|
232
250
|
Authorization:
|
@@ -243,24 +261,30 @@ http_interactions:
|
|
243
261
|
Access-Control-Allow-Methods:
|
244
262
|
- GET,PATCH,POST,DELETE
|
245
263
|
Access-Control-Allow-Origin:
|
246
|
-
-
|
264
|
+
- "*"
|
247
265
|
Content-Type:
|
248
266
|
- application/json; charset=utf-8
|
249
267
|
Date:
|
250
|
-
- Sat,
|
268
|
+
- Sat, 26 Sep 2015 17:37:42 GMT
|
251
269
|
Etag:
|
252
|
-
-
|
253
|
-
Server:
|
254
|
-
- nginx/1.4.7
|
270
|
+
- '"-1046366735"'
|
255
271
|
X-Powered-By:
|
256
272
|
- Express
|
273
|
+
X-Ratelimit-Bucket:
|
274
|
+
- bearer
|
275
|
+
X-Ratelimit-Limit:
|
276
|
+
- '1200'
|
277
|
+
X-Ratelimit-Remaining:
|
278
|
+
- '1199'
|
279
|
+
X-Ratelimit-Reset:
|
280
|
+
- '1443289122'
|
257
281
|
Content-Length:
|
258
282
|
- '5801'
|
259
283
|
Connection:
|
260
284
|
- keep-alive
|
261
285
|
body:
|
262
|
-
encoding:
|
263
|
-
string:
|
286
|
+
encoding: UTF-8
|
287
|
+
string: '{"data":[{"data":{"course_name":"Class 002, Homeroom","course_number":"2","created":"2014-02-26T21:15:38.469Z","district":"4fd43cc56d11340000000005","grade":"Kindergarten","last_modified":"2014-02-26T21:15:38.472Z","name":"Class
|
264
288
|
002, Homeroom - 002 - S. Schoen (Section 2)","period":"0","school":"530e595026403103360ff9fe","sis_id":"709","students":["530e5960049e75a9262cff1d","530e5960049e75a9262cff55","530e5961049e75a9262cffc2","530e5961049e75a9262d0012","530e5962049e75a9262d00c0","530e5962049e75a9262d010d","530e5962049e75a9262d0136","530e5962049e75a9262d0151","530e5962049e75a9262d0162","530e5963049e75a9262d01bb","530e5963049e75a9262d01f0","530e5964049e75a9262d0295","530e5964049e75a9262d02a7","530e5964049e75a9262d02d8","530e5965049e75a9262d0320","530e5965049e75a9262d03b9","530e5966049e75a9262d0491","530e5966049e75a9262d04c4","530e5967049e75a9262d0520","530e5968049e75a9262d0615"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c03","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b71"},"uri":"/v1.1/sections/530e597a049e75a9262d0b71"},{"data":{"course_name":"Kindergarten
|
265
289
|
Math, Class 002","course_number":"2","created":"2014-02-26T21:15:38.640Z","district":"4fd43cc56d11340000000005","grade":"Kindergarten","last_modified":"2014-02-26T21:15:38.642Z","name":"Kindergarten
|
266
290
|
Math, Class 002 - 002 - S. Schoen","period":"1","school":"530e595026403103360ff9fe","sis_id":"748","students":["530e5960049e75a9262cff1d","530e5960049e75a9262cff55","530e5961049e75a9262cffc2","530e5961049e75a9262d0012","530e5962049e75a9262d00c0","530e5962049e75a9262d010d","530e5962049e75a9262d0136","530e5962049e75a9262d0151","530e5962049e75a9262d0162","530e5963049e75a9262d01bb","530e5963049e75a9262d01f0","530e5964049e75a9262d0295","530e5964049e75a9262d02a7","530e5964049e75a9262d02d8","530e5965049e75a9262d0320","530e5965049e75a9262d03b9","530e5966049e75a9262d0491","530e5966049e75a9262d04c4","530e5967049e75a9262d0520","530e5968049e75a9262d0615"],"subject":"math","teacher":"530e5955d50c310f36112c03","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b98"},"uri":"/v1.1/sections/530e597a049e75a9262d0b98"},{"data":{"course_name":"Kindergarten
|