clever-ruby 0.5.0 → 0.6.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.
Files changed (54) hide show
  1. checksums.yaml +13 -5
  2. data/CHANGELOG.md +4 -0
  3. data/README.md +1 -1
  4. data/lib/clever-ruby.rb +1 -0
  5. data/lib/clever-ruby/api_operations/list.rb +24 -0
  6. data/lib/clever-ruby/api_operations/pagelist.rb +6 -2
  7. data/lib/clever-ruby/api_operations/results_list.rb +20 -0
  8. data/lib/clever-ruby/util.rb +4 -0
  9. data/lib/clever-ruby/version.rb +1 -1
  10. data/test/data/vcr_cassettes/district_count.yml +44 -0
  11. data/test/data/vcr_cassettes/district_find_by_page.yml +85 -0
  12. data/test/data/vcr_cassettes/district_find_multiple.yml +85 -0
  13. data/test/data/vcr_cassettes/district_find_one.yml +85 -0
  14. data/test/data/vcr_cassettes/districts.yml +46 -5
  15. data/test/data/vcr_cassettes/districts_event_pages.yml +134 -134
  16. data/test/data/vcr_cassettes/districts_events.yml +44 -44
  17. data/test/data/vcr_cassettes/districts_school_pages.yml +50 -50
  18. data/test/data/vcr_cassettes/districts_schools.yml +44 -44
  19. data/test/data/vcr_cassettes/districts_section_pages.yml +303 -303
  20. data/test/data/vcr_cassettes/districts_sections.yml +44 -44
  21. data/test/data/vcr_cassettes/districts_student_pages.yml +184 -184
  22. data/test/data/vcr_cassettes/districts_students.yml +44 -44
  23. data/test/data/vcr_cassettes/districts_students_filtered.yml +25 -25
  24. data/test/data/vcr_cassettes/districts_teacher_pages.yml +100 -100
  25. data/test/data/vcr_cassettes/districts_teachers.yml +44 -44
  26. data/test/data/vcr_cassettes/error_handling.yml +24 -24
  27. data/test/data/vcr_cassettes/event_count.yml +44 -0
  28. data/test/data/vcr_cassettes/event_find_by_page.yml +110 -0
  29. data/test/data/vcr_cassettes/event_find_multiple.yml +124 -0
  30. data/test/data/vcr_cassettes/event_find_one.yml +114 -0
  31. data/test/data/vcr_cassettes/events.yml +110 -0
  32. data/test/data/vcr_cassettes/school_count.yml +44 -0
  33. data/test/data/vcr_cassettes/school_find_by_page.yml +96 -0
  34. data/test/data/vcr_cassettes/school_find_multiple.yml +104 -0
  35. data/test/data/vcr_cassettes/school_find_one.yml +99 -0
  36. data/test/data/vcr_cassettes/schools.yml +48 -7
  37. data/test/data/vcr_cassettes/schools_optional_attributes.yml +7 -7
  38. data/test/data/vcr_cassettes/section_count.yml +44 -0
  39. data/test/data/vcr_cassettes/section_find_by_page.yml +1146 -0
  40. data/test/data/vcr_cassettes/section_find_multiple.yml +147 -0
  41. data/test/data/vcr_cassettes/section_find_one.yml +352 -0
  42. data/test/data/vcr_cassettes/sections.yml +69 -28
  43. data/test/data/vcr_cassettes/student_count.yml +44 -0
  44. data/test/data/vcr_cassettes/student_find_by_page.yml +1171 -0
  45. data/test/data/vcr_cassettes/student_find_multiple.yml +111 -0
  46. data/test/data/vcr_cassettes/student_find_one.yml +160 -0
  47. data/test/data/vcr_cassettes/students.yml +118 -77
  48. data/test/data/vcr_cassettes/teacher_count.yml +44 -0
  49. data/test/data/vcr_cassettes/teacher_find_by_page.yml +176 -0
  50. data/test/data/vcr_cassettes/teacher_find_multiple.yml +119 -0
  51. data/test/data/vcr_cassettes/teacher_find_one.yml +177 -0
  52. data/test/data/vcr_cassettes/teachers.yml +15 -3712
  53. data/test/integration/api_operations/list_test.rb +84 -28
  54. metadata +82 -30
@@ -8,7 +8,7 @@ http_interactions:
8
8
  string: ''
9
9
  headers:
10
10
  Accept:
11
- - ! '*/*; q=0.5, application/xml'
11
+ - "*/*; q=0.5, application/xml"
12
12
  Accept-Encoding:
13
13
  - gzip, deflate
14
14
  User-Agent:
@@ -23,11 +23,11 @@ http_interactions:
23
23
  Access-Control-Allow-Methods:
24
24
  - GET,PATCH,POST,DELETE
25
25
  Access-Control-Allow-Origin:
26
- - ! '*'
26
+ - "*"
27
27
  Content-Type:
28
28
  - application/json; charset=utf-8
29
29
  Date:
30
- - Mon, 08 Sep 2014 21:31:25 GMT
30
+ - Tue, 09 Sep 2014 21:48:39 GMT
31
31
  Server:
32
32
  - nginx/1.4.7
33
33
  X-Powered-By:
@@ -37,10 +37,10 @@ http_interactions:
37
37
  Connection:
38
38
  - keep-alive
39
39
  body:
40
- encoding: US-ASCII
41
- string: ! '{"data":[{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"uri":"/v1.1/districts/4fd43cc56d11340000000005"}],"paging":{"current":1,"total":1,"count":1},"links":[{"rel":"self","uri":"/v1.1/districts"}]}'
40
+ encoding: UTF-8
41
+ string: '{"data":[{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"uri":"/v1.1/districts/4fd43cc56d11340000000005"}],"paging":{"current":1,"total":1,"count":1},"links":[{"rel":"self","uri":"/v1.1/districts"}]}'
42
42
  http_version:
43
- recorded_at: Mon, 08 Sep 2014 21:31:25 GMT
43
+ recorded_at: Tue, 09 Sep 2014 21:48:39 GMT
44
44
  - request:
45
45
  method: get
46
46
  uri: https://DEMO_KEY:@api.clever.com/v1.1/districts/4fd43cc56d11340000000005
@@ -49,7 +49,7 @@ http_interactions:
49
49
  string: ''
50
50
  headers:
51
51
  Accept:
52
- - ! '*/*; q=0.5, application/xml'
52
+ - "*/*; q=0.5, application/xml"
53
53
  Accept-Encoding:
54
54
  - gzip, deflate
55
55
  User-Agent:
@@ -64,11 +64,11 @@ http_interactions:
64
64
  Access-Control-Allow-Methods:
65
65
  - GET,PATCH,POST,DELETE
66
66
  Access-Control-Allow-Origin:
67
- - ! '*'
67
+ - "*"
68
68
  Content-Type:
69
69
  - application/json; charset=utf-8
70
70
  Date:
71
- - Mon, 08 Sep 2014 21:31:25 GMT
71
+ - Tue, 09 Sep 2014 21:48:39 GMT
72
72
  Server:
73
73
  - nginx/1.4.7
74
74
  X-Powered-By:
@@ -78,10 +78,10 @@ http_interactions:
78
78
  Connection:
79
79
  - keep-alive
80
80
  body:
81
- encoding: US-ASCII
82
- string: ! '{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005"},{"rel":"schools","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"},{"rel":"teachers","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers"},{"rel":"students","uri":"/v1.1/districts/4fd43cc56d11340000000005/students"},{"rel":"sections","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections"},{"rel":"events","uri":"/v1.1/districts/4fd43cc56d11340000000005/events"}]}'
81
+ encoding: UTF-8
82
+ string: '{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005"},{"rel":"schools","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"},{"rel":"teachers","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers"},{"rel":"students","uri":"/v1.1/districts/4fd43cc56d11340000000005/students"},{"rel":"sections","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections"},{"rel":"events","uri":"/v1.1/districts/4fd43cc56d11340000000005/events"}]}'
83
83
  http_version:
84
- recorded_at: Mon, 08 Sep 2014 21:31:25 GMT
84
+ recorded_at: Tue, 09 Sep 2014 21:48:39 GMT
85
85
  - request:
86
86
  method: get
87
87
  uri: https://DEMO_KEY:@api.clever.com/v1.1/districts/4fd43cc56d11340000000005
@@ -90,7 +90,7 @@ http_interactions:
90
90
  string: ''
91
91
  headers:
92
92
  Accept:
93
- - ! '*/*; q=0.5, application/xml'
93
+ - "*/*; q=0.5, application/xml"
94
94
  Accept-Encoding:
95
95
  - gzip, deflate
96
96
  User-Agent:
@@ -105,11 +105,11 @@ http_interactions:
105
105
  Access-Control-Allow-Methods:
106
106
  - GET,PATCH,POST,DELETE
107
107
  Access-Control-Allow-Origin:
108
- - ! '*'
108
+ - "*"
109
109
  Content-Type:
110
110
  - application/json; charset=utf-8
111
111
  Date:
112
- - Mon, 08 Sep 2014 21:31:25 GMT
112
+ - Tue, 09 Sep 2014 21:48:39 GMT
113
113
  Server:
114
114
  - nginx/1.4.7
115
115
  X-Powered-By:
@@ -119,10 +119,10 @@ http_interactions:
119
119
  Connection:
120
120
  - keep-alive
121
121
  body:
122
- encoding: US-ASCII
123
- string: ! '{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005"},{"rel":"schools","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"},{"rel":"teachers","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers"},{"rel":"students","uri":"/v1.1/districts/4fd43cc56d11340000000005/students"},{"rel":"sections","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections"},{"rel":"events","uri":"/v1.1/districts/4fd43cc56d11340000000005/events"}]}'
122
+ encoding: UTF-8
123
+ string: '{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005"},{"rel":"schools","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"},{"rel":"teachers","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers"},{"rel":"students","uri":"/v1.1/districts/4fd43cc56d11340000000005/students"},{"rel":"sections","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections"},{"rel":"events","uri":"/v1.1/districts/4fd43cc56d11340000000005/events"}]}'
124
124
  http_version:
125
- recorded_at: Mon, 08 Sep 2014 21:31:25 GMT
125
+ recorded_at: Tue, 09 Sep 2014 21:48:39 GMT
126
126
  - request:
127
127
  method: get
128
128
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/schools
@@ -131,7 +131,7 @@ http_interactions:
131
131
  string: ''
132
132
  headers:
133
133
  Accept:
134
- - ! '*/*; q=0.5, application/xml'
134
+ - "*/*; q=0.5, application/xml"
135
135
  Accept-Encoding:
136
136
  - gzip, deflate
137
137
  User-Agent:
@@ -146,13 +146,13 @@ http_interactions:
146
146
  Access-Control-Allow-Methods:
147
147
  - GET,PATCH,POST,DELETE
148
148
  Access-Control-Allow-Origin:
149
- - ! '*'
149
+ - "*"
150
150
  Content-Type:
151
151
  - application/json; charset=utf-8
152
152
  Date:
153
- - Mon, 08 Sep 2014 21:31:26 GMT
153
+ - Tue, 09 Sep 2014 21:48:39 GMT
154
154
  Etag:
155
- - ! '"1657555549"'
155
+ - '"1657555549"'
156
156
  Server:
157
157
  - nginx/1.4.7
158
158
  X-Powered-By:
@@ -162,8 +162,8 @@ http_interactions:
162
162
  Connection:
163
163
  - keep-alive
164
164
  body:
165
- encoding: US-ASCII
166
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:14:56.662Z","district":"4fd43cc56d11340000000005","high_grade":"12","last_modified":"2014-02-26T21:14:56.665Z","location":{"address":"350
165
+ encoding: UTF-8
166
+ string: '{"data":[{"data":{"created":"2014-02-26T21:14:56.662Z","district":"4fd43cc56d11340000000005","high_grade":"12","last_modified":"2014-02-26T21:14:56.665Z","location":{"address":"350
167
167
  5th Avenue","city":"New York","state":"NY","zip":"10001"},"low_grade":"9","name":"Clever
168
168
  High School","nces_id":"360008000000","phone":"(212) 555-1212","principal":{"name":"Theodora
169
169
  Khan","email":"tdkhan@mailinator.com"},"school_number":"02M800","sis_id":"02M800","state_id":"712345","id":"530e595026403103360ff9fd"},"uri":"/v1.1/schools/530e595026403103360ff9fd"},{"data":{"created":"2014-02-26T21:14:56.668Z","district":"4fd43cc56d11340000000005","high_grade":"5","last_modified":"2014-02-26T21:14:56.670Z","location":{"address":"110
@@ -174,7 +174,7 @@ http_interactions:
174
174
  Middle School","nces_id":"360001000000","phone":"(718) 555-8989","principal":{"name":"Leonard
175
175
  Springsteen","email":"lspringsteen@mailinator.com"},"school_number":"27Q321","sis_id":"27Q321","state_id":"412","id":"530e595026403103360ff9ff"},"uri":"/v1.1/schools/530e595026403103360ff9ff"}],"paging":{"current":1,"total":1,"count":3},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"}]}'
176
176
  http_version:
177
- recorded_at: Mon, 08 Sep 2014 21:31:25 GMT
177
+ recorded_at: Tue, 09 Sep 2014 21:48:39 GMT
178
178
  - request:
179
179
  method: get
180
180
  uri: https://DEMO_KEY:@api.clever.com/v1.1/districts/4fd43cc56d11340000000005
@@ -183,7 +183,7 @@ http_interactions:
183
183
  string: ''
184
184
  headers:
185
185
  Accept:
186
- - ! '*/*; q=0.5, application/xml'
186
+ - "*/*; q=0.5, application/xml"
187
187
  Accept-Encoding:
188
188
  - gzip, deflate
189
189
  User-Agent:
@@ -198,11 +198,11 @@ http_interactions:
198
198
  Access-Control-Allow-Methods:
199
199
  - GET,PATCH,POST,DELETE
200
200
  Access-Control-Allow-Origin:
201
- - ! '*'
201
+ - "*"
202
202
  Content-Type:
203
203
  - application/json; charset=utf-8
204
204
  Date:
205
- - Mon, 08 Sep 2014 21:31:26 GMT
205
+ - Tue, 09 Sep 2014 21:48:39 GMT
206
206
  Server:
207
207
  - nginx/1.4.7
208
208
  X-Powered-By:
@@ -212,10 +212,10 @@ http_interactions:
212
212
  Connection:
213
213
  - keep-alive
214
214
  body:
215
- encoding: US-ASCII
216
- string: ! '{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005"},{"rel":"schools","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"},{"rel":"teachers","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers"},{"rel":"students","uri":"/v1.1/districts/4fd43cc56d11340000000005/students"},{"rel":"sections","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections"},{"rel":"events","uri":"/v1.1/districts/4fd43cc56d11340000000005/events"}]}'
215
+ encoding: UTF-8
216
+ string: '{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005"},{"rel":"schools","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"},{"rel":"teachers","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers"},{"rel":"students","uri":"/v1.1/districts/4fd43cc56d11340000000005/students"},{"rel":"sections","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections"},{"rel":"events","uri":"/v1.1/districts/4fd43cc56d11340000000005/events"}]}'
217
217
  http_version:
218
- recorded_at: Mon, 08 Sep 2014 21:31:26 GMT
218
+ recorded_at: Tue, 09 Sep 2014 21:48:39 GMT
219
219
  - request:
220
220
  method: get
221
221
  uri: https://DEMO_KEY:@api.clever.com/v1.1/districts/4fd43cc56d11340000000005
@@ -224,7 +224,7 @@ http_interactions:
224
224
  string: ''
225
225
  headers:
226
226
  Accept:
227
- - ! '*/*; q=0.5, application/xml'
227
+ - "*/*; q=0.5, application/xml"
228
228
  Accept-Encoding:
229
229
  - gzip, deflate
230
230
  User-Agent:
@@ -239,11 +239,11 @@ http_interactions:
239
239
  Access-Control-Allow-Methods:
240
240
  - GET,PATCH,POST,DELETE
241
241
  Access-Control-Allow-Origin:
242
- - ! '*'
242
+ - "*"
243
243
  Content-Type:
244
244
  - application/json; charset=utf-8
245
245
  Date:
246
- - Mon, 08 Sep 2014 21:31:26 GMT
246
+ - Tue, 09 Sep 2014 21:48:39 GMT
247
247
  Server:
248
248
  - nginx/1.4.7
249
249
  X-Powered-By:
@@ -253,10 +253,10 @@ http_interactions:
253
253
  Connection:
254
254
  - keep-alive
255
255
  body:
256
- encoding: US-ASCII
257
- string: ! '{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005"},{"rel":"schools","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"},{"rel":"teachers","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers"},{"rel":"students","uri":"/v1.1/districts/4fd43cc56d11340000000005/students"},{"rel":"sections","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections"},{"rel":"events","uri":"/v1.1/districts/4fd43cc56d11340000000005/events"}]}'
256
+ encoding: UTF-8
257
+ string: '{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005"},{"rel":"schools","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"},{"rel":"teachers","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers"},{"rel":"students","uri":"/v1.1/districts/4fd43cc56d11340000000005/students"},{"rel":"sections","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections"},{"rel":"events","uri":"/v1.1/districts/4fd43cc56d11340000000005/events"}]}'
258
258
  http_version:
259
- recorded_at: Mon, 08 Sep 2014 21:31:26 GMT
259
+ recorded_at: Tue, 09 Sep 2014 21:48:39 GMT
260
260
  - request:
261
261
  method: get
262
262
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/schools
@@ -265,7 +265,7 @@ http_interactions:
265
265
  string: ''
266
266
  headers:
267
267
  Accept:
268
- - ! '*/*; q=0.5, application/xml'
268
+ - "*/*; q=0.5, application/xml"
269
269
  Accept-Encoding:
270
270
  - gzip, deflate
271
271
  User-Agent:
@@ -280,13 +280,13 @@ http_interactions:
280
280
  Access-Control-Allow-Methods:
281
281
  - GET,PATCH,POST,DELETE
282
282
  Access-Control-Allow-Origin:
283
- - ! '*'
283
+ - "*"
284
284
  Content-Type:
285
285
  - application/json; charset=utf-8
286
286
  Date:
287
- - Mon, 08 Sep 2014 21:31:26 GMT
287
+ - Tue, 09 Sep 2014 21:48:39 GMT
288
288
  Etag:
289
- - ! '"1657555549"'
289
+ - '"1657555549"'
290
290
  Server:
291
291
  - nginx/1.4.7
292
292
  X-Powered-By:
@@ -296,8 +296,8 @@ http_interactions:
296
296
  Connection:
297
297
  - keep-alive
298
298
  body:
299
- encoding: US-ASCII
300
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:14:56.662Z","district":"4fd43cc56d11340000000005","high_grade":"12","last_modified":"2014-02-26T21:14:56.665Z","location":{"address":"350
299
+ encoding: UTF-8
300
+ string: '{"data":[{"data":{"created":"2014-02-26T21:14:56.662Z","district":"4fd43cc56d11340000000005","high_grade":"12","last_modified":"2014-02-26T21:14:56.665Z","location":{"address":"350
301
301
  5th Avenue","city":"New York","state":"NY","zip":"10001"},"low_grade":"9","name":"Clever
302
302
  High School","nces_id":"360008000000","phone":"(212) 555-1212","principal":{"name":"Theodora
303
303
  Khan","email":"tdkhan@mailinator.com"},"school_number":"02M800","sis_id":"02M800","state_id":"712345","id":"530e595026403103360ff9fd"},"uri":"/v1.1/schools/530e595026403103360ff9fd"},{"data":{"created":"2014-02-26T21:14:56.668Z","district":"4fd43cc56d11340000000005","high_grade":"5","last_modified":"2014-02-26T21:14:56.670Z","location":{"address":"110
@@ -308,5 +308,5 @@ http_interactions:
308
308
  Middle School","nces_id":"360001000000","phone":"(718) 555-8989","principal":{"name":"Leonard
309
309
  Springsteen","email":"lspringsteen@mailinator.com"},"school_number":"27Q321","sis_id":"27Q321","state_id":"412","id":"530e595026403103360ff9ff"},"uri":"/v1.1/schools/530e595026403103360ff9ff"}],"paging":{"current":1,"total":1,"count":3},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"}]}'
310
310
  http_version:
311
- recorded_at: Mon, 08 Sep 2014 21:31:26 GMT
311
+ recorded_at: Tue, 09 Sep 2014 21:48:39 GMT
312
312
  recorded_with: VCR 2.4.0
@@ -8,7 +8,7 @@ http_interactions:
8
8
  string: ''
9
9
  headers:
10
10
  Accept:
11
- - ! '*/*; q=0.5, application/xml'
11
+ - "*/*; q=0.5, application/xml"
12
12
  Accept-Encoding:
13
13
  - gzip, deflate
14
14
  User-Agent:
@@ -23,11 +23,11 @@ http_interactions:
23
23
  Access-Control-Allow-Methods:
24
24
  - GET,PATCH,POST,DELETE
25
25
  Access-Control-Allow-Origin:
26
- - ! '*'
26
+ - "*"
27
27
  Content-Type:
28
28
  - application/json; charset=utf-8
29
29
  Date:
30
- - Mon, 08 Sep 2014 21:31:00 GMT
30
+ - Tue, 09 Sep 2014 21:48:21 GMT
31
31
  Server:
32
32
  - nginx/1.4.7
33
33
  X-Powered-By:
@@ -37,10 +37,10 @@ http_interactions:
37
37
  Connection:
38
38
  - keep-alive
39
39
  body:
40
- encoding: US-ASCII
41
- string: ! '{"data":[{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"uri":"/v1.1/districts/4fd43cc56d11340000000005"}],"paging":{"current":1,"total":1,"count":1},"links":[{"rel":"self","uri":"/v1.1/districts"}]}'
40
+ encoding: UTF-8
41
+ string: '{"data":[{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"uri":"/v1.1/districts/4fd43cc56d11340000000005"}],"paging":{"current":1,"total":1,"count":1},"links":[{"rel":"self","uri":"/v1.1/districts"}]}'
42
42
  http_version:
43
- recorded_at: Mon, 08 Sep 2014 21:31:00 GMT
43
+ recorded_at: Tue, 09 Sep 2014 21:48:21 GMT
44
44
  - request:
45
45
  method: get
46
46
  uri: https://DEMO_KEY:@api.clever.com/v1.1/districts/4fd43cc56d11340000000005
@@ -49,7 +49,7 @@ http_interactions:
49
49
  string: ''
50
50
  headers:
51
51
  Accept:
52
- - ! '*/*; q=0.5, application/xml'
52
+ - "*/*; q=0.5, application/xml"
53
53
  Accept-Encoding:
54
54
  - gzip, deflate
55
55
  User-Agent:
@@ -64,11 +64,11 @@ http_interactions:
64
64
  Access-Control-Allow-Methods:
65
65
  - GET,PATCH,POST,DELETE
66
66
  Access-Control-Allow-Origin:
67
- - ! '*'
67
+ - "*"
68
68
  Content-Type:
69
69
  - application/json; charset=utf-8
70
70
  Date:
71
- - Mon, 08 Sep 2014 21:31:00 GMT
71
+ - Tue, 09 Sep 2014 21:48:21 GMT
72
72
  Server:
73
73
  - nginx/1.4.7
74
74
  X-Powered-By:
@@ -78,10 +78,10 @@ http_interactions:
78
78
  Connection:
79
79
  - keep-alive
80
80
  body:
81
- encoding: US-ASCII
82
- string: ! '{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005"},{"rel":"schools","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"},{"rel":"teachers","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers"},{"rel":"students","uri":"/v1.1/districts/4fd43cc56d11340000000005/students"},{"rel":"sections","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections"},{"rel":"events","uri":"/v1.1/districts/4fd43cc56d11340000000005/events"}]}'
81
+ encoding: UTF-8
82
+ string: '{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005"},{"rel":"schools","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"},{"rel":"teachers","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers"},{"rel":"students","uri":"/v1.1/districts/4fd43cc56d11340000000005/students"},{"rel":"sections","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections"},{"rel":"events","uri":"/v1.1/districts/4fd43cc56d11340000000005/events"}]}'
83
83
  http_version:
84
- recorded_at: Mon, 08 Sep 2014 21:31:00 GMT
84
+ recorded_at: Tue, 09 Sep 2014 21:48:21 GMT
85
85
  - request:
86
86
  method: get
87
87
  uri: https://DEMO_KEY:@api.clever.com/v1.1/districts/4fd43cc56d11340000000005
@@ -90,7 +90,7 @@ http_interactions:
90
90
  string: ''
91
91
  headers:
92
92
  Accept:
93
- - ! '*/*; q=0.5, application/xml'
93
+ - "*/*; q=0.5, application/xml"
94
94
  Accept-Encoding:
95
95
  - gzip, deflate
96
96
  User-Agent:
@@ -105,11 +105,11 @@ http_interactions:
105
105
  Access-Control-Allow-Methods:
106
106
  - GET,PATCH,POST,DELETE
107
107
  Access-Control-Allow-Origin:
108
- - ! '*'
108
+ - "*"
109
109
  Content-Type:
110
110
  - application/json; charset=utf-8
111
111
  Date:
112
- - Mon, 08 Sep 2014 21:31:01 GMT
112
+ - Tue, 09 Sep 2014 21:48:21 GMT
113
113
  Server:
114
114
  - nginx/1.4.7
115
115
  X-Powered-By:
@@ -119,10 +119,10 @@ http_interactions:
119
119
  Connection:
120
120
  - keep-alive
121
121
  body:
122
- encoding: US-ASCII
123
- string: ! '{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005"},{"rel":"schools","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"},{"rel":"teachers","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers"},{"rel":"students","uri":"/v1.1/districts/4fd43cc56d11340000000005/students"},{"rel":"sections","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections"},{"rel":"events","uri":"/v1.1/districts/4fd43cc56d11340000000005/events"}]}'
122
+ encoding: UTF-8
123
+ string: '{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005"},{"rel":"schools","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"},{"rel":"teachers","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers"},{"rel":"students","uri":"/v1.1/districts/4fd43cc56d11340000000005/students"},{"rel":"sections","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections"},{"rel":"events","uri":"/v1.1/districts/4fd43cc56d11340000000005/events"}]}'
124
124
  http_version:
125
- recorded_at: Mon, 08 Sep 2014 21:31:01 GMT
125
+ recorded_at: Tue, 09 Sep 2014 21:48:21 GMT
126
126
  - request:
127
127
  method: get
128
128
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=100000
@@ -131,7 +131,7 @@ http_interactions:
131
131
  string: ''
132
132
  headers:
133
133
  Accept:
134
- - ! '*/*; q=0.5, application/xml'
134
+ - "*/*; q=0.5, application/xml"
135
135
  Accept-Encoding:
136
136
  - gzip, deflate
137
137
  User-Agent:
@@ -146,13 +146,13 @@ http_interactions:
146
146
  Access-Control-Allow-Methods:
147
147
  - GET,PATCH,POST,DELETE
148
148
  Access-Control-Allow-Origin:
149
- - ! '*'
149
+ - "*"
150
150
  Content-Type:
151
151
  - application/json; charset=utf-8
152
152
  Date:
153
- - Mon, 08 Sep 2014 21:31:01 GMT
153
+ - Tue, 09 Sep 2014 21:48:21 GMT
154
154
  Etag:
155
- - ! '"-317608596"'
155
+ - '"-317608596"'
156
156
  Server:
157
157
  - nginx/1.4.7
158
158
  X-Powered-By:
@@ -162,8 +162,8 @@ http_interactions:
162
162
  Connection:
163
163
  - keep-alive
164
164
  body:
165
- encoding: US-ASCII
166
- string: ! '{"data":[{"data":{"course_name":"Group Guidance","course_number":"101","created":"2014-02-26T21:15:37.927Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-08-11T18:35:06.714Z","name":"Group
165
+ encoding: UTF-8
166
+ string: '{"data":[{"data":{"course_name":"Group Guidance","course_number":"101","created":"2014-02-26T21:15:37.927Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-08-11T18:35:06.714Z","name":"Group
167
167
  Guidance - 101 - B. Greene (Section 1)","period":"0","school":"530e595026403103360ff9fd","sis_id":"581","students":["530e5961049e75a9262cffd9","530e5961049e75a9262d0010","530e5961049e75a9262d004e","530e5961049e75a9262d0080","530e5962049e75a9262d0156","530e5963049e75a9262d01b7","530e5963049e75a9262d0253","530e5966049e75a9262d0418","530e5966049e75a9262d0475","530e5966049e75a9262d04b4","530e5967049e75a9262d0503","530e5968049e75a9262d05e9","530e5968049e75a9262d061f","530e5968049e75a9262d0632","530e5968049e75a9262d0647"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c11","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e5979049e75a9262d0af2"},"uri":"/v1.1/sections/530e5979049e75a9262d0af2"},{"data":{"course_name":"Group
168
168
  Guidance","course_number":"102","created":"2014-02-26T21:15:37.934Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:37.936Z","name":"Group
169
169
  Guidance - 102 - T. Vaux (Section 2)","period":"0","school":"530e595026403103360ff9fd","sis_id":"582","students":["530e5960049e75a9262cff4f","530e5960049e75a9262cff95","530e5961049e75a9262cffe0","530e5961049e75a9262d0027","530e5961049e75a9262d008d","530e5963049e75a9262d0180","530e5964049e75a9262d0300","530e5964049e75a9262d0302","530e5964049e75a9262d0304","530e5965049e75a9262d039e","530e5965049e75a9262d03b6","530e5965049e75a9262d03e8","530e5966049e75a9262d040c","530e5966049e75a9262d04cc","530e5967049e75a9262d05c0","530e5968049e75a9262d062f"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c12","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e5979049e75a9262d0af3"},"uri":"/v1.1/sections/530e5979049e75a9262d0af3"},{"data":{"course_name":"Group
@@ -1097,7 +1097,7 @@ http_interactions:
1097
1097
  to Visual Arts - 100 - R. Plant","period":"1","school":"530e595026403103360ff9fd","sis_id":"960","students":["530e5960049e75a9262cff3c","530e5961049e75a9262cffcd","530e5961049e75a9262d001a","530e5961049e75a9262d0038","530e5961049e75a9262d0048","530e5961049e75a9262d0085","530e5962049e75a9262d00e8","530e5962049e75a9262d015f","530e5963049e75a9262d01a2","530e5963049e75a9262d022f","530e5964049e75a9262d02d3","530e5965049e75a9262d0325","530e5966049e75a9262d04d7","530e5967049e75a9262d0501","530e5967049e75a9262d052d","530e5967049e75a9262d05b5","530e5967049e75a9262d05be","530e5968049e75a9262d05cb","530e5968049e75a9262d061c","530e5968049e75a9262d063c"],"subject":"arts
1098
1098
  and music","teacher":"530e5955d50c310f36112c09","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c6c"},"uri":"/v1.1/sections/530e597b049e75a9262d0c6c"}],"paging":{"current":1,"total":1,"count":379},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=100000"}]}'
1099
1099
  http_version:
1100
- recorded_at: Mon, 08 Sep 2014 21:31:03 GMT
1100
+ recorded_at: Tue, 09 Sep 2014 21:48:22 GMT
1101
1101
  - request:
1102
1102
  method: get
1103
1103
  uri: https://DEMO_KEY:@api.clever.com/v1.1/districts/4fd43cc56d11340000000005
@@ -1106,7 +1106,7 @@ http_interactions:
1106
1106
  string: ''
1107
1107
  headers:
1108
1108
  Accept:
1109
- - ! '*/*; q=0.5, application/xml'
1109
+ - "*/*; q=0.5, application/xml"
1110
1110
  Accept-Encoding:
1111
1111
  - gzip, deflate
1112
1112
  User-Agent:
@@ -1121,11 +1121,11 @@ http_interactions:
1121
1121
  Access-Control-Allow-Methods:
1122
1122
  - GET,PATCH,POST,DELETE
1123
1123
  Access-Control-Allow-Origin:
1124
- - ! '*'
1124
+ - "*"
1125
1125
  Content-Type:
1126
1126
  - application/json; charset=utf-8
1127
1127
  Date:
1128
- - Mon, 08 Sep 2014 21:31:03 GMT
1128
+ - Tue, 09 Sep 2014 21:48:22 GMT
1129
1129
  Server:
1130
1130
  - nginx/1.4.7
1131
1131
  X-Powered-By:
@@ -1135,10 +1135,10 @@ http_interactions:
1135
1135
  Connection:
1136
1136
  - keep-alive
1137
1137
  body:
1138
- encoding: US-ASCII
1139
- string: ! '{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005"},{"rel":"schools","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"},{"rel":"teachers","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers"},{"rel":"students","uri":"/v1.1/districts/4fd43cc56d11340000000005/students"},{"rel":"sections","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections"},{"rel":"events","uri":"/v1.1/districts/4fd43cc56d11340000000005/events"}]}'
1138
+ encoding: UTF-8
1139
+ string: '{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005"},{"rel":"schools","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"},{"rel":"teachers","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers"},{"rel":"students","uri":"/v1.1/districts/4fd43cc56d11340000000005/students"},{"rel":"sections","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections"},{"rel":"events","uri":"/v1.1/districts/4fd43cc56d11340000000005/events"}]}'
1140
1140
  http_version:
1141
- recorded_at: Mon, 08 Sep 2014 21:31:03 GMT
1141
+ recorded_at: Tue, 09 Sep 2014 21:48:22 GMT
1142
1142
  - request:
1143
1143
  method: get
1144
1144
  uri: https://DEMO_KEY:@api.clever.com/v1.1/districts/4fd43cc56d11340000000005
@@ -1147,7 +1147,7 @@ http_interactions:
1147
1147
  string: ''
1148
1148
  headers:
1149
1149
  Accept:
1150
- - ! '*/*; q=0.5, application/xml'
1150
+ - "*/*; q=0.5, application/xml"
1151
1151
  Accept-Encoding:
1152
1152
  - gzip, deflate
1153
1153
  User-Agent:
@@ -1162,11 +1162,11 @@ http_interactions:
1162
1162
  Access-Control-Allow-Methods:
1163
1163
  - GET,PATCH,POST,DELETE
1164
1164
  Access-Control-Allow-Origin:
1165
- - ! '*'
1165
+ - "*"
1166
1166
  Content-Type:
1167
1167
  - application/json; charset=utf-8
1168
1168
  Date:
1169
- - Mon, 08 Sep 2014 21:31:04 GMT
1169
+ - Tue, 09 Sep 2014 21:48:22 GMT
1170
1170
  Server:
1171
1171
  - nginx/1.4.7
1172
1172
  X-Powered-By:
@@ -1176,10 +1176,10 @@ http_interactions:
1176
1176
  Connection:
1177
1177
  - keep-alive
1178
1178
  body:
1179
- encoding: US-ASCII
1180
- string: ! '{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005"},{"rel":"schools","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"},{"rel":"teachers","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers"},{"rel":"students","uri":"/v1.1/districts/4fd43cc56d11340000000005/students"},{"rel":"sections","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections"},{"rel":"events","uri":"/v1.1/districts/4fd43cc56d11340000000005/events"}]}'
1179
+ encoding: UTF-8
1180
+ string: '{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005"},{"rel":"schools","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"},{"rel":"teachers","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers"},{"rel":"students","uri":"/v1.1/districts/4fd43cc56d11340000000005/students"},{"rel":"sections","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections"},{"rel":"events","uri":"/v1.1/districts/4fd43cc56d11340000000005/events"}]}'
1181
1181
  http_version:
1182
- recorded_at: Mon, 08 Sep 2014 21:31:04 GMT
1182
+ recorded_at: Tue, 09 Sep 2014 21:48:22 GMT
1183
1183
  - request:
1184
1184
  method: get
1185
1185
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10
@@ -1188,7 +1188,7 @@ http_interactions:
1188
1188
  string: ''
1189
1189
  headers:
1190
1190
  Accept:
1191
- - ! '*/*; q=0.5, application/xml'
1191
+ - "*/*; q=0.5, application/xml"
1192
1192
  Accept-Encoding:
1193
1193
  - gzip, deflate
1194
1194
  User-Agent:
@@ -1203,13 +1203,13 @@ http_interactions:
1203
1203
  Access-Control-Allow-Methods:
1204
1204
  - GET,PATCH,POST,DELETE
1205
1205
  Access-Control-Allow-Origin:
1206
- - ! '*'
1206
+ - "*"
1207
1207
  Content-Type:
1208
1208
  - application/json; charset=utf-8
1209
1209
  Date:
1210
- - Mon, 08 Sep 2014 21:31:05 GMT
1210
+ - Tue, 09 Sep 2014 21:48:22 GMT
1211
1211
  Etag:
1212
- - ! '"205814927"'
1212
+ - '"205814927"'
1213
1213
  Server:
1214
1214
  - nginx/1.4.7
1215
1215
  X-Powered-By:
@@ -1219,8 +1219,8 @@ http_interactions:
1219
1219
  Connection:
1220
1220
  - keep-alive
1221
1221
  body:
1222
- encoding: US-ASCII
1223
- string: ! '{"data":[{"data":{"course_name":"Group Guidance","course_number":"101","created":"2014-02-26T21:15:37.927Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-08-11T18:35:06.714Z","name":"Group
1222
+ encoding: UTF-8
1223
+ string: '{"data":[{"data":{"course_name":"Group Guidance","course_number":"101","created":"2014-02-26T21:15:37.927Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-08-11T18:35:06.714Z","name":"Group
1224
1224
  Guidance - 101 - B. Greene (Section 1)","period":"0","school":"530e595026403103360ff9fd","sis_id":"581","students":["530e5961049e75a9262cffd9","530e5961049e75a9262d0010","530e5961049e75a9262d004e","530e5961049e75a9262d0080","530e5962049e75a9262d0156","530e5963049e75a9262d01b7","530e5963049e75a9262d0253","530e5966049e75a9262d0418","530e5966049e75a9262d0475","530e5966049e75a9262d04b4","530e5967049e75a9262d0503","530e5968049e75a9262d05e9","530e5968049e75a9262d061f","530e5968049e75a9262d0632","530e5968049e75a9262d0647"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c11","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e5979049e75a9262d0af2"},"uri":"/v1.1/sections/530e5979049e75a9262d0af2"},{"data":{"course_name":"Group
1225
1225
  Guidance","course_number":"102","created":"2014-02-26T21:15:37.934Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:37.936Z","name":"Group
1226
1226
  Guidance - 102 - T. Vaux (Section 2)","period":"0","school":"530e595026403103360ff9fd","sis_id":"582","students":["530e5960049e75a9262cff4f","530e5960049e75a9262cff95","530e5961049e75a9262cffe0","530e5961049e75a9262d0027","530e5961049e75a9262d008d","530e5963049e75a9262d0180","530e5964049e75a9262d0300","530e5964049e75a9262d0302","530e5964049e75a9262d0304","530e5965049e75a9262d039e","530e5965049e75a9262d03b6","530e5965049e75a9262d03e8","530e5966049e75a9262d040c","530e5966049e75a9262d04cc","530e5967049e75a9262d05c0","530e5968049e75a9262d062f"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c12","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e5979049e75a9262d0af3"},"uri":"/v1.1/sections/530e5979049e75a9262d0af3"},{"data":{"course_name":"Group
@@ -1241,7 +1241,7 @@ http_interactions:
1241
1241
  Grade Advisory","course_number":"701","created":"2014-02-26T21:15:37.967Z","district":"4fd43cc56d11340000000005","grade":"7","last_modified":"2014-02-26T21:15:37.970Z","name":"Seventh
1242
1242
  Grade Advisory - 701 - S. Madison","period":"1","school":"530e595026403103360ff9ff","sis_id":"590","students":["530e5960049e75a9262cff44","530e5960049e75a9262cff9a","530e5961049e75a9262cffc0","530e5961049e75a9262cffd5","530e5961049e75a9262cffe2","530e5961049e75a9262cffe3","530e5961049e75a9262d0015","530e5961049e75a9262d008a","530e5962049e75a9262d0155","530e5962049e75a9262d015e","530e5963049e75a9262d01a3","530e5963049e75a9262d01f2","530e5963049e75a9262d0233","530e5964049e75a9262d0275","530e5964049e75a9262d029f","530e5964049e75a9262d02c0","530e5965049e75a9262d0323","530e5965049e75a9262d034a","530e5965049e75a9262d0354","530e5966049e75a9262d046d","530e5966049e75a9262d0489","530e5966049e75a9262d04bc","530e5966049e75a9262d04d9","530e5967049e75a9262d056d","530e5967049e75a9262d05bb","530e5968049e75a9262d0621"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c0e","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e5979049e75a9262d0afb"},"uri":"/v1.1/sections/530e5979049e75a9262d0afb"}],"paging":{"current":1,"total":38,"count":379},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e5979049e75a9262d0afb"}]}'
1243
1243
  http_version:
1244
- recorded_at: Mon, 08 Sep 2014 21:31:05 GMT
1244
+ recorded_at: Tue, 09 Sep 2014 21:48:22 GMT
1245
1245
  - request:
1246
1246
  method: get
1247
1247
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e5979049e75a9262d0afb
@@ -1250,7 +1250,7 @@ http_interactions:
1250
1250
  string: ''
1251
1251
  headers:
1252
1252
  Accept:
1253
- - ! '*/*; q=0.5, application/xml'
1253
+ - "*/*; q=0.5, application/xml"
1254
1254
  Accept-Encoding:
1255
1255
  - gzip, deflate
1256
1256
  User-Agent:
@@ -1265,13 +1265,13 @@ http_interactions:
1265
1265
  Access-Control-Allow-Methods:
1266
1266
  - GET,PATCH,POST,DELETE
1267
1267
  Access-Control-Allow-Origin:
1268
- - ! '*'
1268
+ - "*"
1269
1269
  Content-Type:
1270
1270
  - application/json; charset=utf-8
1271
1271
  Date:
1272
- - Mon, 08 Sep 2014 21:31:05 GMT
1272
+ - Tue, 09 Sep 2014 21:48:22 GMT
1273
1273
  Etag:
1274
- - ! '"-1866448954"'
1274
+ - '"-1866448954"'
1275
1275
  Server:
1276
1276
  - nginx/1.4.7
1277
1277
  X-Powered-By:
@@ -1281,8 +1281,8 @@ http_interactions:
1281
1281
  Connection:
1282
1282
  - keep-alive
1283
1283
  body:
1284
- encoding: US-ASCII
1285
- string: ! '{"data":[{"data":{"course_name":"Seventh Grade Advisory","course_number":"702","created":"2014-02-26T21:15:37.971Z","district":"4fd43cc56d11340000000005","grade":"7","last_modified":"2014-02-26T21:15:37.973Z","name":"Seventh
1284
+ encoding: UTF-8
1285
+ string: '{"data":[{"data":{"course_name":"Seventh Grade Advisory","course_number":"702","created":"2014-02-26T21:15:37.971Z","district":"4fd43cc56d11340000000005","grade":"7","last_modified":"2014-02-26T21:15:37.973Z","name":"Seventh
1286
1286
  Grade Advisory - 702 - R. Monroe","period":"1","school":"530e595026403103360ff9ff","sis_id":"591","students":["530e5961049e75a9262cffcb","530e5961049e75a9262d001c","530e5961049e75a9262d006e","530e5961049e75a9262d008b","530e5962049e75a9262d00b2","530e5962049e75a9262d00e4","530e5962049e75a9262d0144","530e5962049e75a9262d0164","530e5963049e75a9262d01a8","530e5964049e75a9262d029b","530e5964049e75a9262d02e9","530e5965049e75a9262d036e","530e5965049e75a9262d03aa","530e5965049e75a9262d03bc","530e5965049e75a9262d03c7","530e5965049e75a9262d03dd","530e5966049e75a9262d041f","530e5967049e75a9262d04e9","530e5967049e75a9262d0523","530e5967049e75a9262d0536","530e5967049e75a9262d0560","530e5967049e75a9262d05b0","530e5967049e75a9262d05b4","530e5968049e75a9262d060d","530e5968049e75a9262d0620","530e5968049e75a9262d0637"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c0f","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e5979049e75a9262d0afc"},"uri":"/v1.1/sections/530e5979049e75a9262d0afc"},{"data":{"course_name":"Seventh
1287
1287
  Grade Advisory","course_number":"703","created":"2014-02-26T21:15:37.977Z","district":"4fd43cc56d11340000000005","grade":"7","last_modified":"2014-02-26T21:15:37.978Z","name":"Seventh
1288
1288
  Grade Advisory - 703 - K. Hudson","period":"1","school":"530e595026403103360ff9ff","sis_id":"592","students":["530e5960049e75a9262cff59","530e5960049e75a9262cff99","530e5961049e75a9262cffea","530e5961049e75a9262cffeb","530e5961049e75a9262cfffd","530e5961049e75a9262d0023","530e5961049e75a9262d0060","530e5962049e75a9262d010c","530e5962049e75a9262d0157","530e5963049e75a9262d0200","530e5963049e75a9262d0206","530e5963049e75a9262d022d","530e5963049e75a9262d0234","530e5963049e75a9262d023a","530e5964049e75a9262d0269","530e5964049e75a9262d02de","530e5964049e75a9262d02fb","530e5964049e75a9262d0314","530e5965049e75a9262d0347","530e5965049e75a9262d03d8","530e5965049e75a9262d03df","530e5966049e75a9262d0417","530e5966049e75a9262d0419","530e5966049e75a9262d04db","530e5967049e75a9262d059b","530e5968049e75a9262d05ee"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c10","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e5979049e75a9262d0afd"},"uri":"/v1.1/sections/530e5979049e75a9262d0afd"},{"data":{"course_name":"Eighth
@@ -1303,7 +1303,7 @@ http_interactions:
1303
1303
  Guidance","course_number":"905","created":"2014-02-26T21:15:38.011Z","district":"4fd43cc56d11340000000005","grade":"9","last_modified":"2014-02-26T21:15:38.013Z","name":"Group
1304
1304
  Guidance - 905 - J. Cummings (Section 5)","period":"0","school":"530e595026403103360ff9fd","sis_id":"600","students":["530e5960049e75a9262cff1e","530e5960049e75a9262cff27","530e5960049e75a9262cff5b","530e5961049e75a9262cfffb","530e5961049e75a9262d0038","530e5961049e75a9262d0089","530e5962049e75a9262d00ba","530e5962049e75a9262d00e6","530e5963049e75a9262d0181","530e5963049e75a9262d020f","530e5963049e75a9262d021b","530e5964049e75a9262d02d3","530e5965049e75a9262d033c","530e5966049e75a9262d045e","530e5966049e75a9262d0496","530e5966049e75a9262d04a5","530e5968049e75a9262d063c"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c16","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b05"},"uri":"/v1.1/sections/530e597a049e75a9262d0b05"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e5979049e75a9262d0afb"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e5979049e75a9262d0afc"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b05"}]}'
1305
1305
  http_version:
1306
- recorded_at: Mon, 08 Sep 2014 21:31:05 GMT
1306
+ recorded_at: Tue, 09 Sep 2014 21:48:22 GMT
1307
1307
  - request:
1308
1308
  method: get
1309
1309
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b05
@@ -1312,7 +1312,7 @@ http_interactions:
1312
1312
  string: ''
1313
1313
  headers:
1314
1314
  Accept:
1315
- - ! '*/*; q=0.5, application/xml'
1315
+ - "*/*; q=0.5, application/xml"
1316
1316
  Accept-Encoding:
1317
1317
  - gzip, deflate
1318
1318
  User-Agent:
@@ -1327,13 +1327,13 @@ http_interactions:
1327
1327
  Access-Control-Allow-Methods:
1328
1328
  - GET,PATCH,POST,DELETE
1329
1329
  Access-Control-Allow-Origin:
1330
- - ! '*'
1330
+ - "*"
1331
1331
  Content-Type:
1332
1332
  - application/json; charset=utf-8
1333
1333
  Date:
1334
- - Mon, 08 Sep 2014 21:31:06 GMT
1334
+ - Tue, 09 Sep 2014 21:48:22 GMT
1335
1335
  Etag:
1336
- - ! '"-1637407075"'
1336
+ - '"-1637407075"'
1337
1337
  Server:
1338
1338
  - nginx/1.4.7
1339
1339
  X-Powered-By:
@@ -1343,8 +1343,8 @@ http_interactions:
1343
1343
  Connection:
1344
1344
  - keep-alive
1345
1345
  body:
1346
- encoding: US-ASCII
1347
- string: ! '{"data":[{"data":{"course_name":"Group Guidance","course_number":"906","created":"2014-02-26T21:15:38.015Z","district":"4fd43cc56d11340000000005","grade":"9","last_modified":"2014-02-26T21:15:38.017Z","name":"Group
1346
+ encoding: UTF-8
1347
+ string: '{"data":[{"data":{"course_name":"Group Guidance","course_number":"906","created":"2014-02-26T21:15:38.015Z","district":"4fd43cc56d11340000000005","grade":"9","last_modified":"2014-02-26T21:15:38.017Z","name":"Group
1348
1348
  Guidance - 906 - M. Nagle (Section 6)","period":"0","school":"530e595026403103360ff9fd","sis_id":"601","students":["530e5960049e75a9262cff42","530e5960049e75a9262cff58","530e5960049e75a9262cff7a","530e5961049e75a9262d0062","530e5961049e75a9262d007f","530e5962049e75a9262d00e8","530e5962049e75a9262d00ff","530e5962049e75a9262d015f","530e5963049e75a9262d0211","530e5963049e75a9262d0229","530e5964049e75a9262d02c3","530e5965049e75a9262d036c","530e5966049e75a9262d03f8","530e5966049e75a9262d0468","530e5967049e75a9262d052d","530e5967049e75a9262d05b7","530e5968049e75a9262d05e3"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c17","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b06"},"uri":"/v1.1/sections/530e597a049e75a9262d0b06"},{"data":{"course_name":"Drama
1349
1349
  10","course_number":"200","created":"2014-02-26T21:15:38.019Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:38.022Z","name":"Drama
1350
1350
  10 - 200 - M. Paucek (Section 1)","period":"2","school":"530e595026403103360ff9fd","sis_id":"602","students":["530e5960049e75a9262cff39","530e5961049e75a9262d0082","530e5962049e75a9262d00a5","530e5962049e75a9262d00e3","530e5962049e75a9262d00f4","530e5962049e75a9262d012e","530e5963049e75a9262d01f5","530e5964049e75a9262d026c","530e5964049e75a9262d0286","530e5965049e75a9262d03b6","530e5965049e75a9262d03cf","530e5966049e75a9262d040c","530e5966049e75a9262d043c","530e5967049e75a9262d0544","530e5967049e75a9262d0594","530e5967049e75a9262d059e","530e5967049e75a9262d05b3","530e5967049e75a9262d05b9","530e5968049e75a9262d05d5","530e5968049e75a9262d060e"],"subject":"arts
@@ -1373,7 +1373,7 @@ http_interactions:
1373
1373
  - 005 - R. Plant (Section 5)","period":"4","school":"530e595026403103360ff9fd","sis_id":"610","students":["530e5960049e75a9262cff48","530e5961049e75a9262d0027","530e5961049e75a9262d0056","530e5962049e75a9262d00b5","530e5962049e75a9262d00f4","530e5963049e75a9262d0180","530e5963049e75a9262d0202","530e5964049e75a9262d0262","530e5964049e75a9262d026c","530e5964049e75a9262d02aa","530e5964049e75a9262d0304","530e5966049e75a9262d0418","530e5966049e75a9262d043c","530e5966049e75a9262d04ba","530e5967049e75a9262d059e","530e5968049e75a9262d05e9","530e5968049e75a9262d061f"],"subject":"arts
1374
1374
  and music","teacher":"530e5955d50c310f36112c09","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b0f"},"uri":"/v1.1/sections/530e597a049e75a9262d0b0f"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b05"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0b06"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b0f"}]}'
1375
1375
  http_version:
1376
- recorded_at: Mon, 08 Sep 2014 21:31:06 GMT
1376
+ recorded_at: Tue, 09 Sep 2014 21:48:22 GMT
1377
1377
  - request:
1378
1378
  method: get
1379
1379
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b0f
@@ -1382,7 +1382,7 @@ http_interactions:
1382
1382
  string: ''
1383
1383
  headers:
1384
1384
  Accept:
1385
- - ! '*/*; q=0.5, application/xml'
1385
+ - "*/*; q=0.5, application/xml"
1386
1386
  Accept-Encoding:
1387
1387
  - gzip, deflate
1388
1388
  User-Agent:
@@ -1397,13 +1397,13 @@ http_interactions:
1397
1397
  Access-Control-Allow-Methods:
1398
1398
  - GET,PATCH,POST,DELETE
1399
1399
  Access-Control-Allow-Origin:
1400
- - ! '*'
1400
+ - "*"
1401
1401
  Content-Type:
1402
1402
  - application/json; charset=utf-8
1403
1403
  Date:
1404
- - Mon, 08 Sep 2014 21:31:06 GMT
1404
+ - Tue, 09 Sep 2014 21:48:23 GMT
1405
1405
  Etag:
1406
- - ! '"1252785622"'
1406
+ - '"1252785622"'
1407
1407
  Server:
1408
1408
  - nginx/1.4.7
1409
1409
  X-Powered-By:
@@ -1413,8 +1413,8 @@ http_interactions:
1413
1413
  Connection:
1414
1414
  - keep-alive
1415
1415
  body:
1416
- encoding: US-ASCII
1417
- string: ! '{"data":[{"data":{"course_name":"Web Development Elective","course_number":"6","created":"2014-02-26T21:15:38.056Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:38.058Z","name":"Web
1416
+ encoding: UTF-8
1417
+ string: '{"data":[{"data":{"course_name":"Web Development Elective","course_number":"6","created":"2014-02-26T21:15:38.056Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:38.058Z","name":"Web
1418
1418
  Development Elective - 006 - L. Ray","period":"4","school":"530e595026403103360ff9fd","sis_id":"611","students":["530e5960049e75a9262cff7b","530e5961049e75a9262d0035","530e5961049e75a9262d0080","530e5962049e75a9262d00e3","530e5962049e75a9262d0102","530e5962049e75a9262d0133","530e5962049e75a9262d0172","530e5963049e75a9262d0240","530e5964049e75a9262d0286","530e5964049e75a9262d028e","530e5965049e75a9262d03b6","530e5966049e75a9262d0475","530e5967049e75a9262d0594","530e5967049e75a9262d0596","530e5967049e75a9262d05b9","530e5968049e75a9262d0603","530e5968049e75a9262d0617"],"subject":"technology
1419
1419
  and engineering","teacher":"530e5955d50c310f36112c0b","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b10"},"uri":"/v1.1/sections/530e597a049e75a9262d0b10"},{"data":{"course_name":"Newspaper
1420
1420
  Publishing 11","course_number":"1","created":"2014-02-26T21:15:38.060Z","district":"4fd43cc56d11340000000005","grade":"11","last_modified":"2014-02-26T21:15:38.072Z","name":"Newspaper
@@ -1442,7 +1442,7 @@ http_interactions:
1442
1442
  Music 12 - 004 - J. Coulton","period":"6","school":"530e595026403103360ff9fd","sis_id":"620","students":["530e5960049e75a9262cff6a","530e5961049e75a9262d002b","530e5961049e75a9262d0039","530e5961049e75a9262d005b","530e5962049e75a9262d0159","530e5963049e75a9262d0209","530e5963049e75a9262d020d","530e5963049e75a9262d021d","530e5963049e75a9262d0232","530e5966049e75a9262d03f3","530e5967049e75a9262d04fa","530e5967049e75a9262d0569","530e5967049e75a9262d058e","530e5967049e75a9262d0591","530e5967049e75a9262d05bd","530e5968049e75a9262d05dd","530e5968049e75a9262d05fa"],"subject":"arts
1443
1443
  and music","teacher":"530e5955d50c310f36112c06","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b19"},"uri":"/v1.1/sections/530e597a049e75a9262d0b19"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b0f"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0b10"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b19"}]}'
1444
1444
  http_version:
1445
- recorded_at: Mon, 08 Sep 2014 21:31:06 GMT
1445
+ recorded_at: Tue, 09 Sep 2014 21:48:22 GMT
1446
1446
  - request:
1447
1447
  method: get
1448
1448
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b19
@@ -1451,7 +1451,7 @@ http_interactions:
1451
1451
  string: ''
1452
1452
  headers:
1453
1453
  Accept:
1454
- - ! '*/*; q=0.5, application/xml'
1454
+ - "*/*; q=0.5, application/xml"
1455
1455
  Accept-Encoding:
1456
1456
  - gzip, deflate
1457
1457
  User-Agent:
@@ -1466,13 +1466,13 @@ http_interactions:
1466
1466
  Access-Control-Allow-Methods:
1467
1467
  - GET,PATCH,POST,DELETE
1468
1468
  Access-Control-Allow-Origin:
1469
- - ! '*'
1469
+ - "*"
1470
1470
  Content-Type:
1471
1471
  - application/json; charset=utf-8
1472
1472
  Date:
1473
- - Mon, 08 Sep 2014 21:31:06 GMT
1473
+ - Tue, 09 Sep 2014 21:48:23 GMT
1474
1474
  Etag:
1475
- - ! '"-323231899"'
1475
+ - '"-323231899"'
1476
1476
  Server:
1477
1477
  - nginx/1.4.7
1478
1478
  X-Powered-By:
@@ -1482,8 +1482,8 @@ http_interactions:
1482
1482
  Connection:
1483
1483
  - keep-alive
1484
1484
  body:
1485
- encoding: US-ASCII
1486
- string: ! '{"data":[{"data":{"course_name":"Stage Crew","course_number":"5","created":"2014-02-26T21:15:38.106Z","district":"4fd43cc56d11340000000005","grade":"12","last_modified":"2014-02-26T21:15:38.109Z","name":"Stage
1485
+ encoding: UTF-8
1486
+ string: '{"data":[{"data":{"course_name":"Stage Crew","course_number":"5","created":"2014-02-26T21:15:38.106Z","district":"4fd43cc56d11340000000005","grade":"12","last_modified":"2014-02-26T21:15:38.109Z","name":"Stage
1487
1487
  Crew - 005 - M. Paucek (Section 5)","period":"6","school":"530e595026403103360ff9fd","sis_id":"621","students":["530e5960049e75a9262cff90","530e5961049e75a9262cfff7","530e5961049e75a9262d000d","530e5963049e75a9262d0227","530e5964049e75a9262d02ac","530e5964049e75a9262d02b5","530e5964049e75a9262d02bc","530e5964049e75a9262d02f8","530e5966049e75a9262d044c","530e5966049e75a9262d048b","530e5967049e75a9262d0585","530e5967049e75a9262d058c","530e5967049e75a9262d05a6","530e5967049e75a9262d05bc","530e5968049e75a9262d05c8","530e5968049e75a9262d05dc","530e5968049e75a9262d05ec"],"subject":"other","teacher":"530e5955d50c310f36112c19","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b1a"},"uri":"/v1.1/sections/530e597a049e75a9262d0b1a"},{"data":{"course_name":"Chorus
1488
1488
  12","course_number":"6","created":"2014-02-26T21:15:38.110Z","district":"4fd43cc56d11340000000005","grade":"12","last_modified":"2014-02-26T21:15:38.112Z","name":"Chorus
1489
1489
  12 - 006 - R. Gadsby (Section 6)","period":"6","school":"530e595026403103360ff9fd","sis_id":"622","students":["530e5960049e75a9262cff67","530e5962049e75a9262d00f7","530e5962049e75a9262d0122","530e5963049e75a9262d01a6","530e5963049e75a9262d024a","530e5964049e75a9262d02d4","530e5965049e75a9262d0324","530e5965049e75a9262d0349","530e5965049e75a9262d038b","530e5965049e75a9262d03cd","530e5966049e75a9262d0447","530e5966049e75a9262d0492","530e5967049e75a9262d04f7","530e5967049e75a9262d050c","530e5968049e75a9262d0602","530e5968049e75a9262d0613","530e5968049e75a9262d0648"],"subject":"arts
@@ -1511,7 +1511,7 @@ http_interactions:
1511
1511
  Dance Elective","course_number":"616","created":"2014-02-26T21:15:38.142Z","district":"4fd43cc56d11340000000005","grade":"6","last_modified":"2014-02-26T21:15:38.144Z","name":"Latin
1512
1512
  Dance Elective - 616 - C. Gleichner","period":"6","school":"530e595026403103360ff9ff","sis_id":"630","students":["530e5960049e75a9262cff22","530e5960049e75a9262cff59","530e5961049e75a9262cffeb","530e5961049e75a9262d001c","530e5962049e75a9262d00e5","530e5962049e75a9262d0164","530e5963049e75a9262d0228","530e5964049e75a9262d0266","530e5964049e75a9262d02b8","530e5965049e75a9262d0321","530e5965049e75a9262d0323","530e5965049e75a9262d034c","530e5965049e75a9262d0354","530e5965049e75a9262d03a0","530e5965049e75a9262d03dd","530e5966049e75a9262d0414","530e5967049e75a9262d056d","530e5968049e75a9262d061d","530e5968049e75a9262d0629","530e5968049e75a9262d0637"],"subject":"language","teacher":"530e5955d50c310f36112be9","term":{"name":"S2","start_date":"2012-12-02T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b23"},"uri":"/v1.1/sections/530e597a049e75a9262d0b23"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b19"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0b1a"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b23"}]}'
1513
1513
  http_version:
1514
- recorded_at: Mon, 08 Sep 2014 21:31:06 GMT
1514
+ recorded_at: Tue, 09 Sep 2014 21:48:23 GMT
1515
1515
  - request:
1516
1516
  method: get
1517
1517
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b23
@@ -1520,7 +1520,7 @@ http_interactions:
1520
1520
  string: ''
1521
1521
  headers:
1522
1522
  Accept:
1523
- - ! '*/*; q=0.5, application/xml'
1523
+ - "*/*; q=0.5, application/xml"
1524
1524
  Accept-Encoding:
1525
1525
  - gzip, deflate
1526
1526
  User-Agent:
@@ -1535,13 +1535,13 @@ http_interactions:
1535
1535
  Access-Control-Allow-Methods:
1536
1536
  - GET,PATCH,POST,DELETE
1537
1537
  Access-Control-Allow-Origin:
1538
- - ! '*'
1538
+ - "*"
1539
1539
  Content-Type:
1540
1540
  - application/json; charset=utf-8
1541
1541
  Date:
1542
- - Mon, 08 Sep 2014 21:31:06 GMT
1542
+ - Tue, 09 Sep 2014 21:48:23 GMT
1543
1543
  Etag:
1544
- - ! '"1633650518"'
1544
+ - '"1633650518"'
1545
1545
  Server:
1546
1546
  - nginx/1.4.7
1547
1547
  X-Powered-By:
@@ -1551,8 +1551,8 @@ http_interactions:
1551
1551
  Connection:
1552
1552
  - keep-alive
1553
1553
  body:
1554
- encoding: US-ASCII
1555
- string: ! '{"data":[{"data":{"course_name":"School Beautification Elective","course_number":"619","created":"2014-02-26T21:15:38.146Z","district":"4fd43cc56d11340000000005","grade":"6","last_modified":"2014-02-26T21:15:38.148Z","name":"School
1554
+ encoding: UTF-8
1555
+ string: '{"data":[{"data":{"course_name":"School Beautification Elective","course_number":"619","created":"2014-02-26T21:15:38.146Z","district":"4fd43cc56d11340000000005","grade":"6","last_modified":"2014-02-26T21:15:38.148Z","name":"School
1556
1556
  Beautification Elective - 619 - J. Doyle","period":"6","school":"530e595026403103360ff9ff","sis_id":"631","students":["530e5960049e75a9262cff99","530e5961049e75a9262d0014","530e5962049e75a9262d0098","530e5962049e75a9262d010c","530e5962049e75a9262d0148","530e5963049e75a9262d01dc","530e5963049e75a9262d0260","530e5964049e75a9262d0275","530e5964049e75a9262d029b","530e5964049e75a9262d02b3","530e5964049e75a9262d0314","530e5965049e75a9262d034a","530e5965049e75a9262d036e","530e5965049e75a9262d03bb","530e5967049e75a9262d04df","530e5967049e75a9262d04e6","530e5967049e75a9262d0592","530e5967049e75a9262d05b0","530e5968049e75a9262d060d","530e5968049e75a9262d062e"],"subject":"other","teacher":"530e5955d50c310f36112bea","term":{"name":"S2","start_date":"2012-12-02T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b24"},"uri":"/v1.1/sections/530e597a049e75a9262d0b24"},{"data":{"course_name":"Set
1557
1557
  Design Elective","course_number":"620","created":"2014-02-26T21:15:38.150Z","district":"4fd43cc56d11340000000005","grade":"6","last_modified":"2014-02-26T21:15:38.153Z","name":"Set
1558
1558
  Design Elective - 620 - A. Ortiz (Section 1)","period":"6","school":"530e595026403103360ff9ff","sis_id":"632","students":["530e5960049e75a9262cff25","530e5960049e75a9262cff61","530e5960049e75a9262cff9e","530e5961049e75a9262d000e","530e5961049e75a9262d006e","530e5962049e75a9262d009c","530e5962049e75a9262d00da","530e5962049e75a9262d010b","530e5962049e75a9262d013d","530e5963049e75a9262d01ca","530e5963049e75a9262d0252","530e5965049e75a9262d036b","530e5965049e75a9262d038c","530e5965049e75a9262d0395","530e5965049e75a9262d03d8","530e5966049e75a9262d03fa","530e5966049e75a9262d0419","530e5966049e75a9262d041a","530e5967049e75a9262d0560","530e5967049e75a9262d059b"],"subject":"other","teacher":"530e5955d50c310f36112bec","term":{"name":"S2","start_date":"2012-12-02T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b25"},"uri":"/v1.1/sections/530e597a049e75a9262d0b25"},{"data":{"course_name":"Film
@@ -1578,7 +1578,7 @@ http_interactions:
1578
1578
  to Web Design - 005 - T. Schultz","period":"3","school":"530e595026403103360ff9fd","sis_id":"640","students":["530e5960049e75a9262cff1e","530e5960049e75a9262cff23","530e5960049e75a9262cff27","530e5960049e75a9262cff4b","530e5960049e75a9262cff7a","530e5961049e75a9262cfffb","530e5961049e75a9262d007d","530e5963049e75a9262d022f","530e5965049e75a9262d036c","530e5966049e75a9262d03f8","530e5966049e75a9262d048d","530e5966049e75a9262d0496","530e5966049e75a9262d04d7","530e5967049e75a9262d0575","530e5967049e75a9262d05b7","530e5968049e75a9262d0614","530e5968049e75a9262d0646"],"subject":"technology
1579
1579
  and engineering","teacher":"530e5955d50c310f36112bee","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b2d"},"uri":"/v1.1/sections/530e597a049e75a9262d0b2d"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b23"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0b24"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b2d"}]}'
1580
1580
  http_version:
1581
- recorded_at: Mon, 08 Sep 2014 21:31:06 GMT
1581
+ recorded_at: Tue, 09 Sep 2014 21:48:23 GMT
1582
1582
  - request:
1583
1583
  method: get
1584
1584
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b2d
@@ -1587,7 +1587,7 @@ http_interactions:
1587
1587
  string: ''
1588
1588
  headers:
1589
1589
  Accept:
1590
- - ! '*/*; q=0.5, application/xml'
1590
+ - "*/*; q=0.5, application/xml"
1591
1591
  Accept-Encoding:
1592
1592
  - gzip, deflate
1593
1593
  User-Agent:
@@ -1602,13 +1602,13 @@ http_interactions:
1602
1602
  Access-Control-Allow-Methods:
1603
1603
  - GET,PATCH,POST,DELETE
1604
1604
  Access-Control-Allow-Origin:
1605
- - ! '*'
1605
+ - "*"
1606
1606
  Content-Type:
1607
1607
  - application/json; charset=utf-8
1608
1608
  Date:
1609
- - Mon, 08 Sep 2014 21:31:06 GMT
1609
+ - Tue, 09 Sep 2014 21:48:23 GMT
1610
1610
  Etag:
1611
- - ! '"-1866821540"'
1611
+ - '"-1866821540"'
1612
1612
  Server:
1613
1613
  - nginx/1.4.7
1614
1614
  X-Powered-By:
@@ -1618,8 +1618,8 @@ http_interactions:
1618
1618
  Connection:
1619
1619
  - keep-alive
1620
1620
  body:
1621
- encoding: US-ASCII
1622
- string: ! '{"data":[{"data":{"course_name":"Lego Robotics Elective 9","course_number":"6","created":"2014-02-26T21:15:38.187Z","district":"4fd43cc56d11340000000005","grade":"9","last_modified":"2014-02-26T21:15:38.190Z","name":"Lego
1621
+ encoding: UTF-8
1622
+ string: '{"data":[{"data":{"course_name":"Lego Robotics Elective 9","course_number":"6","created":"2014-02-26T21:15:38.187Z","district":"4fd43cc56d11340000000005","grade":"9","last_modified":"2014-02-26T21:15:38.190Z","name":"Lego
1623
1623
  Robotics Elective 9 - 006 - L. Ray","period":"3","school":"530e595026403103360ff9fd","sis_id":"641","students":["530e5960049e75a9262cffa2","530e5961049e75a9262d0048","530e5961049e75a9262d0070","530e5962049e75a9262d00e8","530e5962049e75a9262d0110","530e5963049e75a9262d01a2","530e5963049e75a9262d01f8","530e5964049e75a9262d0299","530e5965049e75a9262d0325","530e5965049e75a9262d033f","530e5965049e75a9262d034f","530e5965049e75a9262d038f","530e5966049e75a9262d03fc","530e5966049e75a9262d042b","530e5966049e75a9262d045e","530e5966049e75a9262d0468","530e5968049e75a9262d05e2"],"subject":"technology
1624
1624
  and engineering","teacher":"530e5955d50c310f36112c0b","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b2e"},"uri":"/v1.1/sections/530e597a049e75a9262d0b2e"},{"data":{"course_name":"Tenth
1625
1625
  Grade English","course_number":"201","created":"2014-02-26T21:15:38.191Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:38.194Z","name":"Tenth
@@ -1650,7 +1650,7 @@ http_interactions:
1650
1650
  English Language and Composition - 304 - S. Trantow","period":"6","school":"530e595026403103360ff9fd","sis_id":"650","students":["530e5960049e75a9262cff2f","530e5960049e75a9262cff51","530e5961049e75a9262d002e","530e5962049e75a9262d00bf","530e5962049e75a9262d00c3","530e5963049e75a9262d01a1","530e5963049e75a9262d01a7","530e5963049e75a9262d01d2","530e5963049e75a9262d0205","530e5964049e75a9262d0281","530e5964049e75a9262d02b1","530e5964049e75a9262d02d9","530e5965049e75a9262d0328","530e5966049e75a9262d044e","530e5966049e75a9262d047e","530e5968049e75a9262d05db","530e5968049e75a9262d0627","530e5968049e75a9262d062b","530e5968049e75a9262d0633","530e5968049e75a9262d0639"],"subject":"english/language
1651
1651
  arts","teacher":"530e5955d50c310f36112bf0","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b37"},"uri":"/v1.1/sections/530e597a049e75a9262d0b37"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b2d"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0b2e"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b37"}]}'
1652
1652
  http_version:
1653
- recorded_at: Mon, 08 Sep 2014 21:31:06 GMT
1653
+ recorded_at: Tue, 09 Sep 2014 21:48:23 GMT
1654
1654
  - request:
1655
1655
  method: get
1656
1656
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b37
@@ -1659,7 +1659,7 @@ http_interactions:
1659
1659
  string: ''
1660
1660
  headers:
1661
1661
  Accept:
1662
- - ! '*/*; q=0.5, application/xml'
1662
+ - "*/*; q=0.5, application/xml"
1663
1663
  Accept-Encoding:
1664
1664
  - gzip, deflate
1665
1665
  User-Agent:
@@ -1674,13 +1674,13 @@ http_interactions:
1674
1674
  Access-Control-Allow-Methods:
1675
1675
  - GET,PATCH,POST,DELETE
1676
1676
  Access-Control-Allow-Origin:
1677
- - ! '*'
1677
+ - "*"
1678
1678
  Content-Type:
1679
1679
  - application/json; charset=utf-8
1680
1680
  Date:
1681
- - Mon, 08 Sep 2014 21:31:07 GMT
1681
+ - Tue, 09 Sep 2014 21:48:23 GMT
1682
1682
  Etag:
1683
- - ! '"1867079356"'
1683
+ - '"1867079356"'
1684
1684
  Server:
1685
1685
  - nginx/1.4.7
1686
1686
  X-Powered-By:
@@ -1690,8 +1690,8 @@ http_interactions:
1690
1690
  Connection:
1691
1691
  - keep-alive
1692
1692
  body:
1693
- encoding: US-ASCII
1694
- string: ! '{"data":[{"data":{"course_name":"AP English Language and Composition","course_number":"304","created":"2014-02-26T21:15:38.227Z","district":"4fd43cc56d11340000000005","grade":"11","last_modified":"2014-02-26T21:15:38.229Z","name":"AP
1693
+ encoding: UTF-8
1694
+ string: '{"data":[{"data":{"course_name":"AP English Language and Composition","course_number":"304","created":"2014-02-26T21:15:38.227Z","district":"4fd43cc56d11340000000005","grade":"11","last_modified":"2014-02-26T21:15:38.229Z","name":"AP
1695
1695
  English Language and Composition - 304 - B. Daniel","period":"6","school":"530e595026403103360ff9fd","sis_id":"651","students":["530e5960049e75a9262cff7c","530e5960049e75a9262cff98","530e5961049e75a9262cffe1","530e5962049e75a9262d00ae","530e5962049e75a9262d00dd","530e5962049e75a9262d010e","530e5963049e75a9262d0183","530e5963049e75a9262d01c9","530e5963049e75a9262d022c","530e5963049e75a9262d0259","530e5964049e75a9262d029d","530e5965049e75a9262d037c","530e5966049e75a9262d048f","530e5966049e75a9262d049a","530e5966049e75a9262d04a3","530e5966049e75a9262d04b9","530e5967049e75a9262d0561","530e5968049e75a9262d05ea","530e5968049e75a9262d0600","530e5968049e75a9262d064b"],"subject":"english/language
1696
1696
  arts","teacher":"530e5955d50c310f36112be7","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b38"},"uri":"/v1.1/sections/530e597a049e75a9262d0b38"},{"data":{"course_name":"English
1697
1697
  Remediation, Grade 11","course_number":"305","created":"2014-02-26T21:15:38.231Z","district":"4fd43cc56d11340000000005","grade":"11","last_modified":"2014-02-26T21:15:38.233Z","name":"English
@@ -1722,7 +1722,7 @@ http_interactions:
1722
1722
  Class 701 - 701 - Z. Hand (Section 1)","period":"2","school":"530e595026403103360ff9ff","sis_id":"661","students":["530e5961049e75a9262cffcb","530e5961049e75a9262cffe2","530e5961049e75a9262cffeb","530e5961049e75a9262cfffd","530e5961049e75a9262d0023","530e5961049e75a9262d0060","530e5961049e75a9262d008b","530e5962049e75a9262d00e4","530e5962049e75a9262d0157","530e5963049e75a9262d01a3","530e5963049e75a9262d01a8","530e5963049e75a9262d01f2","530e5963049e75a9262d0234","530e5964049e75a9262d0314","530e5965049e75a9262d0323","530e5965049e75a9262d03bc","530e5965049e75a9262d03d8","530e5965049e75a9262d03dd","530e5966049e75a9262d0417","530e5966049e75a9262d041f","530e5967049e75a9262d04e9","530e5967049e75a9262d056d","530e5967049e75a9262d059b","530e5967049e75a9262d05b0","530e5968049e75a9262d05ee","530e5968049e75a9262d060d"],"subject":"english/language
1723
1723
  arts","teacher":"530e5955d50c310f36112bdd","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b41"},"uri":"/v1.1/sections/530e597a049e75a9262d0b41"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b37"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0b38"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b41"}]}'
1724
1724
  http_version:
1725
- recorded_at: Mon, 08 Sep 2014 21:31:06 GMT
1725
+ recorded_at: Tue, 09 Sep 2014 21:48:23 GMT
1726
1726
  - request:
1727
1727
  method: get
1728
1728
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b41
@@ -1731,7 +1731,7 @@ http_interactions:
1731
1731
  string: ''
1732
1732
  headers:
1733
1733
  Accept:
1734
- - ! '*/*; q=0.5, application/xml'
1734
+ - "*/*; q=0.5, application/xml"
1735
1735
  Accept-Encoding:
1736
1736
  - gzip, deflate
1737
1737
  User-Agent:
@@ -1746,13 +1746,13 @@ http_interactions:
1746
1746
  Access-Control-Allow-Methods:
1747
1747
  - GET,PATCH,POST,DELETE
1748
1748
  Access-Control-Allow-Origin:
1749
- - ! '*'
1749
+ - "*"
1750
1750
  Content-Type:
1751
1751
  - application/json; charset=utf-8
1752
1752
  Date:
1753
- - Mon, 08 Sep 2014 21:31:07 GMT
1753
+ - Tue, 09 Sep 2014 21:48:23 GMT
1754
1754
  Etag:
1755
- - ! '"-348636803"'
1755
+ - '"-348636803"'
1756
1756
  Server:
1757
1757
  - nginx/1.4.7
1758
1758
  X-Powered-By:
@@ -1762,8 +1762,8 @@ http_interactions:
1762
1762
  Connection:
1763
1763
  - keep-alive
1764
1764
  body:
1765
- encoding: US-ASCII
1766
- string: ! '{"data":[{"data":{"course_name":"English, Class 702","course_number":"702","created":"2014-02-26T21:15:38.267Z","district":"4fd43cc56d11340000000005","grade":"7","last_modified":"2014-02-26T21:15:38.269Z","name":"English,
1765
+ encoding: UTF-8
1766
+ string: '{"data":[{"data":{"course_name":"English, Class 702","course_number":"702","created":"2014-02-26T21:15:38.267Z","district":"4fd43cc56d11340000000005","grade":"7","last_modified":"2014-02-26T21:15:38.269Z","name":"English,
1767
1767
  Class 702 - 702 - Z. Hand (Section 2)","period":"2","school":"530e595026403103360ff9ff","sis_id":"662","students":["530e5960049e75a9262cff44","530e5960049e75a9262cff9a","530e5961049e75a9262cffc0","530e5961049e75a9262cffe3","530e5961049e75a9262cffea","530e5961049e75a9262d0015","530e5961049e75a9262d006e","530e5962049e75a9262d00b2","530e5962049e75a9262d010c","530e5962049e75a9262d0164","530e5963049e75a9262d0206","530e5963049e75a9262d0233","530e5964049e75a9262d0269","530e5964049e75a9262d029f","530e5964049e75a9262d02e9","530e5964049e75a9262d02fb","530e5965049e75a9262d0347","530e5965049e75a9262d036e","530e5965049e75a9262d03aa","530e5965049e75a9262d03df","530e5966049e75a9262d04bc","530e5966049e75a9262d04d9","530e5966049e75a9262d04db","530e5967049e75a9262d0523","530e5967049e75a9262d0536","530e5968049e75a9262d0620"],"subject":"english/language
1768
1768
  arts","teacher":"530e5955d50c310f36112bdd","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b42"},"uri":"/v1.1/sections/530e597a049e75a9262d0b42"},{"data":{"course_name":"English,
1769
1769
  Class 703","course_number":"703","created":"2014-02-26T21:15:38.271Z","district":"4fd43cc56d11340000000005","grade":"7","last_modified":"2014-02-26T21:15:38.273Z","name":"English,
@@ -1794,7 +1794,7 @@ http_interactions:
1794
1794
  Remediation, Grade 9 - 105 - B. Daniel","period":"9","school":"530e595026403103360ff9fd","sis_id":"671","students":["530e5960049e75a9262cff3c","530e5960049e75a9262cff58","530e5960049e75a9262cff5b","530e5960049e75a9262cffa2","530e5961049e75a9262d0048","530e5961049e75a9262d0085","530e5962049e75a9262d00ba","530e5962049e75a9262d00ff","530e5962049e75a9262d0127","530e5963049e75a9262d019f","530e5963049e75a9262d020f","530e5966049e75a9262d046a","530e5966049e75a9262d04a5","530e5968049e75a9262d063c"],"subject":"english/language
1795
1795
  arts","teacher":"530e5955d50c310f36112be7","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b4b"},"uri":"/v1.1/sections/530e597a049e75a9262d0b4b"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b41"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0b42"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b4b"}]}'
1796
1796
  http_version:
1797
- recorded_at: Mon, 08 Sep 2014 21:31:07 GMT
1797
+ recorded_at: Tue, 09 Sep 2014 21:48:23 GMT
1798
1798
  - request:
1799
1799
  method: get
1800
1800
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b4b
@@ -1803,7 +1803,7 @@ http_interactions:
1803
1803
  string: ''
1804
1804
  headers:
1805
1805
  Accept:
1806
- - ! '*/*; q=0.5, application/xml'
1806
+ - "*/*; q=0.5, application/xml"
1807
1807
  Accept-Encoding:
1808
1808
  - gzip, deflate
1809
1809
  User-Agent:
@@ -1818,13 +1818,13 @@ http_interactions:
1818
1818
  Access-Control-Allow-Methods:
1819
1819
  - GET,PATCH,POST,DELETE
1820
1820
  Access-Control-Allow-Origin:
1821
- - ! '*'
1821
+ - "*"
1822
1822
  Content-Type:
1823
1823
  - application/json; charset=utf-8
1824
1824
  Date:
1825
- - Mon, 08 Sep 2014 21:31:07 GMT
1825
+ - Tue, 09 Sep 2014 21:48:23 GMT
1826
1826
  Etag:
1827
- - ! '"-1951933124"'
1827
+ - '"-1951933124"'
1828
1828
  Server:
1829
1829
  - nginx/1.4.7
1830
1830
  X-Powered-By:
@@ -1834,8 +1834,8 @@ http_interactions:
1834
1834
  Connection:
1835
1835
  - keep-alive
1836
1836
  body:
1837
- encoding: US-ASCII
1838
- string: ! '{"data":[{"data":{"course_name":"Fine Arts, Class 701","course_number":"701","created":"2014-02-26T21:15:38.316Z","district":"4fd43cc56d11340000000005","grade":"7","last_modified":"2014-02-26T21:15:38.318Z","name":"Fine
1837
+ encoding: UTF-8
1838
+ string: '{"data":[{"data":{"course_name":"Fine Arts, Class 701","course_number":"701","created":"2014-02-26T21:15:38.316Z","district":"4fd43cc56d11340000000005","grade":"7","last_modified":"2014-02-26T21:15:38.318Z","name":"Fine
1839
1839
  Arts, Class 701 - 701 - A. Ortiz (Section 1)","period":"7","school":"530e595026403103360ff9ff","sis_id":"672","students":["530e5961049e75a9262cffcb","530e5961049e75a9262cffe2","530e5961049e75a9262cffeb","530e5961049e75a9262cfffd","530e5961049e75a9262d0023","530e5961049e75a9262d0060","530e5961049e75a9262d008b","530e5962049e75a9262d00e4","530e5962049e75a9262d0157","530e5963049e75a9262d01a3","530e5963049e75a9262d01a8","530e5963049e75a9262d01f2","530e5963049e75a9262d0234","530e5964049e75a9262d0314","530e5965049e75a9262d0323","530e5965049e75a9262d03bc","530e5965049e75a9262d03d8","530e5965049e75a9262d03dd","530e5966049e75a9262d0417","530e5966049e75a9262d041f","530e5967049e75a9262d04e9","530e5967049e75a9262d056d","530e5967049e75a9262d059b","530e5967049e75a9262d05b0","530e5968049e75a9262d05ee","530e5968049e75a9262d060d"],"subject":"arts
1840
1840
  and music","teacher":"530e5955d50c310f36112bec","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b4c"},"uri":"/v1.1/sections/530e597a049e75a9262d0b4c"},{"data":{"course_name":"Fine
1841
1841
  Arts, Class 702","course_number":"702","created":"2014-02-26T21:15:38.319Z","district":"4fd43cc56d11340000000005","grade":"7","last_modified":"2014-02-26T21:15:38.323Z","name":"Fine
@@ -1862,7 +1862,7 @@ http_interactions:
1862
1862
  I","course_number":"101","created":"2014-02-26T21:15:38.354Z","district":"4fd43cc56d11340000000005","grade":"9","last_modified":"2014-02-26T21:15:38.356Z","name":"French
1863
1863
  I - 101 - G. Gorczany (Section 1)","period":"9","school":"530e595026403103360ff9fd","sis_id":"681","students":["530e5960049e75a9262cff1e","530e5960049e75a9262cff4b","530e5960049e75a9262cff5b","530e5960049e75a9262cff7a","530e5961049e75a9262cfffb","530e5961049e75a9262d005d","530e5961049e75a9262d0070","530e5962049e75a9262d00e8","530e5962049e75a9262d00ff","530e5962049e75a9262d015f","530e5963049e75a9262d0211","530e5963049e75a9262d022f","530e5964049e75a9262d0284","530e5964049e75a9262d02a9","530e5964049e75a9262d02c3","530e5965049e75a9262d0325","530e5965049e75a9262d033f","530e5965049e75a9262d036c","530e5965049e75a9262d038f","530e5966049e75a9262d03f8","530e5966049e75a9262d0468","530e5966049e75a9262d046c","530e5966049e75a9262d0471","530e5966049e75a9262d0496","530e5967049e75a9262d057e","530e5967049e75a9262d0590","530e5967049e75a9262d05b5","530e5968049e75a9262d05cb","530e5968049e75a9262d05d1","530e5968049e75a9262d05e3","530e5968049e75a9262d0605","530e5968049e75a9262d061c","530e5968049e75a9262d063c"],"subject":"language","teacher":"530e5955d50c310f36112bf9","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b55"},"uri":"/v1.1/sections/530e597a049e75a9262d0b55"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b4b"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0b4c"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b55"}]}'
1864
1864
  http_version:
1865
- recorded_at: Mon, 08 Sep 2014 21:31:07 GMT
1865
+ recorded_at: Tue, 09 Sep 2014 21:48:23 GMT
1866
1866
  - request:
1867
1867
  method: get
1868
1868
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b55
@@ -1871,7 +1871,7 @@ http_interactions:
1871
1871
  string: ''
1872
1872
  headers:
1873
1873
  Accept:
1874
- - ! '*/*; q=0.5, application/xml'
1874
+ - "*/*; q=0.5, application/xml"
1875
1875
  Accept-Encoding:
1876
1876
  - gzip, deflate
1877
1877
  User-Agent:
@@ -1886,13 +1886,13 @@ http_interactions:
1886
1886
  Access-Control-Allow-Methods:
1887
1887
  - GET,PATCH,POST,DELETE
1888
1888
  Access-Control-Allow-Origin:
1889
- - ! '*'
1889
+ - "*"
1890
1890
  Content-Type:
1891
1891
  - application/json; charset=utf-8
1892
1892
  Date:
1893
- - Mon, 08 Sep 2014 21:31:07 GMT
1893
+ - Tue, 09 Sep 2014 21:48:23 GMT
1894
1894
  Etag:
1895
- - ! '"1591368645"'
1895
+ - '"1591368645"'
1896
1896
  Server:
1897
1897
  - nginx/1.4.7
1898
1898
  X-Powered-By:
@@ -1902,8 +1902,8 @@ http_interactions:
1902
1902
  Connection:
1903
1903
  - keep-alive
1904
1904
  body:
1905
- encoding: US-ASCII
1906
- string: ! '{"data":[{"data":{"course_name":"Health","course_number":"201","created":"2014-02-26T21:15:38.358Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:38.359Z","name":"Health
1905
+ encoding: UTF-8
1906
+ string: '{"data":[{"data":{"course_name":"Health","course_number":"201","created":"2014-02-26T21:15:38.358Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:38.359Z","name":"Health
1907
1907
  - 201 - P. McCartney (Section 1)","period":"1","school":"530e595026403103360ff9fd","sis_id":"682","students":["530e5960049e75a9262cff26","530e5960049e75a9262cff39","530e5960049e75a9262cff48","530e5960049e75a9262cff4f","530e5960049e75a9262cff96","530e5961049e75a9262d0027","530e5961049e75a9262d0035","530e5961049e75a9262d0080","530e5961049e75a9262d0082","530e5962049e75a9262d00b5","530e5962049e75a9262d00b9","530e5962049e75a9262d00e3","530e5962049e75a9262d0102","530e5962049e75a9262d012e","530e5962049e75a9262d0156","530e5963049e75a9262d0207","530e5963049e75a9262d0240","530e5964049e75a9262d0262","530e5964049e75a9262d026c","530e5964049e75a9262d0288","530e5964049e75a9262d0297","530e5964049e75a9262d0304","530e5965049e75a9262d031b","530e5965049e75a9262d0381","530e5966049e75a9262d03f5","530e5966049e75a9262d043c","530e5966049e75a9262d04b4","530e5967049e75a9262d0544","530e5967049e75a9262d0549","530e5968049e75a9262d05d5","530e5968049e75a9262d05e8","530e5968049e75a9262d05fc","530e5968049e75a9262d061f"],"subject":"PE
1908
1908
  and health","teacher":"530e5955d50c310f36112c07","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b56"},"uri":"/v1.1/sections/530e597a049e75a9262d0b56"},{"data":{"course_name":"Health","course_number":"202","created":"2014-02-26T21:15:38.362Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:38.364Z","name":"Health
1909
1909
  - 202 - P. McCartney (Section 2)","period":"1","school":"530e595026403103360ff9fd","sis_id":"683","students":["530e5960049e75a9262cff7b","530e5961049e75a9262cffd9","530e5961049e75a9262cffe0","530e5961049e75a9262d0010","530e5961049e75a9262d0037","530e5961049e75a9262d008d","530e5962049e75a9262d00a5","530e5962049e75a9262d00f4","530e5962049e75a9262d012b","530e5962049e75a9262d0133","530e5963049e75a9262d017f","530e5963049e75a9262d0180","530e5963049e75a9262d01f5","530e5963049e75a9262d01ff","530e5963049e75a9262d0202","530e5964049e75a9262d0282","530e5964049e75a9262d0286","530e5964049e75a9262d028e","530e5964049e75a9262d02aa","530e5964049e75a9262d0300","530e5965049e75a9262d0383","530e5965049e75a9262d03b6","530e5965049e75a9262d03d2","530e5966049e75a9262d0455","530e5966049e75a9262d04ba","530e5966049e75a9262d04cc","530e5967049e75a9262d0586","530e5967049e75a9262d058b","530e5967049e75a9262d05b3","530e5967049e75a9262d05b9","530e5968049e75a9262d05f7","530e5968049e75a9262d0632","530e5968049e75a9262d0647"],"subject":"PE
@@ -1929,7 +1929,7 @@ http_interactions:
1929
1929
  History, Honors - 202 - J. Doyle","period":"5","school":"530e595026403103360ff9fd","sis_id":"691","students":["530e5960049e75a9262cff1f","530e5960049e75a9262cff48","530e5960049e75a9262cff4f","530e5961049e75a9262d0027","530e5961049e75a9262d004e","530e5961049e75a9262d0056","530e5961049e75a9262d0082","530e5961049e75a9262d008d","530e5962049e75a9262d012b","530e5963049e75a9262d01cc","530e5963049e75a9262d0207","530e5964049e75a9262d0288","530e5964049e75a9262d02aa","530e5965049e75a9262d0381","530e5965049e75a9262d03b6","530e5965049e75a9262d03d2","530e5966049e75a9262d040c","530e5966049e75a9262d041c","530e5967049e75a9262d0577","530e5967049e75a9262d058b","530e5967049e75a9262d0594","530e5967049e75a9262d05b3","530e5967049e75a9262d05bf","530e5968049e75a9262d05f7","530e5968049e75a9262d0603"],"subject":"social
1930
1930
  studies","teacher":"530e5955d50c310f36112c0c","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b5f"},"uri":"/v1.1/sections/530e597a049e75a9262d0b5f"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b55"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0b56"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b5f"}]}'
1931
1931
  http_version:
1932
- recorded_at: Mon, 08 Sep 2014 21:31:07 GMT
1932
+ recorded_at: Tue, 09 Sep 2014 21:48:23 GMT
1933
1933
  - request:
1934
1934
  method: get
1935
1935
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b5f
@@ -1938,7 +1938,7 @@ http_interactions:
1938
1938
  string: ''
1939
1939
  headers:
1940
1940
  Accept:
1941
- - ! '*/*; q=0.5, application/xml'
1941
+ - "*/*; q=0.5, application/xml"
1942
1942
  Accept-Encoding:
1943
1943
  - gzip, deflate
1944
1944
  User-Agent:
@@ -1953,13 +1953,13 @@ http_interactions:
1953
1953
  Access-Control-Allow-Methods:
1954
1954
  - GET,PATCH,POST,DELETE
1955
1955
  Access-Control-Allow-Origin:
1956
- - ! '*'
1956
+ - "*"
1957
1957
  Content-Type:
1958
1958
  - application/json; charset=utf-8
1959
1959
  Date:
1960
- - Mon, 08 Sep 2014 21:31:07 GMT
1960
+ - Tue, 09 Sep 2014 21:48:24 GMT
1961
1961
  Etag:
1962
- - ! '"363652445"'
1962
+ - '"363652445"'
1963
1963
  Server:
1964
1964
  - nginx/1.4.7
1965
1965
  X-Powered-By:
@@ -1969,8 +1969,8 @@ http_interactions:
1969
1969
  Connection:
1970
1970
  - keep-alive
1971
1971
  body:
1972
- encoding: US-ASCII
1973
- string: ! '{"data":[{"data":{"course_name":"History Remediation, Grade 10","course_number":"205","created":"2014-02-26T21:15:38.399Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:38.402Z","name":"History
1972
+ encoding: UTF-8
1973
+ string: '{"data":[{"data":{"course_name":"History Remediation, Grade 10","course_number":"205","created":"2014-02-26T21:15:38.399Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:38.402Z","name":"History
1974
1974
  Remediation, Grade 10 - 205 - J. Doyle","period":"9","school":"530e595026403103360ff9fd","sis_id":"692","students":["530e5960049e75a9262cff39","530e5960049e75a9262cff48","530e5961049e75a9262d0035","530e5961049e75a9262d0037","530e5962049e75a9262d00b6","530e5962049e75a9262d00b9","530e5962049e75a9262d00f4","530e5962049e75a9262d0133","530e5962049e75a9262d0172","530e5963049e75a9262d01ff","530e5963049e75a9262d0240","530e5964049e75a9262d026c","530e5964049e75a9262d028e","530e5964049e75a9262d0297","530e5964049e75a9262d02aa","530e5965049e75a9262d039e","530e5965049e75a9262d03b6","530e5965049e75a9262d03e8","530e5966049e75a9262d03f5","530e5966049e75a9262d0475","530e5967049e75a9262d05bf","530e5968049e75a9262d05fc","530e5968049e75a9262d0603","530e5968049e75a9262d0608","530e5968049e75a9262d0632","530e5968049e75a9262d0645","530e5968049e75a9262d0647"],"subject":"social
1975
1975
  studies","teacher":"530e5955d50c310f36112c0c","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b60"},"uri":"/v1.1/sections/530e597a049e75a9262d0b60"},{"data":{"course_name":"U.S.
1976
1976
  Government and Politics","course_number":"300","created":"2014-02-26T21:15:38.403Z","district":"4fd43cc56d11340000000005","grade":"11","last_modified":"2014-02-26T21:15:38.407Z","name":"U.S.
@@ -2001,7 +2001,7 @@ http_interactions:
2001
2001
  Government and Politics - 402 - J. Doyle","period":"5","school":"530e595026403103360ff9fd","sis_id":"701","students":["530e5960049e75a9262cff9f","530e5960049e75a9262cffa6","530e5961049e75a9262cffb7","530e5961049e75a9262d007b","530e5962049e75a9262d00f7","530e5962049e75a9262d0122","530e5963049e75a9262d0209","530e5963049e75a9262d020b","530e5964049e75a9262d027f","530e5964049e75a9262d02ac","530e5964049e75a9262d02d4","530e5964049e75a9262d02fe","530e5965049e75a9262d0372","530e5966049e75a9262d03f3","530e5966049e75a9262d03f6","530e5966049e75a9262d043e","530e5967049e75a9262d0584","530e5967049e75a9262d0585","530e5967049e75a9262d058c","530e5967049e75a9262d05a6","530e5967049e75a9262d05bd","530e5968049e75a9262d05fa","530e5968049e75a9262d0602","530e5968049e75a9262d060c","530e5968049e75a9262d0622"],"subject":"social
2002
2002
  studies","teacher":"530e5955d50c310f36112c0c","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b69"},"uri":"/v1.1/sections/530e597a049e75a9262d0b69"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b5f"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0b60"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b69"}]}'
2003
2003
  http_version:
2004
- recorded_at: Mon, 08 Sep 2014 21:31:07 GMT
2004
+ recorded_at: Tue, 09 Sep 2014 21:48:24 GMT
2005
2005
  - request:
2006
2006
  method: get
2007
2007
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b69
@@ -2010,7 +2010,7 @@ http_interactions:
2010
2010
  string: ''
2011
2011
  headers:
2012
2012
  Accept:
2013
- - ! '*/*; q=0.5, application/xml'
2013
+ - "*/*; q=0.5, application/xml"
2014
2014
  Accept-Encoding:
2015
2015
  - gzip, deflate
2016
2016
  User-Agent:
@@ -2025,13 +2025,13 @@ http_interactions:
2025
2025
  Access-Control-Allow-Methods:
2026
2026
  - GET,PATCH,POST,DELETE
2027
2027
  Access-Control-Allow-Origin:
2028
- - ! '*'
2028
+ - "*"
2029
2029
  Content-Type:
2030
2030
  - application/json; charset=utf-8
2031
2031
  Date:
2032
- - Mon, 08 Sep 2014 21:31:07 GMT
2032
+ - Tue, 09 Sep 2014 21:48:24 GMT
2033
2033
  Etag:
2034
- - ! '"-1918875711"'
2034
+ - '"-1918875711"'
2035
2035
  Server:
2036
2036
  - nginx/1.4.7
2037
2037
  X-Powered-By:
@@ -2041,8 +2041,8 @@ http_interactions:
2041
2041
  Connection:
2042
2042
  - keep-alive
2043
2043
  body:
2044
- encoding: US-ASCII
2045
- string: ! '{"data":[{"data":{"course_name":"History Remediation, Grade 12","course_number":"405","created":"2014-02-26T21:15:38.441Z","district":"4fd43cc56d11340000000005","grade":"12","last_modified":"2014-02-26T21:15:38.443Z","name":"History
2044
+ encoding: UTF-8
2045
+ string: '{"data":[{"data":{"course_name":"History Remediation, Grade 12","course_number":"405","created":"2014-02-26T21:15:38.441Z","district":"4fd43cc56d11340000000005","grade":"12","last_modified":"2014-02-26T21:15:38.443Z","name":"History
2046
2046
  Remediation, Grade 12 - 405 - J. Doyle","period":"9","school":"530e595026403103360ff9fd","sis_id":"702","students":["530e5960049e75a9262cff52","530e5961049e75a9262d0039","530e5962049e75a9262d0122","530e5962049e75a9262d0159","530e5962049e75a9262d015d","530e5963049e75a9262d0197","530e5963049e75a9262d01c7","530e5963049e75a9262d020d","530e5964049e75a9262d0278","530e5964049e75a9262d02d4","530e5964049e75a9262d02ee","530e5964049e75a9262d02f8","530e5965049e75a9262d0332","530e5965049e75a9262d03e5","530e5966049e75a9262d03f3","530e5966049e75a9262d0467","530e5967049e75a9262d04f7","530e5967049e75a9262d04fa","530e5967049e75a9262d04fe","530e5967049e75a9262d05a6","530e5967049e75a9262d05bc","530e5968049e75a9262d05ec","530e5968049e75a9262d05fa","530e5968049e75a9262d0607","530e5968049e75a9262d0613","530e5968049e75a9262d063b","530e5968049e75a9262d063f"],"subject":"social
2047
2047
  studies","teacher":"530e5955d50c310f36112c0c","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b6a"},"uri":"/v1.1/sections/530e597a049e75a9262d0b6a"},{"data":{"course_name":"U.S.
2048
2048
  History","course_number":"101","created":"2014-02-26T21:15:38.445Z","district":"4fd43cc56d11340000000005","grade":"9","last_modified":"2014-02-26T21:15:38.447Z","name":"U.S.
@@ -2069,7 +2069,7 @@ http_interactions:
2069
2069
  101, Homeroom","course_number":"101","created":"2014-02-26T21:15:38.479Z","district":"4fd43cc56d11340000000005","grade":"1","last_modified":"2014-02-26T21:15:38.481Z","name":"Class
2070
2070
  101, Homeroom - 101 - H. Hahn (Section 1)","period":"0","school":"530e595026403103360ff9fe","sis_id":"711","students":["530e5960049e75a9262cff2b","530e5960049e75a9262cff6e","530e5960049e75a9262cffa0","530e5960049e75a9262cffac","530e5961049e75a9262d0081","530e5961049e75a9262d0093","530e5963049e75a9262d0185","530e5963049e75a9262d01bd","530e5963049e75a9262d0216","530e5964049e75a9262d02c7","530e5965049e75a9262d0327","530e5965049e75a9262d0338","530e5965049e75a9262d034b","530e5965049e75a9262d03cb","530e5965049e75a9262d03ef","530e5966049e75a9262d046f","530e5966049e75a9262d049b","530e5967049e75a9262d050e","530e5967049e75a9262d051e","530e5967049e75a9262d0566"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112bcb","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b73"},"uri":"/v1.1/sections/530e597a049e75a9262d0b73"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b69"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0b6a"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b73"}]}'
2071
2071
  http_version:
2072
- recorded_at: Mon, 08 Sep 2014 21:31:07 GMT
2072
+ recorded_at: Tue, 09 Sep 2014 21:48:24 GMT
2073
2073
  - request:
2074
2074
  method: get
2075
2075
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b73
@@ -2078,7 +2078,7 @@ http_interactions:
2078
2078
  string: ''
2079
2079
  headers:
2080
2080
  Accept:
2081
- - ! '*/*; q=0.5, application/xml'
2081
+ - "*/*; q=0.5, application/xml"
2082
2082
  Accept-Encoding:
2083
2083
  - gzip, deflate
2084
2084
  User-Agent:
@@ -2093,13 +2093,13 @@ http_interactions:
2093
2093
  Access-Control-Allow-Methods:
2094
2094
  - GET,PATCH,POST,DELETE
2095
2095
  Access-Control-Allow-Origin:
2096
- - ! '*'
2096
+ - "*"
2097
2097
  Content-Type:
2098
2098
  - application/json; charset=utf-8
2099
2099
  Date:
2100
- - Mon, 08 Sep 2014 21:31:08 GMT
2100
+ - Tue, 09 Sep 2014 21:48:24 GMT
2101
2101
  Etag:
2102
- - ! '"-1556313222"'
2102
+ - '"-1556313222"'
2103
2103
  Server:
2104
2104
  - nginx/1.4.7
2105
2105
  X-Powered-By:
@@ -2109,8 +2109,8 @@ http_interactions:
2109
2109
  Connection:
2110
2110
  - keep-alive
2111
2111
  body:
2112
- encoding: US-ASCII
2113
- string: ! '{"data":[{"data":{"course_name":"Class 101, Homeroom","course_number":"101","created":"2014-02-26T21:15:38.483Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:38.494Z","name":"Class
2112
+ encoding: UTF-8
2113
+ string: '{"data":[{"data":{"course_name":"Class 101, Homeroom","course_number":"101","created":"2014-02-26T21:15:38.483Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:38.494Z","name":"Class
2114
2114
  101, Homeroom - 101 - H. Hauck (Section 1)","period":"0","school":"530e595026403103360ff9fd","sis_id":"712","students":["530e5960049e75a9262cff21","530e5960049e75a9262cff39","530e5960049e75a9262cff96","530e5961049e75a9262d0020","530e5961049e75a9262d0027","530e5961049e75a9262d0037","530e5961049e75a9262d0056","530e5962049e75a9262d00e3","530e5962049e75a9262d0156","530e5962049e75a9262d0158","530e5963049e75a9262d017f","530e5963049e75a9262d01f5","530e5964049e75a9262d0262","530e5964049e75a9262d0282","530e5964049e75a9262d0288","530e5964049e75a9262d028e","530e5965049e75a9262d031b","530e5965049e75a9262d0383","530e5965049e75a9262d03b6","530e5965049e75a9262d03d2","530e5965049e75a9262d03e8","530e5966049e75a9262d0418","530e5966049e75a9262d0455","530e5966049e75a9262d0475","530e5966049e75a9262d04b4","530e5967049e75a9262d0503","530e5967049e75a9262d058b","530e5967049e75a9262d05bf","530e5968049e75a9262d05e8","530e5968049e75a9262d05fc","530e5968049e75a9262d0617","530e5968049e75a9262d061f","530e5968049e75a9262d0645"],"subject":"homeroom/advisory","teacher":"50bf617202dfe7ca0154296f","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b74"},"uri":"/v1.1/sections/530e597a049e75a9262d0b74"},{"data":{"course_name":"Class
2115
2115
  102, Homeroom","course_number":"102","created":"2014-02-26T21:15:38.496Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:38.498Z","name":"Class
2116
2116
  102, Homeroom - 102 - R. Emard (Section 2)","period":"0","school":"530e595026403103360ff9fd","sis_id":"713","students":["530e5960049e75a9262cff1f","530e5961049e75a9262cffd9","530e5961049e75a9262d0010","530e5961049e75a9262d0082","530e5961049e75a9262d008d","530e5962049e75a9262d00b6","530e5962049e75a9262d00f4","530e5962049e75a9262d0102","530e5962049e75a9262d012e","530e5962049e75a9262d0172","530e5963049e75a9262d0180","530e5963049e75a9262d01b7","530e5963049e75a9262d01cc","530e5963049e75a9262d0202","530e5963049e75a9262d0240","530e5963049e75a9262d0253","530e5964049e75a9262d0286","530e5964049e75a9262d02aa","530e5964049e75a9262d0300","530e5964049e75a9262d0304","530e5965049e75a9262d0381","530e5965049e75a9262d039e","530e5966049e75a9262d03f5","530e5967049e75a9262d0549","530e5967049e75a9262d0594","530e5967049e75a9262d059e","530e5967049e75a9262d05b3","530e5967049e75a9262d05b9","530e5968049e75a9262d05e9","530e5968049e75a9262d0603","530e5968049e75a9262d060e","530e5968049e75a9262d062f","530e5968049e75a9262d0647"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112bf4","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b75"},"uri":"/v1.1/sections/530e597a049e75a9262d0b75"},{"data":{"course_name":"Class
@@ -2131,7 +2131,7 @@ http_interactions:
2131
2131
  123, Homeroom","course_number":"123","created":"2014-02-26T21:15:38.532Z","district":"4fd43cc56d11340000000005","grade":"12","last_modified":"2014-02-26T21:15:38.534Z","name":"Class
2132
2132
  123, Homeroom - 123 - R. Will (Section 3)","period":"0","school":"530e595026403103360ff9fd","sis_id":"721","students":["530e5960049e75a9262cff67","530e5960049e75a9262cff90","530e5961049e75a9262cffb7","530e5961049e75a9262d0002","530e5961049e75a9262d002b","530e5961049e75a9262d0039","530e5961049e75a9262d007b","530e5962049e75a9262d012c","530e5962049e75a9262d0159","530e5962049e75a9262d015b","530e5962049e75a9262d015d","530e5963049e75a9262d01d6","530e5963049e75a9262d0232","530e5964049e75a9262d02fe","530e5965049e75a9262d0324","530e5965049e75a9262d0332","530e5965049e75a9262d0363","530e5965049e75a9262d0379","530e5965049e75a9262d037f","530e5965049e75a9262d03cd","530e5966049e75a9262d03f6","530e5966049e75a9262d0447","530e5966049e75a9262d044c","530e5966049e75a9262d04a0","530e5967049e75a9262d0563","530e5967049e75a9262d0569","530e5967049e75a9262d0585","530e5967049e75a9262d05a6","530e5967049e75a9262d05b2","530e5967049e75a9262d05bc","530e5968049e75a9262d05c5","530e5968049e75a9262d05ec","530e5968049e75a9262d0607","530e5968049e75a9262d0648"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112bfd","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b7d"},"uri":"/v1.1/sections/530e597a049e75a9262d0b7d"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b73"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0b74"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b7d"}]}'
2133
2133
  http_version:
2134
- recorded_at: Mon, 08 Sep 2014 21:31:08 GMT
2134
+ recorded_at: Tue, 09 Sep 2014 21:48:24 GMT
2135
2135
  - request:
2136
2136
  method: get
2137
2137
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b7d
@@ -2140,7 +2140,7 @@ http_interactions:
2140
2140
  string: ''
2141
2141
  headers:
2142
2142
  Accept:
2143
- - ! '*/*; q=0.5, application/xml'
2143
+ - "*/*; q=0.5, application/xml"
2144
2144
  Accept-Encoding:
2145
2145
  - gzip, deflate
2146
2146
  User-Agent:
@@ -2155,13 +2155,13 @@ http_interactions:
2155
2155
  Access-Control-Allow-Methods:
2156
2156
  - GET,PATCH,POST,DELETE
2157
2157
  Access-Control-Allow-Origin:
2158
- - ! '*'
2158
+ - "*"
2159
2159
  Content-Type:
2160
2160
  - application/json; charset=utf-8
2161
2161
  Date:
2162
- - Mon, 08 Sep 2014 21:31:08 GMT
2162
+ - Tue, 09 Sep 2014 21:48:24 GMT
2163
2163
  Etag:
2164
- - ! '"-1794020354"'
2164
+ - '"-1794020354"'
2165
2165
  Server:
2166
2166
  - nginx/1.4.7
2167
2167
  X-Powered-By:
@@ -2171,8 +2171,8 @@ http_interactions:
2171
2171
  Connection:
2172
2172
  - keep-alive
2173
2173
  body:
2174
- encoding: US-ASCII
2175
- string: ! '{"data":[{"data":{"course_name":"Class 103, Homeroom","course_number":"103","created":"2014-02-26T21:15:38.536Z","district":"4fd43cc56d11340000000005","grade":"1","last_modified":"2014-02-26T21:15:38.538Z","name":"Class
2174
+ encoding: UTF-8
2175
+ string: '{"data":[{"data":{"course_name":"Class 103, Homeroom","course_number":"103","created":"2014-02-26T21:15:38.536Z","district":"4fd43cc56d11340000000005","grade":"1","last_modified":"2014-02-26T21:15:38.538Z","name":"Class
2176
2176
  103, Homeroom - 103 - R. Prosacco","period":"0","school":"530e595026403103360ff9fe","sis_id":"722","students":["530e5960049e75a9262cff20","530e5960049e75a9262cff92","530e5960049e75a9262cff97","530e5961049e75a9262cffde","530e5961049e75a9262d007e","530e5962049e75a9262d0142","530e5962049e75a9262d014f","530e5963049e75a9262d01d9","530e5963049e75a9262d01da","530e5963049e75a9262d0225","530e5964049e75a9262d027c","530e5965049e75a9262d03b5","530e5965049e75a9262d03ba","530e5965049e75a9262d03bd","530e5968049e75a9262d05f2","530e5968049e75a9262d05f6","530e5968049e75a9262d0618","530e5968049e75a9262d0630","530e5968049e75a9262d0631","530e5968049e75a9262d0635","530e5968049e75a9262d0643"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112bde","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b7e"},"uri":"/v1.1/sections/530e597a049e75a9262d0b7e"},{"data":{"course_name":"Class
2177
2177
  201, Homeroom","course_number":"201","created":"2014-02-26T21:15:38.540Z","district":"4fd43cc56d11340000000005","grade":"2","last_modified":"2014-02-26T21:15:38.542Z","name":"Class
2178
2178
  201, Homeroom - 201 - C. Hammes (Section 1)","period":"0","school":"530e595026403103360ff9fe","sis_id":"723","students":["530e5960049e75a9262cff94","530e5961049e75a9262d0050","530e5961049e75a9262d0054","530e5962049e75a9262d0160","530e5962049e75a9262d0161","530e5963049e75a9262d0237","530e5963049e75a9262d023d","530e5963049e75a9262d0256","530e5964049e75a9262d0280","530e5964049e75a9262d02a6","530e5965049e75a9262d032f","530e5965049e75a9262d0360","530e5965049e75a9262d0394","530e5965049e75a9262d03da","530e5965049e75a9262d03eb","530e5966049e75a9262d0498","530e5966049e75a9262d04a7","530e5967049e75a9262d04ee","530e5967049e75a9262d0588","530e5968049e75a9262d0612"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112bf1","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b7f"},"uri":"/v1.1/sections/530e597a049e75a9262d0b7f"},{"data":{"course_name":"Class
@@ -2193,7 +2193,7 @@ http_interactions:
2193
2193
  403, Homeroom","course_number":"403","created":"2014-02-26T21:15:38.572Z","district":"4fd43cc56d11340000000005","grade":"4","last_modified":"2014-02-26T21:15:38.574Z","name":"Class
2194
2194
  403, Homeroom - 403 - E. Oberbrunner","period":"0","school":"530e595026403103360ff9fe","sis_id":"731","students":["530e5961049e75a9262d0087","530e5962049e75a9262d00bb","530e5962049e75a9262d00ea","530e5962049e75a9262d0107","530e5962049e75a9262d014d","530e5963049e75a9262d0193","530e5963049e75a9262d01b3","530e5963049e75a9262d01ce","530e5963049e75a9262d01de","530e5963049e75a9262d01fe","530e5964049e75a9262d028b","530e5964049e75a9262d02c9","530e5965049e75a9262d0329","530e5965049e75a9262d032c","530e5966049e75a9262d03f4","530e5966049e75a9262d04da","530e5967049e75a9262d04f9","530e5967049e75a9262d0505","530e5967049e75a9262d0509","530e5967049e75a9262d0567","530e5968049e75a9262d05ef"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112bd0","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b87"},"uri":"/v1.1/sections/530e597a049e75a9262d0b87"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b7d"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0b7e"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b87"}]}'
2195
2195
  http_version:
2196
- recorded_at: Mon, 08 Sep 2014 21:31:08 GMT
2196
+ recorded_at: Tue, 09 Sep 2014 21:48:24 GMT
2197
2197
  - request:
2198
2198
  method: get
2199
2199
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b87
@@ -2202,7 +2202,7 @@ http_interactions:
2202
2202
  string: ''
2203
2203
  headers:
2204
2204
  Accept:
2205
- - ! '*/*; q=0.5, application/xml'
2205
+ - "*/*; q=0.5, application/xml"
2206
2206
  Accept-Encoding:
2207
2207
  - gzip, deflate
2208
2208
  User-Agent:
@@ -2217,13 +2217,13 @@ http_interactions:
2217
2217
  Access-Control-Allow-Methods:
2218
2218
  - GET,PATCH,POST,DELETE
2219
2219
  Access-Control-Allow-Origin:
2220
- - ! '*'
2220
+ - "*"
2221
2221
  Content-Type:
2222
2222
  - application/json; charset=utf-8
2223
2223
  Date:
2224
- - Mon, 08 Sep 2014 21:31:08 GMT
2224
+ - Tue, 09 Sep 2014 21:48:24 GMT
2225
2225
  Etag:
2226
- - ! '"733629802"'
2226
+ - '"733629802"'
2227
2227
  Server:
2228
2228
  - nginx/1.4.7
2229
2229
  X-Powered-By:
@@ -2233,8 +2233,8 @@ http_interactions:
2233
2233
  Connection:
2234
2234
  - keep-alive
2235
2235
  body:
2236
- encoding: US-ASCII
2237
- string: ! '{"data":[{"data":{"course_name":"Class 501, Homeroom","course_number":"501","created":"2014-02-26T21:15:38.576Z","district":"4fd43cc56d11340000000005","grade":"5","last_modified":"2014-02-26T21:15:38.578Z","name":"Class
2236
+ encoding: UTF-8
2237
+ string: '{"data":[{"data":{"course_name":"Class 501, Homeroom","course_number":"501","created":"2014-02-26T21:15:38.576Z","district":"4fd43cc56d11340000000005","grade":"5","last_modified":"2014-02-26T21:15:38.578Z","name":"Class
2238
2238
  501, Homeroom - 501 - N. Bartoletti","period":"0","school":"530e595026403103360ff9fe","sis_id":"732","students":["530e5961049e75a9262cffc1","530e5961049e75a9262cffe8","530e5962049e75a9262d00cc","530e5963049e75a9262d01a9","530e5963049e75a9262d01aa","530e5963049e75a9262d01ac","530e5963049e75a9262d01c5","530e5963049e75a9262d022b","530e5964049e75a9262d02fa","530e5965049e75a9262d034e","530e5965049e75a9262d0392","530e5965049e75a9262d03c9","530e5966049e75a9262d04ca","530e5967049e75a9262d0538","530e5967049e75a9262d055d","530e5967049e75a9262d0562","530e5967049e75a9262d056b","530e5967049e75a9262d058a","530e5967049e75a9262d0598","530e5968049e75a9262d05cc"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112bd2","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b88"},"uri":"/v1.1/sections/530e597a049e75a9262d0b88"},{"data":{"course_name":"Class
2239
2239
  502, Homeroom","course_number":"502","created":"2014-02-26T21:15:38.579Z","district":"4fd43cc56d11340000000005","grade":"5","last_modified":"2014-02-26T21:15:38.582Z","name":"Class
2240
2240
  502, Homeroom - 502 - M. Walsh (Section 2)","period":"0","school":"530e595026403103360ff9fe","sis_id":"733","students":["530e5960049e75a9262cff33","530e5960049e75a9262cff6c","530e5961049e75a9262cffe4","530e5961049e75a9262d003b","530e5962049e75a9262d0096","530e5962049e75a9262d00ac","530e5962049e75a9262d00ca","530e5962049e75a9262d0104","530e5963049e75a9262d01cb","530e5964049e75a9262d0277","530e5964049e75a9262d02b4","530e5965049e75a9262d0322","530e5965049e75a9262d0386","530e5965049e75a9262d0399","530e5966049e75a9262d0442","530e5966049e75a9262d0470","530e5966049e75a9262d04bb","530e5967049e75a9262d04f0","530e5968049e75a9262d05e5","530e5968049e75a9262d05f8","530e5968049e75a9262d060a"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112bd3","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b89"},"uri":"/v1.1/sections/530e597a049e75a9262d0b89"},{"data":{"course_name":"Class
@@ -2255,7 +2255,7 @@ http_interactions:
2255
2255
  801, Homeroom","course_number":"801","created":"2014-02-26T21:15:38.612Z","district":"4fd43cc56d11340000000005","grade":"8","last_modified":"2014-02-26T21:15:38.614Z","name":"Class
2256
2256
  801, Homeroom - 801 - J. Schneider","period":"0","school":"530e595026403103360ff9ff","sis_id":"741","students":["530e5960049e75a9262cff37","530e5960049e75a9262cff9e","530e5961049e75a9262d0011","530e5961049e75a9262d0014","530e5962049e75a9262d00e1","530e5963049e75a9262d01d0","530e5963049e75a9262d01d1","530e5963049e75a9262d01dc","530e5963049e75a9262d01ed","530e5963049e75a9262d0228","530e5963049e75a9262d0252","530e5964049e75a9262d0291","530e5964049e75a9262d02cb","530e5965049e75a9262d031d","530e5965049e75a9262d0395","530e5965049e75a9262d03b8","530e5965049e75a9262d03c2","530e5966049e75a9262d03f0","530e5967049e75a9262d0515","530e5967049e75a9262d053e","530e5967049e75a9262d0542","530e5967049e75a9262d0592","530e5967049e75a9262d05af","530e5968049e75a9262d05d8","530e5968049e75a9262d05da","530e5968049e75a9262d061d"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112bdf","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b91"},"uri":"/v1.1/sections/530e597a049e75a9262d0b91"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b87"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0b88"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b91"}]}'
2257
2257
  http_version:
2258
- recorded_at: Mon, 08 Sep 2014 21:31:08 GMT
2258
+ recorded_at: Tue, 09 Sep 2014 21:48:24 GMT
2259
2259
  - request:
2260
2260
  method: get
2261
2261
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b91
@@ -2264,7 +2264,7 @@ http_interactions:
2264
2264
  string: ''
2265
2265
  headers:
2266
2266
  Accept:
2267
- - ! '*/*; q=0.5, application/xml'
2267
+ - "*/*; q=0.5, application/xml"
2268
2268
  Accept-Encoding:
2269
2269
  - gzip, deflate
2270
2270
  User-Agent:
@@ -2279,13 +2279,13 @@ http_interactions:
2279
2279
  Access-Control-Allow-Methods:
2280
2280
  - GET,PATCH,POST,DELETE
2281
2281
  Access-Control-Allow-Origin:
2282
- - ! '*'
2282
+ - "*"
2283
2283
  Content-Type:
2284
2284
  - application/json; charset=utf-8
2285
2285
  Date:
2286
- - Mon, 08 Sep 2014 21:31:08 GMT
2286
+ - Tue, 09 Sep 2014 21:48:24 GMT
2287
2287
  Etag:
2288
- - ! '"-1887313920"'
2288
+ - '"-1887313920"'
2289
2289
  Server:
2290
2290
  - nginx/1.4.7
2291
2291
  X-Powered-By:
@@ -2295,8 +2295,8 @@ http_interactions:
2295
2295
  Connection:
2296
2296
  - keep-alive
2297
2297
  body:
2298
- encoding: US-ASCII
2299
- string: ! '{"data":[{"data":{"course_name":"Class 802, Homeroom","course_number":"802","created":"2014-02-26T21:15:38.616Z","district":"4fd43cc56d11340000000005","grade":"8","last_modified":"2014-02-26T21:15:38.618Z","name":"Class
2298
+ encoding: UTF-8
2299
+ string: '{"data":[{"data":{"course_name":"Class 802, Homeroom","course_number":"802","created":"2014-02-26T21:15:38.616Z","district":"4fd43cc56d11340000000005","grade":"8","last_modified":"2014-02-26T21:15:38.618Z","name":"Class
2300
2300
  802, Homeroom - 802 - R. Conn (Section 2)","period":"0","school":"530e595026403103360ff9ff","sis_id":"742","students":["530e5960049e75a9262cff29","530e5960049e75a9262cff57","530e5961049e75a9262cffe5","530e5961049e75a9262d0013","530e5962049e75a9262d009c","530e5962049e75a9262d00b4","530e5962049e75a9262d00c7","530e5962049e75a9262d00df","530e5962049e75a9262d00e5","530e5963049e75a9262d0199","530e5963049e75a9262d01ca","530e5963049e75a9262d01d8","530e5965049e75a9262d0321","530e5965049e75a9262d0393","530e5965049e75a9262d0396","530e5965049e75a9262d039c","530e5965049e75a9262d03a0","530e5965049e75a9262d03bb","530e5965049e75a9262d03d5","530e5966049e75a9262d0414","530e5966049e75a9262d041b","530e5966049e75a9262d0421","530e5966049e75a9262d0446","530e5967049e75a9262d04e6","530e5967049e75a9262d0543","530e5968049e75a9262d0628"],"subject":"homeroom/advisory","teacher":"50b4d690ad221ab95f1c6c39","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b92"},"uri":"/v1.1/sections/530e597a049e75a9262d0b92"},{"data":{"course_name":"Class
2301
2301
  803, Homeroom","course_number":"803","created":"2014-02-26T21:15:38.619Z","district":"4fd43cc56d11340000000005","grade":"8","last_modified":"2014-02-26T21:15:38.622Z","name":"Class
2302
2302
  803, Homeroom - 803 - C. Daniel (Section 3)","period":"0","school":"530e595026403103360ff9ff","sis_id":"743","students":["530e5960049e75a9262cff22","530e5960049e75a9262cff79","530e5960049e75a9262cffa4","530e5961049e75a9262cffec","530e5961049e75a9262d000e","530e5961049e75a9262d0061","530e5962049e75a9262d0108","530e5962049e75a9262d013d","530e5962049e75a9262d0148","530e5962049e75a9262d017c","530e5963049e75a9262d01e4","530e5963049e75a9262d022e","530e5963049e75a9262d0254","530e5965049e75a9262d0356","530e5965049e75a9262d038c","530e5965049e75a9262d03ea","530e5966049e75a9262d0429","530e5966049e75a9262d049c","530e5967049e75a9262d04eb","530e5967049e75a9262d04fd","530e5967049e75a9262d05aa","530e5968049e75a9262d05ca","530e5968049e75a9262d0619","530e5968049e75a9262d061a","530e5968049e75a9262d061b","530e5968049e75a9262d0629"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112be4","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b93"},"uri":"/v1.1/sections/530e597a049e75a9262d0b93"},{"data":{"course_name":"Class
@@ -2315,7 +2315,7 @@ http_interactions:
2315
2315
  - 201 - C. Bashirian (Section 1)","period":"6","school":"530e595026403103360ff9fd","sis_id":"750","students":["530e5960049e75a9262cff26","530e5960049e75a9262cff39","530e5960049e75a9262cff48","530e5960049e75a9262cff7b","530e5960049e75a9262cff96","530e5961049e75a9262d0082","530e5962049e75a9262d00b9","530e5963049e75a9262d0180","530e5963049e75a9262d01cc","530e5963049e75a9262d0202","530e5964049e75a9262d0262","530e5964049e75a9262d026c","530e5964049e75a9262d028e","530e5965049e75a9262d03e8","530e5966049e75a9262d03f5","530e5966049e75a9262d043c","530e5966049e75a9262d0455","530e5966049e75a9262d04ba","530e5966049e75a9262d04cc","530e5967049e75a9262d0586","530e5967049e75a9262d05c0","530e5968049e75a9262d05e8","530e5968049e75a9262d05f7","530e5968049e75a9262d0603","530e5968049e75a9262d0608"],"subject":"math","teacher":"530e5955d50c310f36112bfc","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b9a"},"uri":"/v1.1/sections/530e597a049e75a9262d0b9a"},{"data":{"course_name":"Geometry","course_number":"201","created":"2014-02-26T21:15:38.652Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:38.654Z","name":"Geometry
2316
2316
  - 201 - C. Bashirian (Section 2)","period":"6","school":"530e595026403103360ff9fd","sis_id":"751","students":["530e5960049e75a9262cff4f","530e5961049e75a9262d0020","530e5961049e75a9262d0027","530e5962049e75a9262d0102","530e5962049e75a9262d012b","530e5962049e75a9262d0156","530e5963049e75a9262d0207","530e5964049e75a9262d0297","530e5964049e75a9262d0302","530e5965049e75a9262d0381","530e5965049e75a9262d039e","530e5966049e75a9262d040c","530e5966049e75a9262d04b4","530e5967049e75a9262d0577","530e5967049e75a9262d058b","530e5967049e75a9262d059e","530e5967049e75a9262d05b3","530e5967049e75a9262d05b9","530e5968049e75a9262d05d5","530e5968049e75a9262d05fc","530e5968049e75a9262d060e","530e5968049e75a9262d0617","530e5968049e75a9262d061f","530e5968049e75a9262d0645","530e5968049e75a9262d0647"],"subject":"math","teacher":"530e5955d50c310f36112bfc","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b9b"},"uri":"/v1.1/sections/530e597a049e75a9262d0b9b"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b91"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0b92"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b9b"}]}'
2317
2317
  http_version:
2318
- recorded_at: Mon, 08 Sep 2014 21:31:08 GMT
2318
+ recorded_at: Tue, 09 Sep 2014 21:48:24 GMT
2319
2319
  - request:
2320
2320
  method: get
2321
2321
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b9b
@@ -2324,7 +2324,7 @@ http_interactions:
2324
2324
  string: ''
2325
2325
  headers:
2326
2326
  Accept:
2327
- - ! '*/*; q=0.5, application/xml'
2327
+ - "*/*; q=0.5, application/xml"
2328
2328
  Accept-Encoding:
2329
2329
  - gzip, deflate
2330
2330
  User-Agent:
@@ -2339,13 +2339,13 @@ http_interactions:
2339
2339
  Access-Control-Allow-Methods:
2340
2340
  - GET,PATCH,POST,DELETE
2341
2341
  Access-Control-Allow-Origin:
2342
- - ! '*'
2342
+ - "*"
2343
2343
  Content-Type:
2344
2344
  - application/json; charset=utf-8
2345
2345
  Date:
2346
- - Mon, 08 Sep 2014 21:31:08 GMT
2346
+ - Tue, 09 Sep 2014 21:48:24 GMT
2347
2347
  Etag:
2348
- - ! '"-2017334850"'
2348
+ - '"-2017334850"'
2349
2349
  Server:
2350
2350
  - nginx/1.4.7
2351
2351
  X-Powered-By:
@@ -2355,8 +2355,8 @@ http_interactions:
2355
2355
  Connection:
2356
2356
  - keep-alive
2357
2357
  body:
2358
- encoding: US-ASCII
2359
- string: ! '{"data":[{"data":{"course_name":"Geometry","course_number":"201","created":"2014-02-26T21:15:38.656Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:38.658Z","name":"Geometry
2358
+ encoding: UTF-8
2359
+ string: '{"data":[{"data":{"course_name":"Geometry","course_number":"201","created":"2014-02-26T21:15:38.656Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:38.658Z","name":"Geometry
2360
2360
  - 201 - C. Bashirian (Section 3)","period":"6","school":"530e595026403103360ff9fd","sis_id":"752","students":["530e5960049e75a9262cff1f","530e5960049e75a9262cff95","530e5961049e75a9262d0035","530e5961049e75a9262d0037","530e5961049e75a9262d004e","530e5961049e75a9262d0056","530e5961049e75a9262d008d","530e5962049e75a9262d00b5","530e5962049e75a9262d00e3","530e5962049e75a9262d00f4","530e5962049e75a9262d0133","530e5963049e75a9262d017f","530e5963049e75a9262d01f5","530e5963049e75a9262d0253","530e5964049e75a9262d0282","530e5964049e75a9262d0288","530e5964049e75a9262d02aa","530e5964049e75a9262d0304","530e5965049e75a9262d0383","530e5965049e75a9262d03cf","530e5965049e75a9262d03d2","530e5966049e75a9262d041c","530e5967049e75a9262d0503","530e5967049e75a9262d0594","530e5967049e75a9262d05bf"],"subject":"math","teacher":"530e5955d50c310f36112bfc","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b9c"},"uri":"/v1.1/sections/530e597a049e75a9262d0b9c"},{"data":{"course_name":"Geometry,
2361
2361
  Honors","course_number":"202","created":"2014-02-26T21:15:38.659Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:38.662Z","name":"Geometry,
2362
2362
  Honors - 202 - D. Runte (Section 4)","period":"6","school":"530e595026403103360ff9fd","sis_id":"753","students":["530e5960049e75a9262cff21","530e5961049e75a9262cffd9","530e5961049e75a9262cffe0","530e5961049e75a9262d0010","530e5961049e75a9262d0080","530e5962049e75a9262d00a5","530e5962049e75a9262d00b6","530e5962049e75a9262d012e","530e5962049e75a9262d0158","530e5962049e75a9262d0172","530e5963049e75a9262d01b7","530e5963049e75a9262d01ff","530e5963049e75a9262d0240","530e5964049e75a9262d0286","530e5964049e75a9262d0300","530e5965049e75a9262d031b","530e5965049e75a9262d03b6","530e5966049e75a9262d0418","530e5966049e75a9262d0475","530e5967049e75a9262d0544","530e5967049e75a9262d0549","530e5967049e75a9262d0596","530e5968049e75a9262d05e9","530e5968049e75a9262d062f","530e5968049e75a9262d0632"],"subject":"math","teacher":"530e5955d50c310f36112bcd","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b9d"},"uri":"/v1.1/sections/530e597a049e75a9262d0b9d"},{"data":{"course_name":"Mathematics
@@ -2376,7 +2376,7 @@ http_interactions:
2376
2376
  1 Math, Class 102","course_number":"102","created":"2014-02-26T21:15:38.691Z","district":"4fd43cc56d11340000000005","grade":"1","last_modified":"2014-02-26T21:15:38.692Z","name":"Grade
2377
2377
  1 Math, Class 102 - 102 - E. Harris","period":"1","school":"530e595026403103360ff9fe","sis_id":"761","students":["530e5960049e75a9262cff9b","530e5961049e75a9262d001e","530e5961049e75a9262d004a","530e5961049e75a9262d008c","530e5962049e75a9262d00d6","530e5962049e75a9262d0112","530e5962049e75a9262d011d","530e5963049e75a9262d025c","530e5964049e75a9262d02af","530e5964049e75a9262d030c","530e5965049e75a9262d03be","530e5965049e75a9262d03ed","530e5966049e75a9262d0493","530e5966049e75a9262d049e","530e5967049e75a9262d04fb","530e5967049e75a9262d0512","530e5967049e75a9262d054d","530e5967049e75a9262d05b6","530e5968049e75a9262d05c6","530e5968049e75a9262d05d3","530e5968049e75a9262d05ed"],"subject":"math","teacher":"530e5955d50c310f36112bd5","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0ba5"},"uri":"/v1.1/sections/530e597a049e75a9262d0ba5"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b9b"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0b9c"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0ba5"}]}'
2378
2378
  http_version:
2379
- recorded_at: Mon, 08 Sep 2014 21:31:08 GMT
2379
+ recorded_at: Tue, 09 Sep 2014 21:48:24 GMT
2380
2380
  - request:
2381
2381
  method: get
2382
2382
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0ba5
@@ -2385,7 +2385,7 @@ http_interactions:
2385
2385
  string: ''
2386
2386
  headers:
2387
2387
  Accept:
2388
- - ! '*/*; q=0.5, application/xml'
2388
+ - "*/*; q=0.5, application/xml"
2389
2389
  Accept-Encoding:
2390
2390
  - gzip, deflate
2391
2391
  User-Agent:
@@ -2400,13 +2400,13 @@ http_interactions:
2400
2400
  Access-Control-Allow-Methods:
2401
2401
  - GET,PATCH,POST,DELETE
2402
2402
  Access-Control-Allow-Origin:
2403
- - ! '*'
2403
+ - "*"
2404
2404
  Content-Type:
2405
2405
  - application/json; charset=utf-8
2406
2406
  Date:
2407
- - Mon, 08 Sep 2014 21:31:08 GMT
2407
+ - Tue, 09 Sep 2014 21:48:24 GMT
2408
2408
  Etag:
2409
- - ! '"-1868062864"'
2409
+ - '"-1868062864"'
2410
2410
  Server:
2411
2411
  - nginx/1.4.7
2412
2412
  X-Powered-By:
@@ -2416,8 +2416,8 @@ http_interactions:
2416
2416
  Connection:
2417
2417
  - keep-alive
2418
2418
  body:
2419
- encoding: US-ASCII
2420
- string: ! '{"data":[{"data":{"course_name":"College Statistics","course_number":"402","created":"2014-02-26T21:15:38.703Z","district":"4fd43cc56d11340000000005","grade":"12","last_modified":"2014-02-26T21:15:38.705Z","name":"College
2419
+ encoding: UTF-8
2420
+ string: '{"data":[{"data":{"course_name":"College Statistics","course_number":"402","created":"2014-02-26T21:15:38.703Z","district":"4fd43cc56d11340000000005","grade":"12","last_modified":"2014-02-26T21:15:38.705Z","name":"College
2421
2421
  Statistics - 402 - C. Wolff (Section 1)","period":"4","school":"530e595026403103360ff9fd","sis_id":"762","students":["530e5960049e75a9262cff67","530e5960049e75a9262cff6a","530e5961049e75a9262d002b","530e5962049e75a9262d00be","530e5962049e75a9262d015b","530e5963049e75a9262d0197","530e5963049e75a9262d01a6","530e5963049e75a9262d0227","530e5964049e75a9262d0278","530e5964049e75a9262d027f","530e5964049e75a9262d02fe","530e5965049e75a9262d0332","530e5965049e75a9262d0363","530e5965049e75a9262d03cd","530e5966049e75a9262d040f","530e5966049e75a9262d0447","530e5966049e75a9262d04b8","530e5967049e75a9262d04f7","530e5967049e75a9262d0563","530e5967049e75a9262d058e","530e5967049e75a9262d05b2","530e5968049e75a9262d05c5","530e5968049e75a9262d05c8","530e5968049e75a9262d05ec","530e5968049e75a9262d0648"],"subject":"math","teacher":"50c4a79299ad702e0228e957","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0ba6"},"uri":"/v1.1/sections/530e597a049e75a9262d0ba6"},{"data":{"course_name":"Calculus
2422
2422
  II","course_number":"401","created":"2014-02-26T21:15:38.708Z","district":"4fd43cc56d11340000000005","grade":"12","last_modified":"2014-02-26T21:15:38.710Z","name":"Calculus
2423
2423
  II - 401 - R. Will (Section 2)","period":"4","school":"530e595026403103360ff9fd","sis_id":"763","students":["530e5960049e75a9262cffa6","530e5962049e75a9262d00f7","530e5962049e75a9262d015d","530e5963049e75a9262d01d6","530e5963049e75a9262d020b","530e5963049e75a9262d021d","530e5964049e75a9262d02bc","530e5964049e75a9262d02d4","530e5964049e75a9262d02ee","530e5965049e75a9262d0326","530e5965049e75a9262d0372","530e5965049e75a9262d038b","530e5966049e75a9262d03f6","530e5966049e75a9262d043e","530e5966049e75a9262d048b","530e5966049e75a9262d04a0","530e5967049e75a9262d04fa","530e5967049e75a9262d0569","530e5967049e75a9262d0585","530e5967049e75a9262d05bc","530e5967049e75a9262d05bd","530e5968049e75a9262d05dc","530e5968049e75a9262d0602","530e5968049e75a9262d0613","530e5968049e75a9262d063b"],"subject":"math","teacher":"530e5955d50c310f36112bfd","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0ba7"},"uri":"/v1.1/sections/530e597a049e75a9262d0ba7"},{"data":{"course_name":"AP
@@ -2438,7 +2438,7 @@ http_interactions:
2438
2438
  3 Math, Class 301","course_number":"301","created":"2014-02-26T21:15:38.738Z","district":"4fd43cc56d11340000000005","grade":"3","last_modified":"2014-08-28T18:01:01.461Z","name":"Grade
2439
2439
  3 Math, Class 301 - 301 - S. Block","period":"5","school":"530e595026403103360ff9fe","sis_id":"771","students":["530e5962049e75a9262d00fb","530e5962049e75a9262d015a","530e5963049e75a9262d0219","530e5964049e75a9262d0270","530e5964049e75a9262d02cf","530e5964049e75a9262d02fc","530e5965049e75a9262d0341","530e5965049e75a9262d0343","530e5965049e75a9262d038d","530e5965049e75a9262d03a7","530e5966049e75a9262d0415","530e5966049e75a9262d0439","530e5966049e75a9262d0458","530e5966049e75a9262d04d5","530e5967049e75a9262d04f4","530e5967049e75a9262d051f"],"subject":"math","teacher":"530e5955d50c310f36112c15","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0baf"},"uri":"/v1.1/sections/530e597a049e75a9262d0baf"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0ba5"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0ba6"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0baf"}]}'
2440
2440
  http_version:
2441
- recorded_at: Mon, 08 Sep 2014 21:31:08 GMT
2441
+ recorded_at: Tue, 09 Sep 2014 21:48:24 GMT
2442
2442
  - request:
2443
2443
  method: get
2444
2444
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0baf
@@ -2447,7 +2447,7 @@ http_interactions:
2447
2447
  string: ''
2448
2448
  headers:
2449
2449
  Accept:
2450
- - ! '*/*; q=0.5, application/xml'
2450
+ - "*/*; q=0.5, application/xml"
2451
2451
  Accept-Encoding:
2452
2452
  - gzip, deflate
2453
2453
  User-Agent:
@@ -2462,13 +2462,13 @@ http_interactions:
2462
2462
  Access-Control-Allow-Methods:
2463
2463
  - GET,PATCH,POST,DELETE
2464
2464
  Access-Control-Allow-Origin:
2465
- - ! '*'
2465
+ - "*"
2466
2466
  Content-Type:
2467
2467
  - application/json; charset=utf-8
2468
2468
  Date:
2469
- - Mon, 08 Sep 2014 21:31:09 GMT
2469
+ - Tue, 09 Sep 2014 21:48:25 GMT
2470
2470
  Etag:
2471
- - ! '"1985239116"'
2471
+ - '"1985239116"'
2472
2472
  Server:
2473
2473
  - nginx/1.4.7
2474
2474
  X-Powered-By:
@@ -2478,8 +2478,8 @@ http_interactions:
2478
2478
  Connection:
2479
2479
  - keep-alive
2480
2480
  body:
2481
- encoding: US-ASCII
2482
- string: ! '{"data":[{"data":{"course_name":"Grade 3 Math, Class 302","course_number":"302","created":"2014-02-26T21:15:38.744Z","district":"4fd43cc56d11340000000005","grade":"3","last_modified":"2014-02-26T21:15:38.747Z","name":"Grade
2481
+ encoding: UTF-8
2482
+ string: '{"data":[{"data":{"course_name":"Grade 3 Math, Class 302","course_number":"302","created":"2014-02-26T21:15:38.744Z","district":"4fd43cc56d11340000000005","grade":"3","last_modified":"2014-02-26T21:15:38.747Z","name":"Grade
2483
2483
  3 Math, Class 302 - 302 - L. Abernathy","period":"5","school":"530e595026403103360ff9fe","sis_id":"772","students":["530e5960049e75a9262cff28","530e5960049e75a9262cff78","530e5961049e75a9262d003c","530e5961049e75a9262d0084","530e5961049e75a9262d0088","530e5961049e75a9262d0091","530e5963049e75a9262d01d7","530e5963049e75a9262d0230","530e5964049e75a9262d0312","530e5966049e75a9262d0401","530e5966049e75a9262d0412","530e5966049e75a9262d0469","530e5967049e75a9262d04fc","530e5967049e75a9262d05ad","530e5968049e75a9262d05e0","530e5968049e75a9262d05e7","530e5968049e75a9262d05f9","530e5968049e75a9262d05fe","530e5968049e75a9262d0601","530e5968049e75a9262d0610","530e5968049e75a9262d0644"],"subject":"math","teacher":"530e5955d50c310f36112bcc","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0bb0"},"uri":"/v1.1/sections/530e597a049e75a9262d0bb0"},{"data":{"course_name":"Grade
2484
2484
  3 Math, Class 303","course_number":"303","created":"2014-02-26T21:15:38.748Z","district":"4fd43cc56d11340000000005","grade":"3","last_modified":"2014-02-26T21:15:38.751Z","name":"Grade
2485
2485
  3 Math, Class 303 - 303 - L. Spinka","period":"5","school":"530e595026403103360ff9fe","sis_id":"773","students":["530e5960049e75a9262cff3e","530e5961049e75a9262d0067","530e5962049e75a9262d00a2","530e5962049e75a9262d00b0","530e5962049e75a9262d00f0","530e5962049e75a9262d0117","530e5962049e75a9262d0131","530e5963049e75a9262d0188","530e5963049e75a9262d01c3","530e5964049e75a9262d02b0","530e5964049e75a9262d02d7","530e5964049e75a9262d02f1","530e5965049e75a9262d03c1","530e5965049e75a9262d03c4","530e5966049e75a9262d0445","530e5967049e75a9262d0541","530e5967049e75a9262d05c2","530e5968049e75a9262d05fd","530e5968049e75a9262d0624","530e5968049e75a9262d063d","530e5968049e75a9262d063e"],"subject":"math","teacher":"509fbd7ec474fab64a8e9d53","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0bb1"},"uri":"/v1.1/sections/530e597a049e75a9262d0bb1"},{"data":{"course_name":"Grade
@@ -2500,7 +2500,7 @@ http_interactions:
2500
2500
  Class 602","course_number":"602","created":"2014-02-26T21:15:38.782Z","district":"4fd43cc56d11340000000005","grade":"6","last_modified":"2014-02-26T21:15:38.785Z","name":"Mathematics,
2501
2501
  Class 602 - 602 - B. Goldner","period":"3","school":"530e595026403103360ff9ff","sis_id":"781","students":["530e5960049e75a9262cff4e","530e5961049e75a9262cffed","530e5961049e75a9262cfff5","530e5961049e75a9262d0009","530e5961049e75a9262d000f","530e5961049e75a9262d005e","530e5961049e75a9262d0083","530e5962049e75a9262d0098","530e5962049e75a9262d00a0","530e5962049e75a9262d00d4","530e5962049e75a9262d010b","530e5963049e75a9262d0220","530e5964049e75a9262d02b3","530e5964049e75a9262d02b8","530e5964049e75a9262d02f6","530e5965049e75a9262d034c","530e5965049e75a9262d0389","530e5965049e75a9262d03c5","530e5966049e75a9262d041e","530e5966049e75a9262d0494","530e5967049e75a9262d05ae","530e5967049e75a9262d05c4","530e5968049e75a9262d05d6","530e5968049e75a9262d05f3","530e5968049e75a9262d05ff","530e5968049e75a9262d060b"],"subject":"math","teacher":"530e5955d50c310f36112be0","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0bb9"},"uri":"/v1.1/sections/530e597a049e75a9262d0bb9"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0baf"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0bb0"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0bb9"}]}'
2502
2502
  http_version:
2503
- recorded_at: Mon, 08 Sep 2014 21:31:09 GMT
2503
+ recorded_at: Tue, 09 Sep 2014 21:48:24 GMT
2504
2504
  - request:
2505
2505
  method: get
2506
2506
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0bb9
@@ -2509,7 +2509,7 @@ http_interactions:
2509
2509
  string: ''
2510
2510
  headers:
2511
2511
  Accept:
2512
- - ! '*/*; q=0.5, application/xml'
2512
+ - "*/*; q=0.5, application/xml"
2513
2513
  Accept-Encoding:
2514
2514
  - gzip, deflate
2515
2515
  User-Agent:
@@ -2524,13 +2524,13 @@ http_interactions:
2524
2524
  Access-Control-Allow-Methods:
2525
2525
  - GET,PATCH,POST,DELETE
2526
2526
  Access-Control-Allow-Origin:
2527
- - ! '*'
2527
+ - "*"
2528
2528
  Content-Type:
2529
2529
  - application/json; charset=utf-8
2530
2530
  Date:
2531
- - Mon, 08 Sep 2014 21:31:09 GMT
2531
+ - Tue, 09 Sep 2014 21:48:25 GMT
2532
2532
  Etag:
2533
- - ! '"770347773"'
2533
+ - '"770347773"'
2534
2534
  Server:
2535
2535
  - nginx/1.4.7
2536
2536
  X-Powered-By:
@@ -2540,8 +2540,8 @@ http_interactions:
2540
2540
  Connection:
2541
2541
  - keep-alive
2542
2542
  body:
2543
- encoding: US-ASCII
2544
- string: ! '{"data":[{"data":{"course_name":"Mathematics, Class 603","course_number":"603","created":"2014-02-26T21:15:38.786Z","district":"4fd43cc56d11340000000005","grade":"6","last_modified":"2014-04-03T20:59:10.945Z","name":"Mathematics,
2543
+ encoding: UTF-8
2544
+ string: '{"data":[{"data":{"course_name":"Mathematics, Class 603","course_number":"603","created":"2014-02-26T21:15:38.786Z","district":"4fd43cc56d11340000000005","grade":"6","last_modified":"2014-04-03T20:59:10.945Z","name":"Mathematics,
2545
2545
  Class 603 - 603 - B. Goldner","period":"3","school":"530e595026403103360ff9ff","sis_id":"782","students":["530e5960049e75a9262cff64","530e5961049e75a9262cffd7","530e5961049e75a9262cffe6","530e5961049e75a9262cffe7","530e5962049e75a9262d00b1","530e5962049e75a9262d00da","530e5962049e75a9262d00e0","530e5962049e75a9262d0132","530e5962049e75a9262d013b","530e5962049e75a9262d0168","530e5965049e75a9262d03b7","530e5966049e75a9262d03fa","530e5966049e75a9262d0433","530e5966049e75a9262d0497","530e5966049e75a9262d04c1","530e5967049e75a9262d04df","530e5967049e75a9262d051d","530e5967049e75a9262d058f","530e5967049e75a9262d05b8","530e5968049e75a9262d05cf","530e5968049e75a9262d0626","530e5968049e75a9262d062d","530e5968049e75a9262d062e","530e5968049e75a9262d0641","530e5968049e75a9262d064a"],"subject":"math","teacher":"530e5955d50c310f36112be0","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0bba"},"uri":"/v1.1/sections/530e597a049e75a9262d0bba"},{"data":{"course_name":"Mathematics,
2546
2546
  Class 701","course_number":"701","created":"2014-02-26T21:15:38.790Z","district":"4fd43cc56d11340000000005","grade":"7","last_modified":"2014-02-26T21:15:38.792Z","name":"Mathematics,
2547
2547
  Class 701 - 701 - S. Connelly","period":"5","school":"530e595026403103360ff9ff","sis_id":"783","students":["530e5961049e75a9262cffcb","530e5961049e75a9262cffe2","530e5961049e75a9262cffeb","530e5961049e75a9262cfffd","530e5961049e75a9262d0023","530e5961049e75a9262d0060","530e5961049e75a9262d008b","530e5962049e75a9262d00e4","530e5962049e75a9262d0157","530e5963049e75a9262d01a3","530e5963049e75a9262d01a8","530e5963049e75a9262d01f2","530e5963049e75a9262d0234","530e5964049e75a9262d0314","530e5965049e75a9262d0323","530e5965049e75a9262d03bc","530e5965049e75a9262d03d8","530e5965049e75a9262d03dd","530e5966049e75a9262d0417","530e5966049e75a9262d041f","530e5967049e75a9262d04e9","530e5967049e75a9262d056d","530e5967049e75a9262d059b","530e5967049e75a9262d05b0","530e5968049e75a9262d05ee","530e5968049e75a9262d060d"],"subject":"math","teacher":"530e5955d50c310f36112be1","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0bbb"},"uri":"/v1.1/sections/530e597a049e75a9262d0bbb"},{"data":{"course_name":"Mathematics,
@@ -2562,7 +2562,7 @@ http_interactions:
2562
2562
  Algebra","course_number":"101","created":"2014-02-26T21:15:38.823Z","district":"4fd43cc56d11340000000005","grade":"9","last_modified":"2014-02-26T21:15:38.824Z","name":"Integrated
2563
2563
  Algebra - 101 - G. Christiansen (Section 3)","period":"4","school":"530e595026403103360ff9fd","sis_id":"791","students":["530e5960049e75a9262cff1e","530e5960049e75a9262cff42","530e5960049e75a9262cff4b","530e5961049e75a9262d007d","530e5961049e75a9262d0089","530e5961049e75a9262d008f","530e5962049e75a9262d00b7","530e5962049e75a9262d00e6","530e5962049e75a9262d00e8","530e5962049e75a9262d015f","530e5962049e75a9262d0174","530e5963049e75a9262d0181","530e5963049e75a9262d01a2","530e5963049e75a9262d021b","530e5964049e75a9262d02b6","530e5965049e75a9262d0325","530e5965049e75a9262d038f","530e5967049e75a9262d0501","530e5967049e75a9262d0575","530e5967049e75a9262d05a8","530e5967049e75a9262d05be","530e5968049e75a9262d05e2","530e5968049e75a9262d0605","530e5968049e75a9262d063c","530e5968049e75a9262d0640"],"subject":"math","teacher":"530e5955d50c310f36112bfb","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0bc3"},"uri":"/v1.1/sections/530e597a049e75a9262d0bc3"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0bb9"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0bba"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0bc3"}]}'
2564
2564
  http_version:
2565
- recorded_at: Mon, 08 Sep 2014 21:31:09 GMT
2565
+ recorded_at: Tue, 09 Sep 2014 21:48:25 GMT
2566
2566
  - request:
2567
2567
  method: get
2568
2568
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0bc3
@@ -2571,7 +2571,7 @@ http_interactions:
2571
2571
  string: ''
2572
2572
  headers:
2573
2573
  Accept:
2574
- - ! '*/*; q=0.5, application/xml'
2574
+ - "*/*; q=0.5, application/xml"
2575
2575
  Accept-Encoding:
2576
2576
  - gzip, deflate
2577
2577
  User-Agent:
@@ -2586,13 +2586,13 @@ http_interactions:
2586
2586
  Access-Control-Allow-Methods:
2587
2587
  - GET,PATCH,POST,DELETE
2588
2588
  Access-Control-Allow-Origin:
2589
- - ! '*'
2589
+ - "*"
2590
2590
  Content-Type:
2591
2591
  - application/json; charset=utf-8
2592
2592
  Date:
2593
- - Mon, 08 Sep 2014 21:31:09 GMT
2593
+ - Tue, 09 Sep 2014 21:48:25 GMT
2594
2594
  Etag:
2595
- - ! '"-1848888890"'
2595
+ - '"-1848888890"'
2596
2596
  Server:
2597
2597
  - nginx/1.4.7
2598
2598
  X-Powered-By:
@@ -2602,8 +2602,8 @@ http_interactions:
2602
2602
  Connection:
2603
2603
  - keep-alive
2604
2604
  body:
2605
- encoding: US-ASCII
2606
- string: ! '{"data":[{"data":{"course_name":"Integrated Algebra, Honors","course_number":"102","created":"2014-02-26T21:15:38.827Z","district":"4fd43cc56d11340000000005","grade":"9","last_modified":"2014-02-26T21:15:38.829Z","name":"Integrated
2605
+ encoding: UTF-8
2606
+ string: '{"data":[{"data":{"course_name":"Integrated Algebra, Honors","course_number":"102","created":"2014-02-26T21:15:38.827Z","district":"4fd43cc56d11340000000005","grade":"9","last_modified":"2014-02-26T21:15:38.829Z","name":"Integrated
2607
2607
  Algebra, Honors - 102 - D. Runte","period":"4","school":"530e595026403103360ff9fd","sis_id":"792","students":["530e5960049e75a9262cff3c","530e5960049e75a9262cff58","530e5960049e75a9262cffa2","530e5961049e75a9262d000c","530e5961049e75a9262d0034","530e5962049e75a9262d00ba","530e5963049e75a9262d01f8","530e5963049e75a9262d020f","530e5964049e75a9262d0299","530e5964049e75a9262d02d3","530e5964049e75a9262d02f3","530e5965049e75a9262d033c","530e5965049e75a9262d036c","530e5965049e75a9262d038e","530e5965049e75a9262d03a2","530e5966049e75a9262d03f8","530e5966049e75a9262d03fc","530e5966049e75a9262d042b","530e5966049e75a9262d045e","530e5966049e75a9262d046a","530e5966049e75a9262d0471","530e5966049e75a9262d0496","530e5967049e75a9262d0590","530e5967049e75a9262d05b5","530e5968049e75a9262d0614"],"subject":"math","teacher":"530e5955d50c310f36112bcd","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0bc4"},"uri":"/v1.1/sections/530e597a049e75a9262d0bc4"},{"data":{"course_name":"Mathematics
2608
2608
  Remediation, Grade 9","course_number":"105","created":"2014-02-26T21:15:38.830Z","district":"4fd43cc56d11340000000005","grade":"9","last_modified":"2014-02-26T21:15:38.833Z","name":"Mathematics
2609
2609
  Remediation, Grade 9 - 105 - D. Runte","period":"9","school":"530e595026403103360ff9fd","sis_id":"793","students":["530e5960049e75a9262cff42","530e5960049e75a9262cff5b","530e5961049e75a9262cffcd","530e5961049e75a9262d001a","530e5962049e75a9262d00b7","530e5962049e75a9262d0127","530e5963049e75a9262d01db","530e5963049e75a9262d01f8","530e5963049e75a9262d0211","530e5963049e75a9262d021b","530e5964049e75a9262d0284","530e5964049e75a9262d02f3","530e5965049e75a9262d033c","530e5965049e75a9262d03a2","530e5966049e75a9262d0468","530e5966049e75a9262d04a5","530e5968049e75a9262d05e3","530e5968049e75a9262d0640"],"subject":"math","teacher":"530e5955d50c310f36112bcd","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0bc5"},"uri":"/v1.1/sections/530e597a049e75a9262d0bc5"},{"data":{"course_name":"Intermediate
@@ -2631,7 +2631,7 @@ http_interactions:
2631
2631
  Arts, Class 702 - 702 - V. Konopelski","period":"9","school":"530e595026403103360ff9ff","sis_id":"801","students":["530e5960049e75a9262cff44","530e5960049e75a9262cff9a","530e5961049e75a9262cffc0","530e5961049e75a9262cffe3","530e5961049e75a9262cffea","530e5961049e75a9262d0015","530e5961049e75a9262d006e","530e5962049e75a9262d00b2","530e5962049e75a9262d010c","530e5962049e75a9262d0164","530e5963049e75a9262d0206","530e5963049e75a9262d0233","530e5964049e75a9262d0269","530e5964049e75a9262d029f","530e5964049e75a9262d02e9","530e5964049e75a9262d02fb","530e5965049e75a9262d0347","530e5965049e75a9262d036e","530e5965049e75a9262d03aa","530e5965049e75a9262d03df","530e5966049e75a9262d04bc","530e5966049e75a9262d04d9","530e5966049e75a9262d04db","530e5967049e75a9262d0523","530e5967049e75a9262d0536","530e5968049e75a9262d0620"],"subject":"arts
2632
2632
  and music","teacher":"530e5955d50c310f36112bed","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0bcd"},"uri":"/v1.1/sections/530e597a049e75a9262d0bcd"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0bc3"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0bc4"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0bcd"}]}'
2633
2633
  http_version:
2634
- recorded_at: Mon, 08 Sep 2014 21:31:09 GMT
2634
+ recorded_at: Tue, 09 Sep 2014 21:48:25 GMT
2635
2635
  - request:
2636
2636
  method: get
2637
2637
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0bcd
@@ -2640,7 +2640,7 @@ http_interactions:
2640
2640
  string: ''
2641
2641
  headers:
2642
2642
  Accept:
2643
- - ! '*/*; q=0.5, application/xml'
2643
+ - "*/*; q=0.5, application/xml"
2644
2644
  Accept-Encoding:
2645
2645
  - gzip, deflate
2646
2646
  User-Agent:
@@ -2655,13 +2655,13 @@ http_interactions:
2655
2655
  Access-Control-Allow-Methods:
2656
2656
  - GET,PATCH,POST,DELETE
2657
2657
  Access-Control-Allow-Origin:
2658
- - ! '*'
2658
+ - "*"
2659
2659
  Content-Type:
2660
2660
  - application/json; charset=utf-8
2661
2661
  Date:
2662
- - Mon, 08 Sep 2014 21:31:09 GMT
2662
+ - Tue, 09 Sep 2014 21:48:25 GMT
2663
2663
  Etag:
2664
- - ! '"-657078363"'
2664
+ - '"-657078363"'
2665
2665
  Server:
2666
2666
  - nginx/1.4.7
2667
2667
  X-Powered-By:
@@ -2671,8 +2671,8 @@ http_interactions:
2671
2671
  Connection:
2672
2672
  - keep-alive
2673
2673
  body:
2674
- encoding: US-ASCII
2675
- string: ! '{"data":[{"data":{"course_name":"Media Arts, Class 703","course_number":"703","created":"2014-02-26T21:15:38.867Z","district":"4fd43cc56d11340000000005","grade":"7","last_modified":"2014-02-26T21:15:38.869Z","name":"Media
2674
+ encoding: UTF-8
2675
+ string: '{"data":[{"data":{"course_name":"Media Arts, Class 703","course_number":"703","created":"2014-02-26T21:15:38.867Z","district":"4fd43cc56d11340000000005","grade":"7","last_modified":"2014-02-26T21:15:38.869Z","name":"Media
2676
2676
  Arts, Class 703 - 703 - V. Konopelski","period":"9","school":"530e595026403103360ff9ff","sis_id":"802","students":["530e5960049e75a9262cff59","530e5960049e75a9262cff99","530e5961049e75a9262cffd5","530e5961049e75a9262d001c","530e5961049e75a9262d008a","530e5962049e75a9262d0144","530e5962049e75a9262d0155","530e5962049e75a9262d015e","530e5963049e75a9262d0200","530e5963049e75a9262d022d","530e5963049e75a9262d023a","530e5964049e75a9262d0275","530e5964049e75a9262d029b","530e5964049e75a9262d02c0","530e5964049e75a9262d02de","530e5965049e75a9262d034a","530e5965049e75a9262d0354","530e5965049e75a9262d03c7","530e5966049e75a9262d0419","530e5966049e75a9262d046d","530e5966049e75a9262d0489","530e5967049e75a9262d0560","530e5967049e75a9262d05b4","530e5967049e75a9262d05bb","530e5968049e75a9262d0621","530e5968049e75a9262d0637"],"subject":"arts
2677
2677
  and music","teacher":"530e5955d50c310f36112bed","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0bce"},"uri":"/v1.1/sections/530e597a049e75a9262d0bce"},{"data":{"course_name":"Introduction
2678
2678
  to Media Arts","course_number":"100","created":"2014-02-26T21:15:38.871Z","district":"4fd43cc56d11340000000005","grade":"9","last_modified":"2014-02-26T21:15:38.873Z","name":"Introduction
@@ -2702,7 +2702,7 @@ http_interactions:
2702
2702
  Production","course_number":"401","created":"2014-02-26T21:15:38.912Z","district":"4fd43cc56d11340000000005","grade":"12","last_modified":"2014-02-26T21:15:38.916Z","name":"Audio
2703
2703
  Production - 401 - J. Coulton (Section 1)","period":"8","school":"530e595026403103360ff9fd","sis_id":"811","students":["530e5960049e75a9262cffa6","530e5962049e75a9262d00be","530e5962049e75a9262d00ec","530e5962049e75a9262d00f7","530e5962049e75a9262d012c","530e5962049e75a9262d015d","530e5963049e75a9262d018b","530e5963049e75a9262d020d","530e5963049e75a9262d024a","530e5964049e75a9262d02ee","530e5965049e75a9262d0326","530e5965049e75a9262d038b","530e5966049e75a9262d040f","530e5966049e75a9262d0447","530e5966049e75a9262d04b8","530e5967049e75a9262d050c","530e5967049e75a9262d0585","530e5967049e75a9262d058e","530e5968049e75a9262d0613","530e5968049e75a9262d0648"],"subject":"other","teacher":"530e5955d50c310f36112c06","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0bd7"},"uri":"/v1.1/sections/530e597a049e75a9262d0bd7"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0bcd"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0bce"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0bd7"}]}'
2704
2704
  http_version:
2705
- recorded_at: Mon, 08 Sep 2014 21:31:09 GMT
2705
+ recorded_at: Tue, 09 Sep 2014 21:48:25 GMT
2706
2706
  - request:
2707
2707
  method: get
2708
2708
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0bd7
@@ -2711,7 +2711,7 @@ http_interactions:
2711
2711
  string: ''
2712
2712
  headers:
2713
2713
  Accept:
2714
- - ! '*/*; q=0.5, application/xml'
2714
+ - "*/*; q=0.5, application/xml"
2715
2715
  Accept-Encoding:
2716
2716
  - gzip, deflate
2717
2717
  User-Agent:
@@ -2726,13 +2726,13 @@ http_interactions:
2726
2726
  Access-Control-Allow-Methods:
2727
2727
  - GET,PATCH,POST,DELETE
2728
2728
  Access-Control-Allow-Origin:
2729
- - ! '*'
2729
+ - "*"
2730
2730
  Content-Type:
2731
2731
  - application/json; charset=utf-8
2732
2732
  Date:
2733
- - Mon, 08 Sep 2014 21:31:09 GMT
2733
+ - Tue, 09 Sep 2014 21:48:25 GMT
2734
2734
  Etag:
2735
- - ! '"931822657"'
2735
+ - '"931822657"'
2736
2736
  Server:
2737
2737
  - nginx/1.4.7
2738
2738
  X-Powered-By:
@@ -2742,8 +2742,8 @@ http_interactions:
2742
2742
  Connection:
2743
2743
  - keep-alive
2744
2744
  body:
2745
- encoding: US-ASCII
2746
- string: ! '{"data":[{"data":{"course_name":"Grade 1 Music, Class 103","course_number":"103","created":"2014-02-26T21:15:38.917Z","district":"4fd43cc56d11340000000005","grade":"1","last_modified":"2014-02-26T21:15:38.919Z","name":"Grade
2745
+ encoding: UTF-8
2746
+ string: '{"data":[{"data":{"course_name":"Grade 1 Music, Class 103","course_number":"103","created":"2014-02-26T21:15:38.917Z","district":"4fd43cc56d11340000000005","grade":"1","last_modified":"2014-02-26T21:15:38.919Z","name":"Grade
2747
2747
  1 Music, Class 103 - 103 - R. Prosacco","period":"4","school":"530e595026403103360ff9fe","sis_id":"812","students":["530e5960049e75a9262cff20","530e5960049e75a9262cff92","530e5960049e75a9262cff97","530e5961049e75a9262cffde","530e5961049e75a9262d007e","530e5962049e75a9262d0142","530e5962049e75a9262d014f","530e5963049e75a9262d01d9","530e5963049e75a9262d01da","530e5963049e75a9262d0225","530e5964049e75a9262d027c","530e5965049e75a9262d03b5","530e5965049e75a9262d03ba","530e5965049e75a9262d03bd","530e5968049e75a9262d05f2","530e5968049e75a9262d05f6","530e5968049e75a9262d0618","530e5968049e75a9262d0630","530e5968049e75a9262d0631","530e5968049e75a9262d0635","530e5968049e75a9262d0643"],"subject":"arts
2748
2748
  and music","teacher":"530e5955d50c310f36112bde","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0bd8"},"uri":"/v1.1/sections/530e597a049e75a9262d0bd8"},{"data":{"course_name":"Grade
2749
2749
  2 Music, Class 201","course_number":"201","created":"2014-02-26T21:15:38.920Z","district":"4fd43cc56d11340000000005","grade":"2","last_modified":"2014-02-26T21:15:38.922Z","name":"Grade
@@ -2774,7 +2774,7 @@ http_interactions:
2774
2774
  4 Music, Class 403 - 403 - E. Oberbrunner","period":"1","school":"530e595026403103360ff9fe","sis_id":"821","students":["530e5961049e75a9262d0087","530e5962049e75a9262d00bb","530e5962049e75a9262d00ea","530e5962049e75a9262d0107","530e5962049e75a9262d014d","530e5963049e75a9262d0193","530e5963049e75a9262d01b3","530e5963049e75a9262d01ce","530e5963049e75a9262d01de","530e5963049e75a9262d01fe","530e5964049e75a9262d028b","530e5964049e75a9262d02c9","530e5965049e75a9262d0329","530e5965049e75a9262d032c","530e5966049e75a9262d03f4","530e5966049e75a9262d04da","530e5967049e75a9262d04f9","530e5967049e75a9262d0505","530e5967049e75a9262d0509","530e5967049e75a9262d0567","530e5968049e75a9262d05ef"],"subject":"arts
2775
2775
  and music","teacher":"530e5955d50c310f36112bd0","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0be1"},"uri":"/v1.1/sections/530e597a049e75a9262d0be1"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0bd7"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0bd8"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0be1"}]}'
2776
2776
  http_version:
2777
- recorded_at: Mon, 08 Sep 2014 21:31:09 GMT
2777
+ recorded_at: Tue, 09 Sep 2014 21:48:25 GMT
2778
2778
  - request:
2779
2779
  method: get
2780
2780
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0be1
@@ -2783,7 +2783,7 @@ http_interactions:
2783
2783
  string: ''
2784
2784
  headers:
2785
2785
  Accept:
2786
- - ! '*/*; q=0.5, application/xml'
2786
+ - "*/*; q=0.5, application/xml"
2787
2787
  Accept-Encoding:
2788
2788
  - gzip, deflate
2789
2789
  User-Agent:
@@ -2798,13 +2798,13 @@ http_interactions:
2798
2798
  Access-Control-Allow-Methods:
2799
2799
  - GET,PATCH,POST,DELETE
2800
2800
  Access-Control-Allow-Origin:
2801
- - ! '*'
2801
+ - "*"
2802
2802
  Content-Type:
2803
2803
  - application/json; charset=utf-8
2804
2804
  Date:
2805
- - Mon, 08 Sep 2014 21:31:09 GMT
2805
+ - Tue, 09 Sep 2014 21:48:25 GMT
2806
2806
  Etag:
2807
- - ! '"-1471869131"'
2807
+ - '"-1471869131"'
2808
2808
  Server:
2809
2809
  - nginx/1.4.7
2810
2810
  X-Powered-By:
@@ -2814,8 +2814,8 @@ http_interactions:
2814
2814
  Connection:
2815
2815
  - keep-alive
2816
2816
  body:
2817
- encoding: US-ASCII
2818
- string: ! '{"data":[{"data":{"course_name":"Grade 5 Music, Class 501","course_number":"501","created":"2014-02-26T21:15:38.957Z","district":"4fd43cc56d11340000000005","grade":"5","last_modified":"2014-02-26T21:15:38.959Z","name":"Grade
2817
+ encoding: UTF-8
2818
+ string: '{"data":[{"data":{"course_name":"Grade 5 Music, Class 501","course_number":"501","created":"2014-02-26T21:15:38.957Z","district":"4fd43cc56d11340000000005","grade":"5","last_modified":"2014-02-26T21:15:38.959Z","name":"Grade
2819
2819
  5 Music, Class 501 - 501 - N. Bartoletti","period":"4","school":"530e595026403103360ff9fe","sis_id":"822","students":["530e5961049e75a9262cffc1","530e5961049e75a9262cffe8","530e5962049e75a9262d00cc","530e5963049e75a9262d01a9","530e5963049e75a9262d01aa","530e5963049e75a9262d01ac","530e5963049e75a9262d01c5","530e5963049e75a9262d022b","530e5964049e75a9262d02fa","530e5965049e75a9262d034e","530e5965049e75a9262d0392","530e5965049e75a9262d03c9","530e5966049e75a9262d04ca","530e5967049e75a9262d0538","530e5967049e75a9262d055d","530e5967049e75a9262d0562","530e5967049e75a9262d056b","530e5967049e75a9262d058a","530e5967049e75a9262d0598","530e5968049e75a9262d05cc"],"subject":"arts
2820
2820
  and music","teacher":"530e5955d50c310f36112bd2","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0be2"},"uri":"/v1.1/sections/530e597a049e75a9262d0be2"},{"data":{"course_name":"Grade
2821
2821
  5 Music, Class 502","course_number":"502","created":"2014-02-26T21:15:38.961Z","district":"4fd43cc56d11340000000005","grade":"5","last_modified":"2014-02-26T21:15:38.963Z","name":"Grade
@@ -2846,7 +2846,7 @@ http_interactions:
2846
2846
  Education, Group 12B - 402 - P. McCartney","period":"7","school":"530e595026403103360ff9fd","sis_id":"831","students":["530e5960049e75a9262cff52","530e5960049e75a9262cff54","530e5960049e75a9262cff6a","530e5960049e75a9262cffa6","530e5961049e75a9262cffaf","530e5961049e75a9262cffb7","530e5961049e75a9262d000d","530e5961049e75a9262d0039","530e5961049e75a9262d007b","530e5962049e75a9262d00ec","530e5962049e75a9262d012c","530e5962049e75a9262d015b","530e5962049e75a9262d015d","530e5963049e75a9262d01a6","530e5963049e75a9262d0209","530e5963049e75a9262d020b","530e5963049e75a9262d021d","530e5964049e75a9262d027f","530e5964049e75a9262d02ac","530e5964049e75a9262d02ee","530e5964049e75a9262d02f8","530e5964049e75a9262d02fe","530e5964049e75a9262d0301","530e5965049e75a9262d0372","530e5965049e75a9262d03cd","530e5965049e75a9262d03ee","530e5966049e75a9262d03f3","530e5966049e75a9262d043e","530e5966049e75a9262d044c","530e5966049e75a9262d0467","530e5966049e75a9262d048b","530e5966049e75a9262d0492","530e5966049e75a9262d04a0","530e5966049e75a9262d04b8","530e5967049e75a9262d04f7","530e5967049e75a9262d04fe","530e5967049e75a9262d0563","530e5967049e75a9262d0569","530e5967049e75a9262d0584","530e5967049e75a9262d0585","530e5967049e75a9262d0591","530e5967049e75a9262d05a6","530e5968049e75a9262d05c5","530e5968049e75a9262d05dd","530e5968049e75a9262d05fa","530e5968049e75a9262d0607","530e5968049e75a9262d0622","530e5968049e75a9262d062a","530e5968049e75a9262d063b","530e5968049e75a9262d0648"],"subject":"PE
2847
2847
  and health","teacher":"530e5955d50c310f36112c07","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0beb"},"uri":"/v1.1/sections/530e597a049e75a9262d0beb"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0be1"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0be2"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0beb"}]}'
2848
2848
  http_version:
2849
- recorded_at: Mon, 08 Sep 2014 21:31:09 GMT
2849
+ recorded_at: Tue, 09 Sep 2014 21:48:25 GMT
2850
2850
  - request:
2851
2851
  method: get
2852
2852
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0beb
@@ -2855,7 +2855,7 @@ http_interactions:
2855
2855
  string: ''
2856
2856
  headers:
2857
2857
  Accept:
2858
- - ! '*/*; q=0.5, application/xml'
2858
+ - "*/*; q=0.5, application/xml"
2859
2859
  Accept-Encoding:
2860
2860
  - gzip, deflate
2861
2861
  User-Agent:
@@ -2870,13 +2870,13 @@ http_interactions:
2870
2870
  Access-Control-Allow-Methods:
2871
2871
  - GET,PATCH,POST,DELETE
2872
2872
  Access-Control-Allow-Origin:
2873
- - ! '*'
2873
+ - "*"
2874
2874
  Content-Type:
2875
2875
  - application/json; charset=utf-8
2876
2876
  Date:
2877
- - Mon, 08 Sep 2014 21:31:10 GMT
2877
+ - Tue, 09 Sep 2014 21:48:25 GMT
2878
2878
  Etag:
2879
- - ! '"-1621127"'
2879
+ - '"-1621127"'
2880
2880
  Server:
2881
2881
  - nginx/1.4.7
2882
2882
  X-Powered-By:
@@ -2886,8 +2886,8 @@ http_interactions:
2886
2886
  Connection:
2887
2887
  - keep-alive
2888
2888
  body:
2889
- encoding: US-ASCII
2890
- string: ! '{"data":[{"data":{"course_name":"Physical Education, Class 601","course_number":"601","created":"2014-02-26T21:15:38.999Z","district":"4fd43cc56d11340000000005","grade":"6","last_modified":"2014-02-26T21:15:39.002Z","name":"Physical
2889
+ encoding: UTF-8
2890
+ string: '{"data":[{"data":{"course_name":"Physical Education, Class 601","course_number":"601","created":"2014-02-26T21:15:38.999Z","district":"4fd43cc56d11340000000005","grade":"6","last_modified":"2014-02-26T21:15:39.002Z","name":"Physical
2891
2891
  Education, Class 601 - 601 - K. Ritchie","period":"9","school":"530e595026403103360ff9ff","sis_id":"832","students":["530e5960049e75a9262cff25","530e5960049e75a9262cff50","530e5960049e75a9262cff61","530e5960049e75a9262cff86","530e5961049e75a9262cffb4","530e5962049e75a9262d0125","530e5962049e75a9262d0129","530e5963049e75a9262d0204","530e5963049e75a9262d025e","530e5963049e75a9262d0260","530e5964049e75a9262d0266","530e5964049e75a9262d027d","530e5964049e75a9262d02b2","530e5965049e75a9262d036b","530e5965049e75a9262d03c3","530e5966049e75a9262d041a","530e5966049e75a9262d0460","530e5966049e75a9262d0472","530e5966049e75a9262d04af","530e5967049e75a9262d0522","530e5967049e75a9262d055b","530e5967049e75a9262d0589","530e5968049e75a9262d05d7","530e5968049e75a9262d05d9","530e5968049e75a9262d05df","530e5968049e75a9262d060f"],"subject":"PE
2892
2892
  and health","teacher":"530e5955d50c310f36112bff","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0bec"},"uri":"/v1.1/sections/530e597a049e75a9262d0bec"},{"data":{"course_name":"Physical
2893
2893
  Education, Class 602","course_number":"602","created":"2014-02-26T21:15:39.003Z","district":"4fd43cc56d11340000000005","grade":"6","last_modified":"2014-02-26T21:15:39.007Z","name":"Physical
@@ -2918,7 +2918,7 @@ http_interactions:
2918
2918
  Education, Group 9A - 101 - P. McCartney","period":"8","school":"530e595026403103360ff9fd","sis_id":"841","students":["530e5960049e75a9262cff27","530e5960049e75a9262cff42","530e5960049e75a9262cff4b","530e5960049e75a9262cffa2","530e5961049e75a9262cfffb","530e5961049e75a9262d000c","530e5961049e75a9262d001a","530e5961049e75a9262d0034","530e5961049e75a9262d0038","530e5961049e75a9262d0048","530e5961049e75a9262d0070","530e5961049e75a9262d007f","530e5961049e75a9262d0085","530e5962049e75a9262d00b7","530e5962049e75a9262d015f","530e5963049e75a9262d019f","530e5963049e75a9262d01a4","530e5963049e75a9262d01db","530e5963049e75a9262d01f8","530e5963049e75a9262d0203","530e5963049e75a9262d022f","530e5964049e75a9262d0284","530e5964049e75a9262d02d3","530e5964049e75a9262d02f3","530e5964049e75a9262d0309","530e5965049e75a9262d0325","530e5965049e75a9262d033c","530e5965049e75a9262d033f","530e5965049e75a9262d036c","530e5965049e75a9262d038e","530e5965049e75a9262d03a2","530e5965049e75a9262d03a5","530e5966049e75a9262d03f8","530e5966049e75a9262d0468","530e5966049e75a9262d046c","530e5966049e75a9262d0471","530e5966049e75a9262d048d","530e5966049e75a9262d0495","530e5966049e75a9262d04a5","530e5966049e75a9262d04d7","530e5967049e75a9262d0501","530e5967049e75a9262d0575","530e5967049e75a9262d057e","530e5967049e75a9262d05a8","530e5967049e75a9262d05b7","530e5968049e75a9262d05cb","530e5968049e75a9262d05d1","530e5968049e75a9262d05d4","530e5968049e75a9262d05e3","530e5968049e75a9262d0640"],"subject":"PE
2919
2919
  and health","teacher":"530e5955d50c310f36112c07","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0bf5"},"uri":"/v1.1/sections/530e597b049e75a9262d0bf5"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0beb"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597a049e75a9262d0bec"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0bf5"}]}'
2920
2920
  http_version:
2921
- recorded_at: Mon, 08 Sep 2014 21:31:09 GMT
2921
+ recorded_at: Tue, 09 Sep 2014 21:48:25 GMT
2922
2922
  - request:
2923
2923
  method: get
2924
2924
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0bf5
@@ -2927,7 +2927,7 @@ http_interactions:
2927
2927
  string: ''
2928
2928
  headers:
2929
2929
  Accept:
2930
- - ! '*/*; q=0.5, application/xml'
2930
+ - "*/*; q=0.5, application/xml"
2931
2931
  Accept-Encoding:
2932
2932
  - gzip, deflate
2933
2933
  User-Agent:
@@ -2942,13 +2942,13 @@ http_interactions:
2942
2942
  Access-Control-Allow-Methods:
2943
2943
  - GET,PATCH,POST,DELETE
2944
2944
  Access-Control-Allow-Origin:
2945
- - ! '*'
2945
+ - "*"
2946
2946
  Content-Type:
2947
2947
  - application/json; charset=utf-8
2948
2948
  Date:
2949
- - Mon, 08 Sep 2014 21:31:10 GMT
2949
+ - Tue, 09 Sep 2014 21:48:25 GMT
2950
2950
  Etag:
2951
- - ! '"707540498"'
2951
+ - '"707540498"'
2952
2952
  Server:
2953
2953
  - nginx/1.4.7
2954
2954
  X-Powered-By:
@@ -2958,8 +2958,8 @@ http_interactions:
2958
2958
  Connection:
2959
2959
  - keep-alive
2960
2960
  body:
2961
- encoding: US-ASCII
2962
- string: ! '{"data":[{"data":{"course_name":"Physical Education, Group 9B","course_number":"102","created":"2014-02-26T21:15:39.041Z","district":"4fd43cc56d11340000000005","grade":"9","last_modified":"2014-02-26T21:15:39.043Z","name":"Physical
2961
+ encoding: UTF-8
2962
+ string: '{"data":[{"data":{"course_name":"Physical Education, Group 9B","course_number":"102","created":"2014-02-26T21:15:39.041Z","district":"4fd43cc56d11340000000005","grade":"9","last_modified":"2014-02-26T21:15:39.043Z","name":"Physical
2963
2963
  Education, Group 9B - 102 - P. McCartney","period":"8","school":"530e595026403103360ff9fd","sis_id":"842","students":["530e5960049e75a9262cff1e","530e5960049e75a9262cff23","530e5960049e75a9262cff3c","530e5960049e75a9262cff58","530e5960049e75a9262cff5b","530e5960049e75a9262cff7a","530e5961049e75a9262cffcd","530e5961049e75a9262d005d","530e5961049e75a9262d0062","530e5961049e75a9262d007d","530e5961049e75a9262d0089","530e5961049e75a9262d008f","530e5962049e75a9262d00ba","530e5962049e75a9262d00e6","530e5962049e75a9262d00e8","530e5962049e75a9262d00ff","530e5962049e75a9262d0110","530e5962049e75a9262d0127","530e5962049e75a9262d0174","530e5963049e75a9262d0181","530e5963049e75a9262d01a2","530e5963049e75a9262d01fb","530e5963049e75a9262d020f","530e5963049e75a9262d0211","530e5963049e75a9262d021b","530e5963049e75a9262d0229","530e5963049e75a9262d0231","530e5964049e75a9262d0276","530e5964049e75a9262d0299","530e5964049e75a9262d02a9","530e5964049e75a9262d02b6","530e5964049e75a9262d02c3","530e5965049e75a9262d034f","530e5965049e75a9262d038f","530e5966049e75a9262d03fc","530e5966049e75a9262d042b","530e5966049e75a9262d045e","530e5966049e75a9262d046a","530e5966049e75a9262d0496","530e5967049e75a9262d052d","530e5967049e75a9262d0590","530e5967049e75a9262d05b5","530e5967049e75a9262d05be","530e5968049e75a9262d05e2","530e5968049e75a9262d0605","530e5968049e75a9262d0614","530e5968049e75a9262d061c","530e5968049e75a9262d063a","530e5968049e75a9262d063c","530e5968049e75a9262d0646"],"subject":"PE
2964
2964
  and health","teacher":"530e5955d50c310f36112c07","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0bf6"},"uri":"/v1.1/sections/530e597b049e75a9262d0bf6"},{"data":{"course_name":"Kindergarten
2965
2965
  Reading, Class 001","course_number":"1","created":"2014-02-26T21:15:39.045Z","district":"4fd43cc56d11340000000005","grade":"Kindergarten","last_modified":"2014-02-26T21:15:39.047Z","name":"Kindergarten
@@ -2990,7 +2990,7 @@ http_interactions:
2990
2990
  2 Reading, Class 203 - 203 - M. Jakubowski","period":"4","school":"530e595026403103360ff9fe","sis_id":"851","students":["530e5960049e75a9262cff4a","530e5960049e75a9262cff72","530e5962049e75a9262d00bc","530e5962049e75a9262d010a","530e5962049e75a9262d0138","530e5962049e75a9262d016a","530e5963049e75a9262d0201","530e5963049e75a9262d022a","530e5963049e75a9262d0251","530e5964049e75a9262d027b","530e5964049e75a9262d02f9","530e5965049e75a9262d0318","530e5965049e75a9262d034d","530e5965049e75a9262d0369","530e5966049e75a9262d0423","530e5966049e75a9262d0436","530e5966049e75a9262d045a","530e5966049e75a9262d0486","530e5967049e75a9262d0521","530e5967049e75a9262d0525","530e5967049e75a9262d05c3"],"subject":"english/language
2991
2991
  arts","teacher":"530e5955d50c310f36112c04","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0bff"},"uri":"/v1.1/sections/530e597b049e75a9262d0bff"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0bf5"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597b049e75a9262d0bf6"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0bff"}]}'
2992
2992
  http_version:
2993
- recorded_at: Mon, 08 Sep 2014 21:31:10 GMT
2993
+ recorded_at: Tue, 09 Sep 2014 21:48:25 GMT
2994
2994
  - request:
2995
2995
  method: get
2996
2996
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0bff
@@ -2999,7 +2999,7 @@ http_interactions:
2999
2999
  string: ''
3000
3000
  headers:
3001
3001
  Accept:
3002
- - ! '*/*; q=0.5, application/xml'
3002
+ - "*/*; q=0.5, application/xml"
3003
3003
  Accept-Encoding:
3004
3004
  - gzip, deflate
3005
3005
  User-Agent:
@@ -3014,13 +3014,13 @@ http_interactions:
3014
3014
  Access-Control-Allow-Methods:
3015
3015
  - GET,PATCH,POST,DELETE
3016
3016
  Access-Control-Allow-Origin:
3017
- - ! '*'
3017
+ - "*"
3018
3018
  Content-Type:
3019
3019
  - application/json; charset=utf-8
3020
3020
  Date:
3021
- - Mon, 08 Sep 2014 21:31:10 GMT
3021
+ - Tue, 09 Sep 2014 21:48:26 GMT
3022
3022
  Etag:
3023
- - ! '"1311156402"'
3023
+ - '"1311156402"'
3024
3024
  Server:
3025
3025
  - nginx/1.4.7
3026
3026
  X-Powered-By:
@@ -3030,8 +3030,8 @@ http_interactions:
3030
3030
  Connection:
3031
3031
  - keep-alive
3032
3032
  body:
3033
- encoding: US-ASCII
3034
- string: ! '{"data":[{"data":{"course_name":"Grade 3 Reading, Class 301","course_number":"301","created":"2014-02-26T21:15:39.103Z","district":"4fd43cc56d11340000000005","grade":"3","last_modified":"2014-02-26T21:15:39.115Z","name":"Grade
3033
+ encoding: UTF-8
3034
+ string: '{"data":[{"data":{"course_name":"Grade 3 Reading, Class 301","course_number":"301","created":"2014-02-26T21:15:39.103Z","district":"4fd43cc56d11340000000005","grade":"3","last_modified":"2014-02-26T21:15:39.115Z","name":"Grade
3035
3035
  3 Reading, Class 301 - 301 - S. Block","period":"2","school":"530e595026403103360ff9fe","sis_id":"852","students":["530e5960049e75a9262cff56","530e5962049e75a9262d00fb","530e5962049e75a9262d015a","530e5963049e75a9262d0190","530e5963049e75a9262d01cf","530e5963049e75a9262d0219","530e5964049e75a9262d0270","530e5964049e75a9262d02cf","530e5964049e75a9262d02fc","530e5965049e75a9262d0341","530e5965049e75a9262d0343","530e5965049e75a9262d038d","530e5965049e75a9262d03a7","530e5966049e75a9262d0415","530e5966049e75a9262d0439","530e5966049e75a9262d0458","530e5966049e75a9262d0463","530e5966049e75a9262d04d5","530e5967049e75a9262d04f4","530e5967049e75a9262d051f"],"subject":"english/language
3036
3036
  arts","teacher":"530e5955d50c310f36112c15","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c00"},"uri":"/v1.1/sections/530e597b049e75a9262d0c00"},{"data":{"course_name":"Grade
3037
3037
  4 Reading, Class 403","course_number":"403","created":"2014-02-26T21:15:39.116Z","district":"4fd43cc56d11340000000005","grade":"4","last_modified":"2014-02-26T21:15:39.119Z","name":"Grade
@@ -3056,7 +3056,7 @@ http_interactions:
3056
3056
  5 Reading, Class 502 - 502 - M. Walsh","period":"5","school":"530e595026403103360ff9fe","sis_id":"859","students":["530e5960049e75a9262cff33","530e5960049e75a9262cff6c","530e5961049e75a9262cffe4","530e5961049e75a9262d003b","530e5962049e75a9262d0096","530e5962049e75a9262d00ac","530e5962049e75a9262d00ca","530e5962049e75a9262d0104","530e5963049e75a9262d01cb","530e5964049e75a9262d0277","530e5964049e75a9262d02b4","530e5965049e75a9262d0322","530e5965049e75a9262d0386","530e5965049e75a9262d0399","530e5966049e75a9262d0442","530e5966049e75a9262d0470","530e5966049e75a9262d04bb","530e5967049e75a9262d04f0","530e5968049e75a9262d05e5","530e5968049e75a9262d05f8","530e5968049e75a9262d060a"],"subject":"english/language
3057
3057
  arts","teacher":"530e5955d50c310f36112bd3","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c09"},"uri":"/v1.1/sections/530e597b049e75a9262d0c09"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0bff"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597b049e75a9262d0c00"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c09"}]}'
3058
3058
  http_version:
3059
- recorded_at: Mon, 08 Sep 2014 21:31:10 GMT
3059
+ recorded_at: Tue, 09 Sep 2014 21:48:26 GMT
3060
3060
  - request:
3061
3061
  method: get
3062
3062
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c09
@@ -3065,7 +3065,7 @@ http_interactions:
3065
3065
  string: ''
3066
3066
  headers:
3067
3067
  Accept:
3068
- - ! '*/*; q=0.5, application/xml'
3068
+ - "*/*; q=0.5, application/xml"
3069
3069
  Accept-Encoding:
3070
3070
  - gzip, deflate
3071
3071
  User-Agent:
@@ -3080,13 +3080,13 @@ http_interactions:
3080
3080
  Access-Control-Allow-Methods:
3081
3081
  - GET,PATCH,POST,DELETE
3082
3082
  Access-Control-Allow-Origin:
3083
- - ! '*'
3083
+ - "*"
3084
3084
  Content-Type:
3085
3085
  - application/json; charset=utf-8
3086
3086
  Date:
3087
- - Mon, 08 Sep 2014 21:31:10 GMT
3087
+ - Tue, 09 Sep 2014 21:48:26 GMT
3088
3088
  Etag:
3089
- - ! '"813776824"'
3089
+ - '"813776824"'
3090
3090
  Server:
3091
3091
  - nginx/1.4.7
3092
3092
  X-Powered-By:
@@ -3096,8 +3096,8 @@ http_interactions:
3096
3096
  Connection:
3097
3097
  - keep-alive
3098
3098
  body:
3099
- encoding: US-ASCII
3100
- string: ! '{"data":[{"data":{"course_name":"Kindergarten Science, Class 001","course_number":"1","created":"2014-02-26T21:15:39.165Z","district":"4fd43cc56d11340000000005","grade":"Kindergarten","last_modified":"2014-08-28T18:01:01.906Z","name":"Kindergarten
3099
+ encoding: UTF-8
3100
+ string: '{"data":[{"data":{"course_name":"Kindergarten Science, Class 001","course_number":"1","created":"2014-02-26T21:15:39.165Z","district":"4fd43cc56d11340000000005","grade":"Kindergarten","last_modified":"2014-08-28T18:01:01.906Z","name":"Kindergarten
3101
3101
  Science, Class 001 - 001 - H. Willms","period":"2","school":"530e595026403103360ff9fe","sis_id":"864","students":["530e5960049e75a9262cff5d","530e5960049e75a9262cff76","530e5961049e75a9262cffdc","530e5962049e75a9262d00d0","530e5962049e75a9262d012d","530e5963049e75a9262d01c1","530e5963049e75a9262d01d3","530e5963049e75a9262d01e1","530e5964049e75a9262d027a","530e5964049e75a9262d02ae","530e5965049e75a9262d03c0","530e5965049e75a9262d03c6","530e5966049e75a9262d042d","530e5966049e75a9262d0451","530e5966049e75a9262d0479","530e5967049e75a9262d057b","530e5967049e75a9262d05a3","530e5967049e75a9262d05ba","530e5967049e75a9262d05c1","530e5968049e75a9262d05e4"],"subject":"science","teacher":"530e5955d50c310f36112c02","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c0a"},"uri":"/v1.1/sections/530e597b049e75a9262d0c0a"},{"data":{"course_name":"Chemistry","course_number":"201","created":"2014-02-26T21:15:39.170Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:39.173Z","name":"Chemistry
3102
3102
  - 201 - J. Washington (Section 3)","period":"3","school":"530e595026403103360ff9fd","sis_id":"869","students":["530e5960049e75a9262cff1f","530e5960049e75a9262cff4f","530e5961049e75a9262cffd9","530e5961049e75a9262d0027","530e5961049e75a9262d0035","530e5961049e75a9262d0080","530e5962049e75a9262d00b6","530e5962049e75a9262d0102","530e5962049e75a9262d012e","530e5963049e75a9262d01ff","530e5964049e75a9262d0302","530e5965049e75a9262d031b","530e5965049e75a9262d03b6","530e5965049e75a9262d03e8","530e5966049e75a9262d041c","530e5966049e75a9262d043c","530e5966049e75a9262d04b4","530e5966049e75a9262d04cc","530e5967049e75a9262d0503","530e5967049e75a9262d0544","530e5967049e75a9262d0596","530e5968049e75a9262d05e9","530e5968049e75a9262d05f7","530e5968049e75a9262d05fc","530e5968049e75a9262d0647"],"subject":"science","teacher":"530e5955d50c310f36112c0d","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c0b"},"uri":"/v1.1/sections/530e597b049e75a9262d0c0b"},{"data":{"course_name":"Grade
3103
3103
  4 Reading, Class 401","course_number":"401","created":"2014-02-26T21:15:39.174Z","district":"4fd43cc56d11340000000005","grade":"4","last_modified":"2014-02-26T21:15:39.176Z","name":"Grade
@@ -3120,7 +3120,7 @@ http_interactions:
3120
3120
  Remediation, Grade 10","course_number":"205","created":"2014-02-26T21:15:39.196Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:39.197Z","name":"Science
3121
3121
  Remediation, Grade 10 - 205 - R. Wyman","period":"9","school":"530e595026403103360ff9fd","sis_id":"871","students":["530e5960049e75a9262cff1f","530e5960049e75a9262cff96","530e5961049e75a9262d0010","530e5962049e75a9262d0133","530e5962049e75a9262d0158","530e5963049e75a9262d017f","530e5963049e75a9262d0180","530e5963049e75a9262d01cc","530e5963049e75a9262d0253","530e5964049e75a9262d0286","530e5964049e75a9262d02aa","530e5965049e75a9262d0383","530e5965049e75a9262d03d2","530e5965049e75a9262d03e8","530e5966049e75a9262d04ba","530e5968049e75a9262d05e8","530e5968049e75a9262d0608","530e5968049e75a9262d060e","530e5968049e75a9262d0617"],"subject":"science","teacher":"530e5955d50c310f36112bd1","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c13"},"uri":"/v1.1/sections/530e597b049e75a9262d0c13"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c09"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597b049e75a9262d0c0a"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c13"}]}'
3122
3122
  http_version:
3123
- recorded_at: Mon, 08 Sep 2014 21:31:10 GMT
3123
+ recorded_at: Tue, 09 Sep 2014 21:48:26 GMT
3124
3124
  - request:
3125
3125
  method: get
3126
3126
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c13
@@ -3129,7 +3129,7 @@ http_interactions:
3129
3129
  string: ''
3130
3130
  headers:
3131
3131
  Accept:
3132
- - ! '*/*; q=0.5, application/xml'
3132
+ - "*/*; q=0.5, application/xml"
3133
3133
  Accept-Encoding:
3134
3134
  - gzip, deflate
3135
3135
  User-Agent:
@@ -3144,13 +3144,13 @@ http_interactions:
3144
3144
  Access-Control-Allow-Methods:
3145
3145
  - GET,PATCH,POST,DELETE
3146
3146
  Access-Control-Allow-Origin:
3147
- - ! '*'
3147
+ - "*"
3148
3148
  Content-Type:
3149
3149
  - application/json; charset=utf-8
3150
3150
  Date:
3151
- - Mon, 08 Sep 2014 21:31:10 GMT
3151
+ - Tue, 09 Sep 2014 21:48:26 GMT
3152
3152
  Etag:
3153
- - ! '"-1614059195"'
3153
+ - '"-1614059195"'
3154
3154
  Server:
3155
3155
  - nginx/1.4.7
3156
3156
  X-Powered-By:
@@ -3160,8 +3160,8 @@ http_interactions:
3160
3160
  Connection:
3161
3161
  - keep-alive
3162
3162
  body:
3163
- encoding: US-ASCII
3164
- string: ! '{"data":[{"data":{"course_name":"Grade 1 Science, Class 101","course_number":"101","created":"2014-02-26T21:15:39.198Z","district":"4fd43cc56d11340000000005","grade":"1","last_modified":"2014-02-26T21:15:39.201Z","name":"Grade
3163
+ encoding: UTF-8
3164
+ string: '{"data":[{"data":{"course_name":"Grade 1 Science, Class 101","course_number":"101","created":"2014-02-26T21:15:39.198Z","district":"4fd43cc56d11340000000005","grade":"1","last_modified":"2014-02-26T21:15:39.201Z","name":"Grade
3165
3165
  1 Science, Class 101 - 101 - H. Hahn","period":"2","school":"530e595026403103360ff9fe","sis_id":"872","students":["530e5960049e75a9262cff2b","530e5960049e75a9262cff6e","530e5960049e75a9262cffa0","530e5960049e75a9262cffac","530e5961049e75a9262d0081","530e5961049e75a9262d0093","530e5963049e75a9262d0185","530e5963049e75a9262d01bd","530e5963049e75a9262d0216","530e5964049e75a9262d02c7","530e5965049e75a9262d0327","530e5965049e75a9262d0338","530e5965049e75a9262d034b","530e5965049e75a9262d03cb","530e5965049e75a9262d03ef","530e5966049e75a9262d046f","530e5966049e75a9262d049b","530e5967049e75a9262d050e","530e5967049e75a9262d051e","530e5967049e75a9262d0566"],"subject":"science","teacher":"530e5955d50c310f36112bcb","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c14"},"uri":"/v1.1/sections/530e597b049e75a9262d0c14"},{"data":{"course_name":"Physics","course_number":"301","created":"2014-02-26T21:15:39.202Z","district":"4fd43cc56d11340000000005","grade":"11","last_modified":"2014-02-26T21:15:39.210Z","name":"Physics
3166
3166
  - 301 - S. Madison (Section 1)","period":"8","school":"530e595026403103360ff9fd","sis_id":"873","students":["530e5960049e75a9262cff7c","530e5962049e75a9262d009e","530e5962049e75a9262d00b3","530e5962049e75a9262d00bf","530e5962049e75a9262d013f","530e5963049e75a9262d0183","530e5963049e75a9262d01a1","530e5963049e75a9262d01c9","530e5963049e75a9262d01d5","530e5963049e75a9262d0205","530e5963049e75a9262d022c","530e5964049e75a9262d02d5","530e5964049e75a9262d02eb","530e5966049e75a9262d045c","530e5966049e75a9262d046e","530e5966049e75a9262d04d3","530e5967049e75a9262d0564","530e5967049e75a9262d0568","530e5968049e75a9262d05c7","530e5968049e75a9262d05ea","530e5968049e75a9262d05eb","530e5968049e75a9262d05fb","530e5968049e75a9262d0627","530e5968049e75a9262d062b","530e5968049e75a9262d0649"],"subject":"science","teacher":"530e5955d50c310f36112c0e","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c15"},"uri":"/v1.1/sections/530e597b049e75a9262d0c15"},{"data":{"course_name":"Physics","course_number":"302","created":"2014-02-26T21:15:39.211Z","district":"4fd43cc56d11340000000005","grade":"11","last_modified":"2014-02-26T21:15:39.213Z","name":"Physics
3167
3167
  - 302 - S. Madison (Section 2)","period":"8","school":"530e595026403103360ff9fd","sis_id":"874","students":["530e5960049e75a9262cff2f","530e5960049e75a9262cff4d","530e5960049e75a9262cff51","530e5960049e75a9262cff53","530e5961049e75a9262cffe1","530e5961049e75a9262d005a","530e5962049e75a9262d00c3","530e5963049e75a9262d01a7","530e5963049e75a9262d01fc","530e5964049e75a9262d0281","530e5964049e75a9262d02d9","530e5964049e75a9262d02fd","530e5965049e75a9262d0328","530e5965049e75a9262d0335","530e5966049e75a9262d0416","530e5966049e75a9262d046b","530e5966049e75a9262d047e","530e5966049e75a9262d04a3","530e5967049e75a9262d0527","530e5967049e75a9262d0534","530e5967049e75a9262d0561","530e5967049e75a9262d058d","530e5967049e75a9262d05a1","530e5968049e75a9262d0600","530e5968049e75a9262d0633"],"subject":"science","teacher":"530e5955d50c310f36112c0e","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c16"},"uri":"/v1.1/sections/530e597b049e75a9262d0c16"},{"data":{"course_name":"Physics","course_number":"302","created":"2014-02-26T21:15:39.214Z","district":"4fd43cc56d11340000000005","grade":"11","last_modified":"2014-02-26T21:15:39.216Z","name":"Physics
@@ -3179,7 +3179,7 @@ http_interactions:
3179
3179
  Chemistry","course_number":"404","created":"2014-02-26T21:15:39.240Z","district":"4fd43cc56d11340000000005","grade":"12","last_modified":"2014-02-26T21:15:39.242Z","name":"AP
3180
3180
  Chemistry - 404 - M. Kulas (Section 3)","period":"3","school":"530e595026403103360ff9fd","sis_id":"881","students":["530e5960049e75a9262cff52","530e5960049e75a9262cff67","530e5960049e75a9262cff6a","530e5961049e75a9262cffb7","530e5961049e75a9262d005b","530e5962049e75a9262d012c","530e5962049e75a9262d015b","530e5963049e75a9262d018b","530e5963049e75a9262d0209","530e5963049e75a9262d024a","530e5964049e75a9262d02ee","530e5965049e75a9262d0326","530e5965049e75a9262d0332","530e5965049e75a9262d0349","530e5965049e75a9262d0372","530e5966049e75a9262d0447","530e5967049e75a9262d04fa","530e5967049e75a9262d058c","530e5968049e75a9262d05dc","530e5968049e75a9262d063b"],"subject":"science","teacher":"530e5955d50c310f36112bd6","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c1d"},"uri":"/v1.1/sections/530e597b049e75a9262d0c1d"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c13"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597b049e75a9262d0c14"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c1d"}]}'
3181
3181
  http_version:
3182
- recorded_at: Mon, 08 Sep 2014 21:31:10 GMT
3182
+ recorded_at: Tue, 09 Sep 2014 21:48:26 GMT
3183
3183
  - request:
3184
3184
  method: get
3185
3185
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c1d
@@ -3188,7 +3188,7 @@ http_interactions:
3188
3188
  string: ''
3189
3189
  headers:
3190
3190
  Accept:
3191
- - ! '*/*; q=0.5, application/xml'
3191
+ - "*/*; q=0.5, application/xml"
3192
3192
  Accept-Encoding:
3193
3193
  - gzip, deflate
3194
3194
  User-Agent:
@@ -3203,13 +3203,13 @@ http_interactions:
3203
3203
  Access-Control-Allow-Methods:
3204
3204
  - GET,PATCH,POST,DELETE
3205
3205
  Access-Control-Allow-Origin:
3206
- - ! '*'
3206
+ - "*"
3207
3207
  Content-Type:
3208
3208
  - application/json; charset=utf-8
3209
3209
  Date:
3210
- - Mon, 08 Sep 2014 21:31:10 GMT
3210
+ - Tue, 09 Sep 2014 21:48:26 GMT
3211
3211
  Etag:
3212
- - ! '"125113949"'
3212
+ - '"125113949"'
3213
3213
  Server:
3214
3214
  - nginx/1.4.7
3215
3215
  X-Powered-By:
@@ -3219,8 +3219,8 @@ http_interactions:
3219
3219
  Connection:
3220
3220
  - keep-alive
3221
3221
  body:
3222
- encoding: US-ASCII
3223
- string: ! '{"data":[{"data":{"course_name":"Environmental Science","course_number":"400","created":"2014-02-26T21:15:39.244Z","district":"4fd43cc56d11340000000005","grade":"12","last_modified":"2014-02-26T21:15:39.245Z","name":"Environmental
3222
+ encoding: UTF-8
3223
+ string: '{"data":[{"data":{"course_name":"Environmental Science","course_number":"400","created":"2014-02-26T21:15:39.244Z","district":"4fd43cc56d11340000000005","grade":"12","last_modified":"2014-02-26T21:15:39.245Z","name":"Environmental
3224
3224
  Science - 400 - S. Ogden (Section 4)","period":"3","school":"530e595026403103360ff9fd","sis_id":"882","students":["530e5960049e75a9262cff9f","530e5960049e75a9262cffa6","530e5961049e75a9262cffef","530e5961049e75a9262cfff7","530e5961049e75a9262d0002","530e5963049e75a9262d01c7","530e5963049e75a9262d020b","530e5963049e75a9262d0227","530e5964049e75a9262d0278","530e5964049e75a9262d02fe","530e5965049e75a9262d0363","530e5965049e75a9262d037f","530e5965049e75a9262d03cd","530e5966049e75a9262d044c","530e5967049e75a9262d04fe","530e5967049e75a9262d0584","530e5968049e75a9262d05ec","530e5968049e75a9262d060c","530e5968049e75a9262d062a","530e5968049e75a9262d063f"],"subject":"science","teacher":"50ba1c0c4eda5d94372227eb","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c1e"},"uri":"/v1.1/sections/530e597b049e75a9262d0c1e"},{"data":{"course_name":"Physics","course_number":"403","created":"2014-02-26T21:15:39.247Z","district":"4fd43cc56d11340000000005","grade":"12","last_modified":"2014-02-26T21:15:39.248Z","name":"Physics
3225
3225
  - 403 - S. Madison (Section 5)","period":"3","school":"530e595026403103360ff9fd","sis_id":"883","students":["530e5961049e75a9262d007b","530e5962049e75a9262d00ec","530e5962049e75a9262d0159","530e5963049e75a9262d01a6","530e5963049e75a9262d021d","530e5964049e75a9262d027f","530e5964049e75a9262d02ac","530e5964049e75a9262d02b5","530e5964049e75a9262d02bc","530e5964049e75a9262d02d4","530e5966049e75a9262d03f3","530e5966049e75a9262d0492","530e5966049e75a9262d04a0","530e5966049e75a9262d04b8","530e5967049e75a9262d0569","530e5967049e75a9262d05b2","530e5968049e75a9262d05c5","530e5968049e75a9262d05c8","530e5968049e75a9262d05fa","530e5968049e75a9262d0602"],"subject":"science","teacher":"530e5955d50c310f36112c0e","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c1f"},"uri":"/v1.1/sections/530e597b049e75a9262d0c1f"},{"data":{"course_name":"Science
3226
3226
  Remediation, Grade 12","course_number":"405","created":"2014-02-26T21:15:39.249Z","district":"4fd43cc56d11340000000005","grade":"12","last_modified":"2014-02-26T21:15:39.251Z","name":"Science
@@ -3240,7 +3240,7 @@ http_interactions:
3240
3240
  3 Science, Class 303","course_number":"303","created":"2014-02-26T21:15:39.270Z","district":"4fd43cc56d11340000000005","grade":"3","last_modified":"2014-02-26T21:15:39.272Z","name":"Grade
3241
3241
  3 Science, Class 303 - 303 - L. Spinka","period":"2","school":"530e595026403103360ff9fe","sis_id":"891","students":["530e5960049e75a9262cff3e","530e5961049e75a9262d0067","530e5962049e75a9262d00a2","530e5962049e75a9262d00b0","530e5962049e75a9262d00f0","530e5962049e75a9262d0117","530e5962049e75a9262d0131","530e5963049e75a9262d0188","530e5963049e75a9262d01c3","530e5964049e75a9262d02b0","530e5964049e75a9262d02d7","530e5964049e75a9262d02f1","530e5965049e75a9262d03c1","530e5965049e75a9262d03c4","530e5966049e75a9262d0445","530e5967049e75a9262d0541","530e5967049e75a9262d05c2","530e5968049e75a9262d05fd","530e5968049e75a9262d0624","530e5968049e75a9262d063d","530e5968049e75a9262d063e"],"subject":"science","teacher":"509fbd7ec474fab64a8e9d53","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c27"},"uri":"/v1.1/sections/530e597b049e75a9262d0c27"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c1d"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597b049e75a9262d0c1e"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c27"}]}'
3242
3242
  http_version:
3243
- recorded_at: Mon, 08 Sep 2014 21:31:10 GMT
3243
+ recorded_at: Tue, 09 Sep 2014 21:48:26 GMT
3244
3244
  - request:
3245
3245
  method: get
3246
3246
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c27
@@ -3249,7 +3249,7 @@ http_interactions:
3249
3249
  string: ''
3250
3250
  headers:
3251
3251
  Accept:
3252
- - ! '*/*; q=0.5, application/xml'
3252
+ - "*/*; q=0.5, application/xml"
3253
3253
  Accept-Encoding:
3254
3254
  - gzip, deflate
3255
3255
  User-Agent:
@@ -3264,13 +3264,13 @@ http_interactions:
3264
3264
  Access-Control-Allow-Methods:
3265
3265
  - GET,PATCH,POST,DELETE
3266
3266
  Access-Control-Allow-Origin:
3267
- - ! '*'
3267
+ - "*"
3268
3268
  Content-Type:
3269
3269
  - application/json; charset=utf-8
3270
3270
  Date:
3271
- - Mon, 08 Sep 2014 21:31:11 GMT
3271
+ - Tue, 09 Sep 2014 21:48:26 GMT
3272
3272
  Etag:
3273
- - ! '"974836690"'
3273
+ - '"974836690"'
3274
3274
  Server:
3275
3275
  - nginx/1.4.7
3276
3276
  X-Powered-By:
@@ -3280,8 +3280,8 @@ http_interactions:
3280
3280
  Connection:
3281
3281
  - keep-alive
3282
3282
  body:
3283
- encoding: US-ASCII
3284
- string: ! '{"data":[{"data":{"course_name":"Grade 4 Science, Class 401","course_number":"401","created":"2014-02-26T21:15:39.273Z","district":"4fd43cc56d11340000000005","grade":"4","last_modified":"2014-02-26T21:15:39.275Z","name":"Grade
3283
+ encoding: UTF-8
3284
+ string: '{"data":[{"data":{"course_name":"Grade 4 Science, Class 401","course_number":"401","created":"2014-02-26T21:15:39.273Z","district":"4fd43cc56d11340000000005","grade":"4","last_modified":"2014-02-26T21:15:39.275Z","name":"Grade
3285
3285
  4 Science, Class 401 - 401 - J. Mertz","period":"5","school":"530e595026403103360ff9fe","sis_id":"892","students":["530e5960049e75a9262cff24","530e5961049e75a9262d000b","530e5962049e75a9262d00a9","530e5962049e75a9262d0109","530e5962049e75a9262d0153","530e5964049e75a9262d02e1","530e5964049e75a9262d0307","530e5965049e75a9262d0390","530e5965049e75a9262d03ca","530e5965049e75a9262d03ec","530e5966049e75a9262d0425","530e5966049e75a9262d0444","530e5966049e75a9262d0480","530e5967049e75a9262d04e4","530e5967049e75a9262d0559","530e5967049e75a9262d0587","530e5967049e75a9262d05ac","530e5968049e75a9262d05ce","530e5968049e75a9262d05d0","530e5968049e75a9262d05de"],"subject":"science","teacher":"530e5955d50c310f36112bce","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c28"},"uri":"/v1.1/sections/530e597b049e75a9262d0c28"},{"data":{"course_name":"Grade
3286
3286
  4 Science, Class 402","course_number":"402","created":"2014-02-26T21:15:39.276Z","district":"4fd43cc56d11340000000005","grade":"4","last_modified":"2014-02-26T21:15:39.283Z","name":"Grade
3287
3287
  4 Science, Class 402 - 402 - E. Ruecker","period":"2","school":"530e595026403103360ff9fe","sis_id":"893","students":["530e5960049e75a9262cff2d","530e5961049e75a9262cffd2","530e5961049e75a9262d0030","530e5961049e75a9262d003a","530e5961049e75a9262d003f","530e5962049e75a9262d00b8","530e5962049e75a9262d0130","530e5963049e75a9262d0195","530e5963049e75a9262d01dd","530e5964049e75a9262d02ff","530e5965049e75a9262d03b0","530e5965049e75a9262d03c8","530e5966049e75a9262d0443","530e5967049e75a9262d0532","530e5967049e75a9262d0553","530e5968049e75a9262d05c9","530e5968049e75a9262d05cd","530e5968049e75a9262d05e1","530e5968049e75a9262d05f4","530e5968049e75a9262d0606","530e5968049e75a9262d0611"],"subject":"science","teacher":"530e5955d50c310f36112bcf","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c29"},"uri":"/v1.1/sections/530e597b049e75a9262d0c29"},{"data":{"course_name":"Grade
@@ -3302,7 +3302,7 @@ http_interactions:
3302
3302
  Class 701","course_number":"701","created":"2014-02-26T21:15:39.323Z","district":"4fd43cc56d11340000000005","grade":"7","last_modified":"2014-02-26T21:15:39.325Z","name":"Science,
3303
3303
  Class 701 - 701 - C. Ankunding","period":"4","school":"530e595026403103360ff9ff","sis_id":"901","students":["530e5961049e75a9262cffcb","530e5961049e75a9262cffe2","530e5961049e75a9262cffeb","530e5961049e75a9262cfffd","530e5961049e75a9262d0023","530e5961049e75a9262d0060","530e5961049e75a9262d008b","530e5962049e75a9262d00e4","530e5962049e75a9262d0157","530e5963049e75a9262d01a3","530e5963049e75a9262d01a8","530e5963049e75a9262d01f2","530e5963049e75a9262d0234","530e5964049e75a9262d0314","530e5965049e75a9262d0323","530e5965049e75a9262d03bc","530e5965049e75a9262d03d8","530e5965049e75a9262d03dd","530e5966049e75a9262d0417","530e5966049e75a9262d041f","530e5967049e75a9262d04e9","530e5967049e75a9262d056d","530e5967049e75a9262d059b","530e5967049e75a9262d05b0","530e5968049e75a9262d05ee","530e5968049e75a9262d060d"],"subject":"science","teacher":"530e5955d50c310f36112be8","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c31"},"uri":"/v1.1/sections/530e597b049e75a9262d0c31"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c27"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597b049e75a9262d0c28"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c31"}]}'
3304
3304
  http_version:
3305
- recorded_at: Mon, 08 Sep 2014 21:31:11 GMT
3305
+ recorded_at: Tue, 09 Sep 2014 21:48:26 GMT
3306
3306
  - request:
3307
3307
  method: get
3308
3308
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c31
@@ -3311,7 +3311,7 @@ http_interactions:
3311
3311
  string: ''
3312
3312
  headers:
3313
3313
  Accept:
3314
- - ! '*/*; q=0.5, application/xml'
3314
+ - "*/*; q=0.5, application/xml"
3315
3315
  Accept-Encoding:
3316
3316
  - gzip, deflate
3317
3317
  User-Agent:
@@ -3326,13 +3326,13 @@ http_interactions:
3326
3326
  Access-Control-Allow-Methods:
3327
3327
  - GET,PATCH,POST,DELETE
3328
3328
  Access-Control-Allow-Origin:
3329
- - ! '*'
3329
+ - "*"
3330
3330
  Content-Type:
3331
3331
  - application/json; charset=utf-8
3332
3332
  Date:
3333
- - Mon, 08 Sep 2014 21:31:11 GMT
3333
+ - Tue, 09 Sep 2014 21:48:26 GMT
3334
3334
  Etag:
3335
- - ! '"504345345"'
3335
+ - '"504345345"'
3336
3336
  Server:
3337
3337
  - nginx/1.4.7
3338
3338
  X-Powered-By:
@@ -3342,8 +3342,8 @@ http_interactions:
3342
3342
  Connection:
3343
3343
  - keep-alive
3344
3344
  body:
3345
- encoding: US-ASCII
3346
- string: ! '{"data":[{"data":{"course_name":"Science, Class 702","course_number":"702","created":"2014-02-26T21:15:39.326Z","district":"4fd43cc56d11340000000005","grade":"7","last_modified":"2014-02-26T21:15:39.328Z","name":"Science,
3345
+ encoding: UTF-8
3346
+ string: '{"data":[{"data":{"course_name":"Science, Class 702","course_number":"702","created":"2014-02-26T21:15:39.326Z","district":"4fd43cc56d11340000000005","grade":"7","last_modified":"2014-02-26T21:15:39.328Z","name":"Science,
3347
3347
  Class 702 - 702 - C. Gleichner","period":"4","school":"530e595026403103360ff9ff","sis_id":"902","students":["530e5960049e75a9262cff44","530e5960049e75a9262cff9a","530e5961049e75a9262cffc0","530e5961049e75a9262cffe3","530e5961049e75a9262cffea","530e5961049e75a9262d0015","530e5961049e75a9262d006e","530e5962049e75a9262d00b2","530e5962049e75a9262d010c","530e5962049e75a9262d0164","530e5963049e75a9262d0206","530e5963049e75a9262d0233","530e5964049e75a9262d0269","530e5964049e75a9262d029f","530e5964049e75a9262d02e9","530e5964049e75a9262d02fb","530e5965049e75a9262d0347","530e5965049e75a9262d036e","530e5965049e75a9262d03aa","530e5965049e75a9262d03df","530e5966049e75a9262d04bc","530e5966049e75a9262d04d9","530e5966049e75a9262d04db","530e5967049e75a9262d0523","530e5967049e75a9262d0536","530e5968049e75a9262d0620"],"subject":"science","teacher":"530e5955d50c310f36112be9","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c32"},"uri":"/v1.1/sections/530e597b049e75a9262d0c32"},{"data":{"course_name":"Science,
3348
3348
  Class 703","course_number":"703","created":"2014-02-26T21:15:39.329Z","district":"4fd43cc56d11340000000005","grade":"7","last_modified":"2014-02-26T21:15:39.331Z","name":"Science,
3349
3349
  Class 703 - 703 - C. Gleichner","period":"4","school":"530e595026403103360ff9ff","sis_id":"903","students":["530e5960049e75a9262cff59","530e5960049e75a9262cff99","530e5961049e75a9262cffd5","530e5961049e75a9262d001c","530e5961049e75a9262d008a","530e5962049e75a9262d0144","530e5962049e75a9262d0155","530e5962049e75a9262d015e","530e5963049e75a9262d0200","530e5963049e75a9262d022d","530e5963049e75a9262d023a","530e5964049e75a9262d0275","530e5964049e75a9262d029b","530e5964049e75a9262d02c0","530e5964049e75a9262d02de","530e5965049e75a9262d034a","530e5965049e75a9262d0354","530e5965049e75a9262d03c7","530e5966049e75a9262d0419","530e5966049e75a9262d046d","530e5966049e75a9262d0489","530e5967049e75a9262d0560","530e5967049e75a9262d05b4","530e5967049e75a9262d05bb","530e5968049e75a9262d0621","530e5968049e75a9262d0637"],"subject":"science","teacher":"530e5955d50c310f36112be9","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c33"},"uri":"/v1.1/sections/530e597b049e75a9262d0c33"},{"data":{"course_name":"Science,
@@ -3364,7 +3364,7 @@ http_interactions:
3364
3364
  Remediation, Grade 9","course_number":"105","created":"2014-02-26T21:15:39.354Z","district":"4fd43cc56d11340000000005","grade":"9","last_modified":"2014-02-26T21:15:39.356Z","name":"Science
3365
3365
  Remediation, Grade 9 - 105 - R. Wyman","period":"9","school":"530e595026403103360ff9fd","sis_id":"911","students":["530e5960049e75a9262cff42","530e5960049e75a9262cff58","530e5960049e75a9262cff7a","530e5961049e75a9262cffcd","530e5961049e75a9262d001a","530e5962049e75a9262d00b7","530e5962049e75a9262d00ba","530e5962049e75a9262d0110","530e5962049e75a9262d015f","530e5963049e75a9262d021b","530e5963049e75a9262d0229","530e5966049e75a9262d046c","530e5966049e75a9262d0496","530e5966049e75a9262d04d7","530e5967049e75a9262d0501","530e5967049e75a9262d05be","530e5968049e75a9262d0605","530e5968049e75a9262d0614"],"subject":"science","teacher":"530e5955d50c310f36112bd1","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c3b"},"uri":"/v1.1/sections/530e597b049e75a9262d0c3b"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c31"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597b049e75a9262d0c32"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c3b"}]}'
3366
3366
  http_version:
3367
- recorded_at: Mon, 08 Sep 2014 21:31:11 GMT
3367
+ recorded_at: Tue, 09 Sep 2014 21:48:26 GMT
3368
3368
  - request:
3369
3369
  method: get
3370
3370
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c3b
@@ -3373,7 +3373,7 @@ http_interactions:
3373
3373
  string: ''
3374
3374
  headers:
3375
3375
  Accept:
3376
- - ! '*/*; q=0.5, application/xml'
3376
+ - "*/*; q=0.5, application/xml"
3377
3377
  Accept-Encoding:
3378
3378
  - gzip, deflate
3379
3379
  User-Agent:
@@ -3388,13 +3388,13 @@ http_interactions:
3388
3388
  Access-Control-Allow-Methods:
3389
3389
  - GET,PATCH,POST,DELETE
3390
3390
  Access-Control-Allow-Origin:
3391
- - ! '*'
3391
+ - "*"
3392
3392
  Content-Type:
3393
3393
  - application/json; charset=utf-8
3394
3394
  Date:
3395
- - Mon, 08 Sep 2014 21:31:11 GMT
3395
+ - Tue, 09 Sep 2014 21:48:26 GMT
3396
3396
  Etag:
3397
- - ! '"1018050984"'
3397
+ - '"1018050984"'
3398
3398
  Server:
3399
3399
  - nginx/1.4.7
3400
3400
  X-Powered-By:
@@ -3404,8 +3404,8 @@ http_interactions:
3404
3404
  Connection:
3405
3405
  - keep-alive
3406
3406
  body:
3407
- encoding: US-ASCII
3408
- string: ! '{"data":[{"data":{"course_name":"Kindergarten Social Studies, Class
3407
+ encoding: UTF-8
3408
+ string: '{"data":[{"data":{"course_name":"Kindergarten Social Studies, Class
3409
3409
  001","course_number":"1","created":"2014-02-26T21:15:39.357Z","district":"4fd43cc56d11340000000005","grade":"Kindergarten","last_modified":"2014-02-26T21:15:39.359Z","name":"Kindergarten
3410
3410
  Social Studies, Class 001","period":"3","school":"530e595026403103360ff9fe","sis_id":"912","students":["530e5960049e75a9262cff5d","530e5960049e75a9262cff76","530e5961049e75a9262cffdc","530e5962049e75a9262d00d0","530e5962049e75a9262d012d","530e5963049e75a9262d01c1","530e5963049e75a9262d01d3","530e5963049e75a9262d01e1","530e5964049e75a9262d027a","530e5964049e75a9262d02ae","530e5965049e75a9262d03c0","530e5965049e75a9262d03c6","530e5966049e75a9262d042d","530e5966049e75a9262d0451","530e5966049e75a9262d0479","530e5967049e75a9262d057b","530e5967049e75a9262d05a3","530e5967049e75a9262d05ba","530e5967049e75a9262d05c1","530e5968049e75a9262d05e4"],"subject":"social
3411
3411
  studies","teacher":"530e5955d50c310f36112c02","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c3c"},"uri":"/v1.1/sections/530e597b049e75a9262d0c3c"},{"data":{"course_name":"Kindergarten
@@ -3435,7 +3435,7 @@ http_interactions:
3435
3435
  2 Social Studies, Class 202 - 202 - A. Jones","period":"3","school":"530e595026403103360ff9fe","sis_id":"921","students":["530e5960049e75a9262cff9c","530e5960049e75a9262cff9d","530e5960049e75a9262cffa9","530e5961049e75a9262cffbf","530e5961049e75a9262d0029","530e5961049e75a9262d0052","530e5962049e75a9262d00e2","530e5963049e75a9262d01b9","530e5963049e75a9262d0235","530e5964049e75a9262d0274","530e5965049e75a9262d0367","530e5965049e75a9262d036d","530e5966049e75a9262d03f1","530e5966049e75a9262d0427","530e5966049e75a9262d0440","530e5967049e75a9262d0557","530e5968049e75a9262d05f1","530e5968049e75a9262d05f5","530e5968049e75a9262d0616","530e5968049e75a9262d0625","530e5968049e75a9262d0642"],"subject":"social
3436
3436
  studies","teacher":"530e5955d50c310f36112bfa","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c45"},"uri":"/v1.1/sections/530e597b049e75a9262d0c45"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c3b"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597b049e75a9262d0c3c"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c45"}]}'
3437
3437
  http_version:
3438
- recorded_at: Mon, 08 Sep 2014 21:31:11 GMT
3438
+ recorded_at: Tue, 09 Sep 2014 21:48:26 GMT
3439
3439
  - request:
3440
3440
  method: get
3441
3441
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c45
@@ -3444,7 +3444,7 @@ http_interactions:
3444
3444
  string: ''
3445
3445
  headers:
3446
3446
  Accept:
3447
- - ! '*/*; q=0.5, application/xml'
3447
+ - "*/*; q=0.5, application/xml"
3448
3448
  Accept-Encoding:
3449
3449
  - gzip, deflate
3450
3450
  User-Agent:
@@ -3459,13 +3459,13 @@ http_interactions:
3459
3459
  Access-Control-Allow-Methods:
3460
3460
  - GET,PATCH,POST,DELETE
3461
3461
  Access-Control-Allow-Origin:
3462
- - ! '*'
3462
+ - "*"
3463
3463
  Content-Type:
3464
3464
  - application/json; charset=utf-8
3465
3465
  Date:
3466
- - Mon, 08 Sep 2014 21:31:11 GMT
3466
+ - Tue, 09 Sep 2014 21:48:26 GMT
3467
3467
  Etag:
3468
- - ! '"159029288"'
3468
+ - '"159029288"'
3469
3469
  Server:
3470
3470
  - nginx/1.4.7
3471
3471
  X-Powered-By:
@@ -3475,8 +3475,8 @@ http_interactions:
3475
3475
  Connection:
3476
3476
  - keep-alive
3477
3477
  body:
3478
- encoding: US-ASCII
3479
- string: ! '{"data":[{"data":{"course_name":"Grade 2 Social Studies, Class 203","course_number":"203","created":"2014-02-26T21:15:39.400Z","district":"4fd43cc56d11340000000005","grade":"2","last_modified":"2014-02-26T21:15:39.401Z","name":"Grade
3478
+ encoding: UTF-8
3479
+ string: '{"data":[{"data":{"course_name":"Grade 2 Social Studies, Class 203","course_number":"203","created":"2014-02-26T21:15:39.400Z","district":"4fd43cc56d11340000000005","grade":"2","last_modified":"2014-02-26T21:15:39.401Z","name":"Grade
3480
3480
  2 Social Studies, Class 203","period":"2","school":"530e595026403103360ff9fe","sis_id":"922","students":["530e5960049e75a9262cff4a","530e5960049e75a9262cff72","530e5962049e75a9262d00bc","530e5962049e75a9262d010a","530e5962049e75a9262d0138","530e5962049e75a9262d016a","530e5963049e75a9262d0201","530e5963049e75a9262d022a","530e5963049e75a9262d0251","530e5964049e75a9262d027b","530e5964049e75a9262d02f9","530e5965049e75a9262d0318","530e5965049e75a9262d034d","530e5965049e75a9262d0369","530e5966049e75a9262d0423","530e5966049e75a9262d0436","530e5966049e75a9262d045a","530e5966049e75a9262d0486","530e5967049e75a9262d0521","530e5967049e75a9262d0525","530e5967049e75a9262d05c3"],"subject":"social
3481
3481
  studies","teacher":"530e5955d50c310f36112c04","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c46"},"uri":"/v1.1/sections/530e597b049e75a9262d0c46"},{"data":{"course_name":"Grade
3482
3482
  3 Social Studies, Class 301","course_number":"301","created":"2014-02-26T21:15:39.402Z","district":"4fd43cc56d11340000000005","grade":"3","last_modified":"2014-02-26T21:15:39.404Z","name":"Grade
@@ -3507,7 +3507,7 @@ http_interactions:
3507
3507
  5 Social Studies, Class 503","period":"2","school":"530e595026403103360ff9fe","sis_id":"931","students":["530e5961049e75a9262d005f","530e5961049e75a9262d0065","530e5962049e75a9262d00af","530e5962049e75a9262d00fd","530e5962049e75a9262d012f","530e5962049e75a9262d015c","530e5962049e75a9262d017e","530e5963049e75a9262d01a5","530e5963049e75a9262d01d4","530e5964049e75a9262d0279","530e5964049e75a9262d02a4","530e5965049e75a9262d033a","530e5965049e75a9262d036a","530e5966049e75a9262d041d","530e5966049e75a9262d0490","530e5967049e75a9262d05b1","530e5968049e75a9262d05e6","530e5968049e75a9262d0604","530e5968049e75a9262d0609","530e5968049e75a9262d062c","530e5968049e75a9262d0638"],"subject":"social
3508
3508
  studies","teacher":"530e5955d50c310f36112bd4","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c4f"},"uri":"/v1.1/sections/530e597b049e75a9262d0c4f"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c45"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597b049e75a9262d0c46"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c4f"}]}'
3509
3509
  http_version:
3510
- recorded_at: Mon, 08 Sep 2014 21:31:11 GMT
3510
+ recorded_at: Tue, 09 Sep 2014 21:48:26 GMT
3511
3511
  - request:
3512
3512
  method: get
3513
3513
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c4f
@@ -3516,7 +3516,7 @@ http_interactions:
3516
3516
  string: ''
3517
3517
  headers:
3518
3518
  Accept:
3519
- - ! '*/*; q=0.5, application/xml'
3519
+ - "*/*; q=0.5, application/xml"
3520
3520
  Accept-Encoding:
3521
3521
  - gzip, deflate
3522
3522
  User-Agent:
@@ -3531,13 +3531,13 @@ http_interactions:
3531
3531
  Access-Control-Allow-Methods:
3532
3532
  - GET,PATCH,POST,DELETE
3533
3533
  Access-Control-Allow-Origin:
3534
- - ! '*'
3534
+ - "*"
3535
3535
  Content-Type:
3536
3536
  - application/json; charset=utf-8
3537
3537
  Date:
3538
- - Mon, 08 Sep 2014 21:31:11 GMT
3538
+ - Tue, 09 Sep 2014 21:48:27 GMT
3539
3539
  Etag:
3540
- - ! '"-570791926"'
3540
+ - '"-570791926"'
3541
3541
  Server:
3542
3542
  - nginx/1.4.7
3543
3543
  X-Powered-By:
@@ -3547,8 +3547,8 @@ http_interactions:
3547
3547
  Connection:
3548
3548
  - keep-alive
3549
3549
  body:
3550
- encoding: US-ASCII
3551
- string: ! '{"data":[{"data":{"course_name":"Social Studies, Class 601","course_number":"601","created":"2014-02-26T21:15:39.427Z","district":"4fd43cc56d11340000000005","grade":"6","last_modified":"2014-02-26T21:15:39.429Z","name":"Social
3550
+ encoding: UTF-8
3551
+ string: '{"data":[{"data":{"course_name":"Social Studies, Class 601","course_number":"601","created":"2014-02-26T21:15:39.427Z","district":"4fd43cc56d11340000000005","grade":"6","last_modified":"2014-02-26T21:15:39.429Z","name":"Social
3552
3552
  Studies, Class 601 - 601 - P. Mohr","period":"2","school":"530e595026403103360ff9ff","sis_id":"932","students":["530e5960049e75a9262cff25","530e5960049e75a9262cff50","530e5960049e75a9262cff61","530e5960049e75a9262cff86","530e5961049e75a9262cffb4","530e5962049e75a9262d0125","530e5962049e75a9262d0129","530e5963049e75a9262d0204","530e5963049e75a9262d025e","530e5963049e75a9262d0260","530e5964049e75a9262d0266","530e5964049e75a9262d027d","530e5964049e75a9262d02b2","530e5965049e75a9262d036b","530e5965049e75a9262d03c3","530e5966049e75a9262d041a","530e5966049e75a9262d0460","530e5966049e75a9262d0472","530e5966049e75a9262d04af","530e5967049e75a9262d0522","530e5967049e75a9262d055b","530e5967049e75a9262d0589","530e5968049e75a9262d05d7","530e5968049e75a9262d05d9","530e5968049e75a9262d05df","530e5968049e75a9262d060f"],"subject":"social
3553
3553
  studies","teacher":"530e5955d50c310f36112be2","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c50"},"uri":"/v1.1/sections/530e597b049e75a9262d0c50"},{"data":{"course_name":"Social
3554
3554
  Studies, Class 602","course_number":"602","created":"2014-02-26T21:15:39.430Z","district":"4fd43cc56d11340000000005","grade":"6","last_modified":"2014-02-26T21:15:39.433Z","name":"Social
@@ -3578,7 +3578,7 @@ http_interactions:
3578
3578
  II","course_number":"201","created":"2014-02-26T21:15:39.456Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:39.458Z","name":"Spanish
3579
3579
  II - 201 - L. Jacobs (Section 1)","period":"2","school":"530e595026403103360ff9fd","sis_id":"941","students":["530e5960049e75a9262cff1f","530e5960049e75a9262cff26","530e5960049e75a9262cff39","530e5960049e75a9262cff4f","530e5960049e75a9262cff95","530e5961049e75a9262cffd9","530e5961049e75a9262d0080","530e5961049e75a9262d0082","530e5962049e75a9262d00b6","530e5962049e75a9262d0102","530e5962049e75a9262d0172","530e5963049e75a9262d017f","530e5963049e75a9262d0180","530e5963049e75a9262d0202","530e5963049e75a9262d0253","530e5964049e75a9262d0288","530e5964049e75a9262d0300","530e5965049e75a9262d039e","530e5965049e75a9262d03b6","530e5965049e75a9262d03d2","530e5965049e75a9262d03e8","530e5966049e75a9262d03f5","530e5966049e75a9262d041c","530e5966049e75a9262d0455","530e5966049e75a9262d0475","530e5966049e75a9262d04ba","530e5967049e75a9262d0544","530e5967049e75a9262d0586","530e5967049e75a9262d058b","530e5967049e75a9262d0596","530e5967049e75a9262d05bf","530e5968049e75a9262d061f","530e5968049e75a9262d0645"],"subject":"language","teacher":"530e5955d50c310f36112bf8","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c59"},"uri":"/v1.1/sections/530e597b049e75a9262d0c59"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c4f"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597b049e75a9262d0c50"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c59"}]}'
3580
3580
  http_version:
3581
- recorded_at: Mon, 08 Sep 2014 21:31:11 GMT
3581
+ recorded_at: Tue, 09 Sep 2014 21:48:27 GMT
3582
3582
  - request:
3583
3583
  method: get
3584
3584
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c59
@@ -3587,7 +3587,7 @@ http_interactions:
3587
3587
  string: ''
3588
3588
  headers:
3589
3589
  Accept:
3590
- - ! '*/*; q=0.5, application/xml'
3590
+ - "*/*; q=0.5, application/xml"
3591
3591
  Accept-Encoding:
3592
3592
  - gzip, deflate
3593
3593
  User-Agent:
@@ -3602,13 +3602,13 @@ http_interactions:
3602
3602
  Access-Control-Allow-Methods:
3603
3603
  - GET,PATCH,POST,DELETE
3604
3604
  Access-Control-Allow-Origin:
3605
- - ! '*'
3605
+ - "*"
3606
3606
  Content-Type:
3607
3607
  - application/json; charset=utf-8
3608
3608
  Date:
3609
- - Mon, 08 Sep 2014 21:31:11 GMT
3609
+ - Tue, 09 Sep 2014 21:48:27 GMT
3610
3610
  Etag:
3611
- - ! '"-522155333"'
3611
+ - '"-522155333"'
3612
3612
  Server:
3613
3613
  - nginx/1.4.7
3614
3614
  X-Powered-By:
@@ -3618,8 +3618,8 @@ http_interactions:
3618
3618
  Connection:
3619
3619
  - keep-alive
3620
3620
  body:
3621
- encoding: US-ASCII
3622
- string: ! '{"data":[{"data":{"course_name":"Spanish II","course_number":"201","created":"2014-02-26T21:15:39.459Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:39.461Z","name":"Spanish
3621
+ encoding: UTF-8
3622
+ string: '{"data":[{"data":{"course_name":"Spanish II","course_number":"201","created":"2014-02-26T21:15:39.459Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:39.461Z","name":"Spanish
3623
3623
  II - 201 - R. Gadsby (Section 2)","period":"2","school":"530e595026403103360ff9fd","sis_id":"942","students":["530e5960049e75a9262cff21","530e5960049e75a9262cff48","530e5960049e75a9262cff96","530e5961049e75a9262d0027","530e5961049e75a9262d0035","530e5961049e75a9262d0037","530e5961049e75a9262d004e","530e5961049e75a9262d0056","530e5962049e75a9262d00b5","530e5962049e75a9262d00e3","530e5962049e75a9262d012e","530e5962049e75a9262d0133","530e5962049e75a9262d0156","530e5962049e75a9262d0158","530e5963049e75a9262d01cc","530e5963049e75a9262d01f5","530e5964049e75a9262d0282","530e5964049e75a9262d0297","530e5965049e75a9262d031b","530e5965049e75a9262d0383","530e5965049e75a9262d03cf","530e5966049e75a9262d040c","530e5966049e75a9262d0418","530e5966049e75a9262d043c","530e5967049e75a9262d0594","530e5967049e75a9262d059e","530e5967049e75a9262d05b3","530e5967049e75a9262d05b9","530e5968049e75a9262d05e9","530e5968049e75a9262d05f7","530e5968049e75a9262d0617","530e5968049e75a9262d062f","530e5968049e75a9262d0632","530e5968049e75a9262d0647"],"subject":"language","teacher":"530e5955d50c310f36112c08","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c5a"},"uri":"/v1.1/sections/530e597b049e75a9262d0c5a"},{"data":{"course_name":"Spanish
3624
3624
  III","course_number":"301","created":"2014-02-26T21:15:39.462Z","district":"4fd43cc56d11340000000005","grade":"11","last_modified":"2014-02-26T21:15:39.464Z","name":"Spanish
3625
3625
  III - 301 - R. Gadsby (Section 1)","period":"2","school":"530e595026403103360ff9fd","sis_id":"943","students":["530e5960049e75a9262cff4c","530e5960049e75a9262cff4d","530e5960049e75a9262cff53","530e5960049e75a9262cff7c","530e5960049e75a9262cff98","530e5961049e75a9262d0005","530e5961049e75a9262d002e","530e5961049e75a9262d004c","530e5961049e75a9262d005a","530e5961049e75a9262d005c","530e5962049e75a9262d009e","530e5962049e75a9262d00b3","530e5962049e75a9262d00bd","530e5962049e75a9262d00c3","530e5962049e75a9262d0106","530e5963049e75a9262d019d","530e5963049e75a9262d01a1","530e5963049e75a9262d01a7","530e5963049e75a9262d01cd","530e5963049e75a9262d01d5","530e5963049e75a9262d01fc","530e5963049e75a9262d01fd","530e5963049e75a9262d024c","530e5963049e75a9262d0255","530e5963049e75a9262d0259","530e5964049e75a9262d029d","530e5964049e75a9262d02a5","530e5964049e75a9262d02d6","530e5964049e75a9262d02eb","530e5964049e75a9262d02fd","530e5966049e75a9262d03f2","530e5966049e75a9262d0420","530e5966049e75a9262d044e","530e5966049e75a9262d046b","530e5966049e75a9262d04a3","530e5966049e75a9262d04b9","530e5967049e75a9262d04ff","530e5967049e75a9262d0534","530e5967049e75a9262d053b","530e5967049e75a9262d0564","530e5967049e75a9262d0568","530e5967049e75a9262d058d","530e5968049e75a9262d05c7","530e5968049e75a9262d05d2","530e5968049e75a9262d05ea","530e5968049e75a9262d0633","530e5968049e75a9262d0634","530e5968049e75a9262d0636","530e5968049e75a9262d0649","530e5968049e75a9262d064b"],"subject":"language","teacher":"530e5955d50c310f36112c08","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c5b"},"uri":"/v1.1/sections/530e597b049e75a9262d0c5b"},{"data":{"course_name":"AP
@@ -3642,7 +3642,7 @@ http_interactions:
3642
3642
  Programming - 300 - L. Corwin","period":"7","school":"530e595026403103360ff9fd","sis_id":"951","students":["530e5960049e75a9262cff4d","530e5960049e75a9262cff53","530e5961049e75a9262cffe1","530e5962049e75a9262d010e","530e5963049e75a9262d019d","530e5963049e75a9262d01cd","530e5963049e75a9262d01d2","530e5963049e75a9262d01fc","530e5963049e75a9262d01fd","530e5963049e75a9262d0255","530e5964049e75a9262d0281","530e5964049e75a9262d02eb","530e5965049e75a9262d037c","530e5966049e75a9262d0408","530e5966049e75a9262d0420","530e5966049e75a9262d048f","530e5967049e75a9262d05a1","530e5968049e75a9262d05eb","530e5968049e75a9262d0633","530e5968049e75a9262d0639"],"subject":"technology
3643
3643
  and engineering","teacher":"530e5955d50c310f36112c01","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c63"},"uri":"/v1.1/sections/530e597b049e75a9262d0c63"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c59"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597b049e75a9262d0c5a"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c63"}]}'
3644
3644
  http_version:
3645
- recorded_at: Mon, 08 Sep 2014 21:31:11 GMT
3645
+ recorded_at: Tue, 09 Sep 2014 21:48:27 GMT
3646
3646
  - request:
3647
3647
  method: get
3648
3648
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c63
@@ -3651,7 +3651,7 @@ http_interactions:
3651
3651
  string: ''
3652
3652
  headers:
3653
3653
  Accept:
3654
- - ! '*/*; q=0.5, application/xml'
3654
+ - "*/*; q=0.5, application/xml"
3655
3655
  Accept-Encoding:
3656
3656
  - gzip, deflate
3657
3657
  User-Agent:
@@ -3666,13 +3666,13 @@ http_interactions:
3666
3666
  Access-Control-Allow-Methods:
3667
3667
  - GET,PATCH,POST,DELETE
3668
3668
  Access-Control-Allow-Origin:
3669
- - ! '*'
3669
+ - "*"
3670
3670
  Content-Type:
3671
3671
  - application/json; charset=utf-8
3672
3672
  Date:
3673
- - Mon, 08 Sep 2014 21:31:12 GMT
3673
+ - Tue, 09 Sep 2014 21:48:27 GMT
3674
3674
  Etag:
3675
- - ! '"322596726"'
3675
+ - '"322596726"'
3676
3676
  Server:
3677
3677
  - nginx/1.4.7
3678
3678
  X-Powered-By:
@@ -3682,8 +3682,8 @@ http_interactions:
3682
3682
  Connection:
3683
3683
  - keep-alive
3684
3684
  body:
3685
- encoding: US-ASCII
3686
- string: ! '{"data":[{"data":{"course_name":"AP Computer Science","course_number":"401","created":"2014-02-26T21:15:39.489Z","district":"4fd43cc56d11340000000005","grade":"12","last_modified":"2014-02-26T21:15:39.490Z","name":"AP
3685
+ encoding: UTF-8
3686
+ string: '{"data":[{"data":{"course_name":"AP Computer Science","course_number":"401","created":"2014-02-26T21:15:39.489Z","district":"4fd43cc56d11340000000005","grade":"12","last_modified":"2014-02-26T21:15:39.490Z","name":"AP
3687
3687
  Computer Science - 401 - L. Corwin (Section 1)","period":"8","school":"530e595026403103360ff9fd","sis_id":"952","students":["530e5960049e75a9262cff90","530e5961049e75a9262cffef","530e5961049e75a9262cfff7","530e5961049e75a9262d0039","530e5963049e75a9262d0227","530e5964049e75a9262d02ac","530e5964049e75a9262d02b5","530e5964049e75a9262d02fe","530e5965049e75a9262d0332","530e5965049e75a9262d0363","530e5965049e75a9262d03e5","530e5966049e75a9262d03f6","530e5966049e75a9262d0467","530e5967049e75a9262d04f7","530e5967049e75a9262d0584","530e5967049e75a9262d05bc","530e5967049e75a9262d05bd","530e5968049e75a9262d05dc","530e5968049e75a9262d05ec","530e5968049e75a9262d063b"],"subject":"technology
3688
3688
  and engineering","teacher":"530e5955d50c310f36112c01","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c64"},"uri":"/v1.1/sections/530e597b049e75a9262d0c64"},{"data":{"course_name":"Technology,
3689
3689
  Class 601","course_number":"601","created":"2014-02-26T21:15:39.491Z","district":"4fd43cc56d11340000000005","grade":"6","last_modified":"2014-02-26T21:15:39.493Z","name":"Technology,
@@ -3711,5 +3711,5 @@ http_interactions:
3711
3711
  to Visual Arts - 100 - R. Plant","period":"1","school":"530e595026403103360ff9fd","sis_id":"960","students":["530e5960049e75a9262cff3c","530e5961049e75a9262cffcd","530e5961049e75a9262d001a","530e5961049e75a9262d0038","530e5961049e75a9262d0048","530e5961049e75a9262d0085","530e5962049e75a9262d00e8","530e5962049e75a9262d015f","530e5963049e75a9262d01a2","530e5963049e75a9262d022f","530e5964049e75a9262d02d3","530e5965049e75a9262d0325","530e5966049e75a9262d04d7","530e5967049e75a9262d0501","530e5967049e75a9262d052d","530e5967049e75a9262d05b5","530e5967049e75a9262d05be","530e5968049e75a9262d05cb","530e5968049e75a9262d061c","530e5968049e75a9262d063c"],"subject":"arts
3712
3712
  and music","teacher":"530e5955d50c310f36112c09","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597b049e75a9262d0c6c"},"uri":"/v1.1/sections/530e597b049e75a9262d0c6c"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c63"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&ending_before=530e597b049e75a9262d0c64"}]}'
3713
3713
  http_version:
3714
- recorded_at: Mon, 08 Sep 2014 21:31:12 GMT
3714
+ recorded_at: Tue, 09 Sep 2014 21:48:27 GMT
3715
3715
  recorded_with: VCR 2.4.0