clever-ruby 0.6.2 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (88) hide show
  1. checksums.yaml +8 -8
  2. data/CHANGELOG.md +5 -0
  3. data/lib/clever-ruby.rb +3 -0
  4. data/lib/clever-ruby/api_operations/nested_list.rb +46 -0
  5. data/lib/clever-ruby/api_resource.rb +67 -27
  6. data/lib/clever-ruby/clever_object.rb +8 -2
  7. data/lib/clever-ruby/district.rb +25 -11
  8. data/lib/clever-ruby/event.rb +1 -1
  9. data/lib/clever-ruby/nested_resource.rb +40 -0
  10. data/lib/clever-ruby/school.rb +1 -1
  11. data/lib/clever-ruby/section.rb +1 -1
  12. data/lib/clever-ruby/student.rb +13 -1
  13. data/lib/clever-ruby/teacher.rb +1 -1
  14. data/lib/clever-ruby/util.rb +16 -17
  15. data/lib/clever-ruby/version.rb +1 -1
  16. data/test/data/vcr_cassettes/district_count.yml +6 -6
  17. data/test/data/vcr_cassettes/{districts_events.yml → district_events.yml} +29 -164
  18. data/test/data/vcr_cassettes/district_find_by_page.yml +12 -12
  19. data/test/data/vcr_cassettes/district_find_multiple.yml +12 -12
  20. data/test/data/vcr_cassettes/district_find_one.yml +12 -12
  21. data/test/data/vcr_cassettes/{districts_schools.yml → district_schools.yml} +25 -148
  22. data/test/data/vcr_cassettes/district_sections.yml +2289 -0
  23. data/test/data/vcr_cassettes/district_students.yml +2339 -0
  24. data/test/data/vcr_cassettes/{districts_teachers.yml → district_teachers.yml} +25 -148
  25. data/test/data/vcr_cassettes/districts.yml +12 -12
  26. data/test/data/vcr_cassettes/districts_event_pages.yml +76 -469
  27. data/test/data/vcr_cassettes/districts_school_pages.yml +31 -154
  28. data/test/data/vcr_cassettes/districts_section_pages.yml +284 -407
  29. data/test/data/vcr_cassettes/districts_student_pages.yml +165 -288
  30. data/test/data/vcr_cassettes/districts_teacher_pages.yml +81 -204
  31. data/test/data/vcr_cassettes/error_handling.yml +17 -58
  32. data/test/data/vcr_cassettes/event_count.yml +7 -7
  33. data/test/data/vcr_cassettes/event_find_by_page.yml +16 -22
  34. data/test/data/vcr_cassettes/event_find_multiple.yml +19 -28
  35. data/test/data/vcr_cassettes/event_find_one.yml +16 -22
  36. data/test/data/vcr_cassettes/events.yml +16 -22
  37. data/test/data/vcr_cassettes/school_count.yml +6 -6
  38. data/test/data/vcr_cassettes/school_district.yml +140 -0
  39. data/test/data/vcr_cassettes/school_events.yml +181 -0
  40. data/test/data/vcr_cassettes/school_find_by_page.yml +13 -13
  41. data/test/data/vcr_cassettes/school_find_multiple.yml +14 -14
  42. data/test/data/vcr_cassettes/school_find_one.yml +13 -13
  43. data/test/data/vcr_cassettes/school_sections.yml +1119 -0
  44. data/test/data/vcr_cassettes/school_students.yml +1033 -0
  45. data/test/data/vcr_cassettes/school_teachers.yml +257 -0
  46. data/test/data/vcr_cassettes/schools.yml +13 -13
  47. data/test/data/vcr_cassettes/schools_optional_attributes.yml +7 -7
  48. data/test/data/vcr_cassettes/section_count.yml +6 -6
  49. data/test/data/vcr_cassettes/section_district.yml +393 -0
  50. data/test/data/vcr_cassettes/section_events.yml +434 -0
  51. data/test/data/vcr_cassettes/section_find_by_page.yml +34 -34
  52. data/test/data/vcr_cassettes/section_find_multiple.yml +14 -14
  53. data/test/data/vcr_cassettes/section_find_one.yml +14 -14
  54. data/test/data/vcr_cassettes/section_school.yml +396 -0
  55. data/test/data/vcr_cassettes/section_students.yml +456 -0
  56. data/test/data/vcr_cassettes/section_teacher.yml +394 -0
  57. data/test/data/vcr_cassettes/sections.yml +34 -34
  58. data/test/data/vcr_cassettes/student_count.yml +6 -6
  59. data/test/data/vcr_cassettes/student_district.yml +202 -0
  60. data/test/data/vcr_cassettes/student_events.yml +243 -0
  61. data/test/data/vcr_cassettes/student_find_by_page.yml +83 -83
  62. data/test/data/vcr_cassettes/student_find_multiple.yml +14 -14
  63. data/test/data/vcr_cassettes/student_find_one.yml +14 -14
  64. data/test/data/vcr_cassettes/student_school.yml +205 -0
  65. data/test/data/vcr_cassettes/student_sections.yml +269 -0
  66. data/test/data/vcr_cassettes/student_teacher.yml +161 -0
  67. data/test/data/vcr_cassettes/student_teachers.yml +245 -0
  68. data/test/data/vcr_cassettes/students.yml +83 -83
  69. data/test/data/vcr_cassettes/teacher_count.yml +6 -6
  70. data/test/data/vcr_cassettes/teacher_district.yml +218 -0
  71. data/test/data/vcr_cassettes/teacher_events.yml +259 -0
  72. data/test/data/vcr_cassettes/teacher_find_by_page.yml +13 -13
  73. data/test/data/vcr_cassettes/teacher_find_multiple.yml +14 -14
  74. data/test/data/vcr_cassettes/teacher_find_one.yml +13 -13
  75. data/test/data/vcr_cassettes/teacher_school.yml +221 -0
  76. data/test/data/vcr_cassettes/teacher_sections.yml +291 -0
  77. data/test/data/vcr_cassettes/teacher_students.yml +293 -0
  78. data/test/data/vcr_cassettes/teachers.yml +13 -13
  79. data/test/integration/api_operations/list_test.rb +1 -1
  80. data/test/integration/district_test.rb +17 -49
  81. data/test/integration/error_handling_test.rb +1 -1
  82. data/test/integration/nested_resource_test.rb +27 -0
  83. data/test/unit/api_resource_test.rb +32 -0
  84. data/test/unit/optional_attributes_test.rb +7 -13
  85. metadata +60 -14
  86. data/test/data/vcr_cassettes/districts_sections.yml +0 -818
  87. data/test/data/vcr_cassettes/districts_students.yml +0 -436
  88. data/test/data/vcr_cassettes/districts_students_filtered.yml +0 -170
@@ -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
- - Tue, 09 Sep 2014 21:48:20 GMT
30
+ - Fri, 12 Sep 2014 20:49:08 GMT
31
31
  Server:
32
32
  - nginx/1.4.7
33
33
  X-Powered-By:
@@ -36,52 +36,11 @@ http_interactions:
36
36
  - '217'
37
37
  Connection:
38
38
  - keep-alive
39
- body:
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
- http_version:
43
- recorded_at: Tue, 09 Sep 2014 21:48:20 GMT
44
- - request:
45
- method: get
46
- uri: https://DEMO_KEY:@api.clever.com/v1.1/districts/4fd43cc56d11340000000005
47
39
  body:
48
40
  encoding: US-ASCII
49
- string: ''
50
- headers:
51
- Accept:
52
- - "*/*; q=0.5, application/xml"
53
- Accept-Encoding:
54
- - gzip, deflate
55
- User-Agent:
56
- - Ruby
57
- response:
58
- status:
59
- code: 200
60
- message: OK
61
- headers:
62
- Access-Control-Allow-Headers:
63
- - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
64
- Access-Control-Allow-Methods:
65
- - GET,PATCH,POST,DELETE
66
- Access-Control-Allow-Origin:
67
- - "*"
68
- Content-Type:
69
- - application/json; charset=utf-8
70
- Date:
71
- - Tue, 09 Sep 2014 21:48:20 GMT
72
- Server:
73
- - nginx/1.4.7
74
- X-Powered-By:
75
- - Express
76
- Content-Length:
77
- - '518'
78
- Connection:
79
- - keep-alive
80
- body:
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"}]}'
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"}]}'
83
42
  http_version:
84
- recorded_at: Tue, 09 Sep 2014 21:48:20 GMT
43
+ recorded_at: Fri, 12 Sep 2014 20:49:08 GMT
85
44
  - request:
86
45
  method: get
87
46
  uri: https://DEMO_KEY:@api.clever.com/v1.1/districts/4fd43cc56d11340000000005
@@ -90,7 +49,7 @@ http_interactions:
90
49
  string: ''
91
50
  headers:
92
51
  Accept:
93
- - "*/*; q=0.5, application/xml"
52
+ - ! '*/*; q=0.5, application/xml'
94
53
  Accept-Encoding:
95
54
  - gzip, deflate
96
55
  User-Agent:
@@ -105,11 +64,11 @@ http_interactions:
105
64
  Access-Control-Allow-Methods:
106
65
  - GET,PATCH,POST,DELETE
107
66
  Access-Control-Allow-Origin:
108
- - "*"
67
+ - ! '*'
109
68
  Content-Type:
110
69
  - application/json; charset=utf-8
111
70
  Date:
112
- - Tue, 09 Sep 2014 21:48:20 GMT
71
+ - Fri, 12 Sep 2014 20:49:08 GMT
113
72
  Server:
114
73
  - nginx/1.4.7
115
74
  X-Powered-By:
@@ -119,10 +78,10 @@ http_interactions:
119
78
  Connection:
120
79
  - keep-alive
121
80
  body:
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"}]}'
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"}]}'
124
83
  http_version:
125
- recorded_at: Tue, 09 Sep 2014 21:48:20 GMT
84
+ recorded_at: Fri, 12 Sep 2014 20:49:08 GMT
126
85
  - request:
127
86
  method: get
128
87
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/schools?limit=100000
@@ -131,7 +90,7 @@ http_interactions:
131
90
  string: ''
132
91
  headers:
133
92
  Accept:
134
- - "*/*; q=0.5, application/xml"
93
+ - ! '*/*; q=0.5, application/xml'
135
94
  Accept-Encoding:
136
95
  - gzip, deflate
137
96
  User-Agent:
@@ -146,13 +105,13 @@ http_interactions:
146
105
  Access-Control-Allow-Methods:
147
106
  - GET,PATCH,POST,DELETE
148
107
  Access-Control-Allow-Origin:
149
- - "*"
108
+ - ! '*'
150
109
  Content-Type:
151
110
  - application/json; charset=utf-8
152
111
  Date:
153
- - Tue, 09 Sep 2014 21:48:20 GMT
112
+ - Fri, 12 Sep 2014 20:49:08 GMT
154
113
  Etag:
155
- - '"-1820526720"'
114
+ - ! '"-1820526720"'
156
115
  Server:
157
116
  - nginx/1.4.7
158
117
  X-Powered-By:
@@ -162,8 +121,8 @@ http_interactions:
162
121
  Connection:
163
122
  - keep-alive
164
123
  body:
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
124
+ encoding: US-ASCII
125
+ 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
126
  5th Avenue","city":"New York","state":"NY","zip":"10001"},"low_grade":"9","name":"Clever
168
127
  High School","nces_id":"360008000000","phone":"(212) 555-1212","principal":{"name":"Theodora
169
128
  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,89 +133,7 @@ http_interactions:
174
133
  Middle School","nces_id":"360001000000","phone":"(718) 555-8989","principal":{"name":"Leonard
175
134
  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?limit=100000"}]}'
176
135
  http_version:
177
- recorded_at: Tue, 09 Sep 2014 21:48:20 GMT
178
- - request:
179
- method: get
180
- uri: https://DEMO_KEY:@api.clever.com/v1.1/districts/4fd43cc56d11340000000005
181
- body:
182
- encoding: US-ASCII
183
- string: ''
184
- headers:
185
- Accept:
186
- - "*/*; q=0.5, application/xml"
187
- Accept-Encoding:
188
- - gzip, deflate
189
- User-Agent:
190
- - Ruby
191
- response:
192
- status:
193
- code: 200
194
- message: OK
195
- headers:
196
- Access-Control-Allow-Headers:
197
- - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
198
- Access-Control-Allow-Methods:
199
- - GET,PATCH,POST,DELETE
200
- Access-Control-Allow-Origin:
201
- - "*"
202
- Content-Type:
203
- - application/json; charset=utf-8
204
- Date:
205
- - Tue, 09 Sep 2014 21:48:20 GMT
206
- Server:
207
- - nginx/1.4.7
208
- X-Powered-By:
209
- - Express
210
- Content-Length:
211
- - '518'
212
- Connection:
213
- - keep-alive
214
- body:
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
- http_version:
218
- recorded_at: Tue, 09 Sep 2014 21:48:20 GMT
219
- - request:
220
- method: get
221
- uri: https://DEMO_KEY:@api.clever.com/v1.1/districts/4fd43cc56d11340000000005
222
- body:
223
- encoding: US-ASCII
224
- string: ''
225
- headers:
226
- Accept:
227
- - "*/*; q=0.5, application/xml"
228
- Accept-Encoding:
229
- - gzip, deflate
230
- User-Agent:
231
- - Ruby
232
- response:
233
- status:
234
- code: 200
235
- message: OK
236
- headers:
237
- Access-Control-Allow-Headers:
238
- - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
239
- Access-Control-Allow-Methods:
240
- - GET,PATCH,POST,DELETE
241
- Access-Control-Allow-Origin:
242
- - "*"
243
- Content-Type:
244
- - application/json; charset=utf-8
245
- Date:
246
- - Tue, 09 Sep 2014 21:48:20 GMT
247
- Server:
248
- - nginx/1.4.7
249
- X-Powered-By:
250
- - Express
251
- Content-Length:
252
- - '518'
253
- Connection:
254
- - keep-alive
255
- body:
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
- http_version:
259
- recorded_at: Tue, 09 Sep 2014 21:48:20 GMT
136
+ recorded_at: Fri, 12 Sep 2014 20:49:08 GMT
260
137
  - request:
261
138
  method: get
262
139
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/schools?limit=2
@@ -265,7 +142,7 @@ http_interactions:
265
142
  string: ''
266
143
  headers:
267
144
  Accept:
268
- - "*/*; q=0.5, application/xml"
145
+ - ! '*/*; q=0.5, application/xml'
269
146
  Accept-Encoding:
270
147
  - gzip, deflate
271
148
  User-Agent:
@@ -280,13 +157,13 @@ http_interactions:
280
157
  Access-Control-Allow-Methods:
281
158
  - GET,PATCH,POST,DELETE
282
159
  Access-Control-Allow-Origin:
283
- - "*"
160
+ - ! '*'
284
161
  Content-Type:
285
162
  - application/json; charset=utf-8
286
163
  Date:
287
- - Tue, 09 Sep 2014 21:48:20 GMT
164
+ - Fri, 12 Sep 2014 20:49:08 GMT
288
165
  Etag:
289
- - '"1588311031"'
166
+ - ! '"1588311031"'
290
167
  Server:
291
168
  - nginx/1.4.7
292
169
  X-Powered-By:
@@ -296,8 +173,8 @@ http_interactions:
296
173
  Connection:
297
174
  - keep-alive
298
175
  body:
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
176
+ encoding: US-ASCII
177
+ 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
178
  5th Avenue","city":"New York","state":"NY","zip":"10001"},"low_grade":"9","name":"Clever
302
179
  High School","nces_id":"360008000000","phone":"(212) 555-1212","principal":{"name":"Theodora
303
180
  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
@@ -305,7 +182,7 @@ http_interactions:
305
182
  Elementary School","nces_id":"360007000000","phone":"(718) 555-4567","principal":{"name":"Cecilia
306
183
  Roderick","email":"ceciliar@mailinator.com"},"school_number":"13K123","sis_id":"13K123","state_id":"30890","id":"530e595026403103360ff9fe"},"uri":"/v1.1/schools/530e595026403103360ff9fe"}],"paging":{"current":1,"total":2,"count":3},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools?limit=2"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools?limit=2&starting_after=530e595026403103360ff9fe"}]}'
307
184
  http_version:
308
- recorded_at: Tue, 09 Sep 2014 21:48:20 GMT
185
+ recorded_at: Fri, 12 Sep 2014 20:49:08 GMT
309
186
  - request:
310
187
  method: get
311
188
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/schools?limit=2&starting_after=530e595026403103360ff9fe
@@ -314,7 +191,7 @@ http_interactions:
314
191
  string: ''
315
192
  headers:
316
193
  Accept:
317
- - "*/*; q=0.5, application/xml"
194
+ - ! '*/*; q=0.5, application/xml'
318
195
  Accept-Encoding:
319
196
  - gzip, deflate
320
197
  User-Agent:
@@ -329,11 +206,11 @@ http_interactions:
329
206
  Access-Control-Allow-Methods:
330
207
  - GET,PATCH,POST,DELETE
331
208
  Access-Control-Allow-Origin:
332
- - "*"
209
+ - ! '*'
333
210
  Content-Type:
334
211
  - application/json; charset=utf-8
335
212
  Date:
336
- - Tue, 09 Sep 2014 21:48:20 GMT
213
+ - Fri, 12 Sep 2014 20:49:09 GMT
337
214
  Server:
338
215
  - nginx/1.4.7
339
216
  X-Powered-By:
@@ -343,11 +220,11 @@ http_interactions:
343
220
  Connection:
344
221
  - keep-alive
345
222
  body:
346
- encoding: UTF-8
347
- string: '{"data":[{"data":{"created":"2014-02-26T21:14:56.671Z","district":"4fd43cc56d11340000000005","high_grade":"8","last_modified":"2014-02-26T21:14:56.673Z","location":{"address":"322
223
+ encoding: US-ASCII
224
+ string: ! '{"data":[{"data":{"created":"2014-02-26T21:14:56.671Z","district":"4fd43cc56d11340000000005","high_grade":"8","last_modified":"2014-02-26T21:14:56.673Z","location":{"address":"322
348
225
  Old Beach 88th Street","city":"Rockaway Beach","state":"NY","zip":"11693"},"low_grade":"6","name":"Clever
349
226
  Middle School","nces_id":"360001000000","phone":"(718) 555-8989","principal":{"name":"Leonard
350
227
  Springsteen","email":"lspringsteen@mailinator.com"},"school_number":"27Q321","sis_id":"27Q321","state_id":"412","id":"530e595026403103360ff9ff"},"uri":"/v1.1/schools/530e595026403103360ff9ff"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools?limit=2&starting_after=530e595026403103360ff9fe"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools?limit=2&ending_before=530e595026403103360ff9ff"}]}'
351
228
  http_version:
352
- recorded_at: Tue, 09 Sep 2014 21:48:20 GMT
229
+ recorded_at: Fri, 12 Sep 2014 20:49:09 GMT
353
230
  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
- - Tue, 09 Sep 2014 21:48:21 GMT
30
+ - Fri, 12 Sep 2014 20:48:45 GMT
31
31
  Server:
32
32
  - nginx/1.4.7
33
33
  X-Powered-By:
@@ -36,52 +36,11 @@ http_interactions:
36
36
  - '217'
37
37
  Connection:
38
38
  - keep-alive
39
- body:
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
- http_version:
43
- recorded_at: Tue, 09 Sep 2014 21:48:21 GMT
44
- - request:
45
- method: get
46
- uri: https://DEMO_KEY:@api.clever.com/v1.1/districts/4fd43cc56d11340000000005
47
39
  body:
48
40
  encoding: US-ASCII
49
- string: ''
50
- headers:
51
- Accept:
52
- - "*/*; q=0.5, application/xml"
53
- Accept-Encoding:
54
- - gzip, deflate
55
- User-Agent:
56
- - Ruby
57
- response:
58
- status:
59
- code: 200
60
- message: OK
61
- headers:
62
- Access-Control-Allow-Headers:
63
- - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
64
- Access-Control-Allow-Methods:
65
- - GET,PATCH,POST,DELETE
66
- Access-Control-Allow-Origin:
67
- - "*"
68
- Content-Type:
69
- - application/json; charset=utf-8
70
- Date:
71
- - Tue, 09 Sep 2014 21:48:21 GMT
72
- Server:
73
- - nginx/1.4.7
74
- X-Powered-By:
75
- - Express
76
- Content-Length:
77
- - '518'
78
- Connection:
79
- - keep-alive
80
- body:
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"}]}'
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"}]}'
83
42
  http_version:
84
- recorded_at: Tue, 09 Sep 2014 21:48:21 GMT
43
+ recorded_at: Fri, 12 Sep 2014 20:48:45 GMT
85
44
  - request:
86
45
  method: get
87
46
  uri: https://DEMO_KEY:@api.clever.com/v1.1/districts/4fd43cc56d11340000000005
@@ -90,7 +49,7 @@ http_interactions:
90
49
  string: ''
91
50
  headers:
92
51
  Accept:
93
- - "*/*; q=0.5, application/xml"
52
+ - ! '*/*; q=0.5, application/xml'
94
53
  Accept-Encoding:
95
54
  - gzip, deflate
96
55
  User-Agent:
@@ -105,11 +64,11 @@ http_interactions:
105
64
  Access-Control-Allow-Methods:
106
65
  - GET,PATCH,POST,DELETE
107
66
  Access-Control-Allow-Origin:
108
- - "*"
67
+ - ! '*'
109
68
  Content-Type:
110
69
  - application/json; charset=utf-8
111
70
  Date:
112
- - Tue, 09 Sep 2014 21:48:21 GMT
71
+ - Fri, 12 Sep 2014 20:48:45 GMT
113
72
  Server:
114
73
  - nginx/1.4.7
115
74
  X-Powered-By:
@@ -119,10 +78,10 @@ http_interactions:
119
78
  Connection:
120
79
  - keep-alive
121
80
  body:
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"}]}'
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"}]}'
124
83
  http_version:
125
- recorded_at: Tue, 09 Sep 2014 21:48:21 GMT
84
+ recorded_at: Fri, 12 Sep 2014 20:48:45 GMT
126
85
  - request:
127
86
  method: get
128
87
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=100000
@@ -131,7 +90,7 @@ http_interactions:
131
90
  string: ''
132
91
  headers:
133
92
  Accept:
134
- - "*/*; q=0.5, application/xml"
93
+ - ! '*/*; q=0.5, application/xml'
135
94
  Accept-Encoding:
136
95
  - gzip, deflate
137
96
  User-Agent:
@@ -146,13 +105,13 @@ http_interactions:
146
105
  Access-Control-Allow-Methods:
147
106
  - GET,PATCH,POST,DELETE
148
107
  Access-Control-Allow-Origin:
149
- - "*"
108
+ - ! '*'
150
109
  Content-Type:
151
110
  - application/json; charset=utf-8
152
111
  Date:
153
- - Tue, 09 Sep 2014 21:48:21 GMT
112
+ - Fri, 12 Sep 2014 20:48:45 GMT
154
113
  Etag:
155
- - '"-317608596"'
114
+ - ! '"-317608596"'
156
115
  Server:
157
116
  - nginx/1.4.7
158
117
  X-Powered-By:
@@ -162,8 +121,8 @@ http_interactions:
162
121
  Connection:
163
122
  - keep-alive
164
123
  body:
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
124
+ encoding: US-ASCII
125
+ 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
126
  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
127
  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
128
  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,89 +1056,7 @@ http_interactions:
1097
1056
  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
1057
  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
1058
  http_version:
1100
- recorded_at: Tue, 09 Sep 2014 21:48:22 GMT
1101
- - request:
1102
- method: get
1103
- uri: https://DEMO_KEY:@api.clever.com/v1.1/districts/4fd43cc56d11340000000005
1104
- body:
1105
- encoding: US-ASCII
1106
- string: ''
1107
- headers:
1108
- Accept:
1109
- - "*/*; q=0.5, application/xml"
1110
- Accept-Encoding:
1111
- - gzip, deflate
1112
- User-Agent:
1113
- - Ruby
1114
- response:
1115
- status:
1116
- code: 200
1117
- message: OK
1118
- headers:
1119
- Access-Control-Allow-Headers:
1120
- - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
1121
- Access-Control-Allow-Methods:
1122
- - GET,PATCH,POST,DELETE
1123
- Access-Control-Allow-Origin:
1124
- - "*"
1125
- Content-Type:
1126
- - application/json; charset=utf-8
1127
- Date:
1128
- - Tue, 09 Sep 2014 21:48:22 GMT
1129
- Server:
1130
- - nginx/1.4.7
1131
- X-Powered-By:
1132
- - Express
1133
- Content-Length:
1134
- - '518'
1135
- Connection:
1136
- - keep-alive
1137
- body:
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
- http_version:
1141
- recorded_at: Tue, 09 Sep 2014 21:48:22 GMT
1142
- - request:
1143
- method: get
1144
- uri: https://DEMO_KEY:@api.clever.com/v1.1/districts/4fd43cc56d11340000000005
1145
- body:
1146
- encoding: US-ASCII
1147
- string: ''
1148
- headers:
1149
- Accept:
1150
- - "*/*; q=0.5, application/xml"
1151
- Accept-Encoding:
1152
- - gzip, deflate
1153
- User-Agent:
1154
- - Ruby
1155
- response:
1156
- status:
1157
- code: 200
1158
- message: OK
1159
- headers:
1160
- Access-Control-Allow-Headers:
1161
- - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
1162
- Access-Control-Allow-Methods:
1163
- - GET,PATCH,POST,DELETE
1164
- Access-Control-Allow-Origin:
1165
- - "*"
1166
- Content-Type:
1167
- - application/json; charset=utf-8
1168
- Date:
1169
- - Tue, 09 Sep 2014 21:48:22 GMT
1170
- Server:
1171
- - nginx/1.4.7
1172
- X-Powered-By:
1173
- - Express
1174
- Content-Length:
1175
- - '518'
1176
- Connection:
1177
- - keep-alive
1178
- body:
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
- http_version:
1182
- recorded_at: Tue, 09 Sep 2014 21:48:22 GMT
1059
+ recorded_at: Fri, 12 Sep 2014 20:48:46 GMT
1183
1060
  - request:
1184
1061
  method: get
1185
1062
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10
@@ -1188,7 +1065,7 @@ http_interactions:
1188
1065
  string: ''
1189
1066
  headers:
1190
1067
  Accept:
1191
- - "*/*; q=0.5, application/xml"
1068
+ - ! '*/*; q=0.5, application/xml'
1192
1069
  Accept-Encoding:
1193
1070
  - gzip, deflate
1194
1071
  User-Agent:
@@ -1203,13 +1080,13 @@ http_interactions:
1203
1080
  Access-Control-Allow-Methods:
1204
1081
  - GET,PATCH,POST,DELETE
1205
1082
  Access-Control-Allow-Origin:
1206
- - "*"
1083
+ - ! '*'
1207
1084
  Content-Type:
1208
1085
  - application/json; charset=utf-8
1209
1086
  Date:
1210
- - Tue, 09 Sep 2014 21:48:22 GMT
1087
+ - Fri, 12 Sep 2014 20:48:47 GMT
1211
1088
  Etag:
1212
- - '"205814927"'
1089
+ - ! '"205814927"'
1213
1090
  Server:
1214
1091
  - nginx/1.4.7
1215
1092
  X-Powered-By:
@@ -1219,8 +1096,8 @@ http_interactions:
1219
1096
  Connection:
1220
1097
  - keep-alive
1221
1098
  body:
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
1099
+ encoding: US-ASCII
1100
+ 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
1101
  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
1102
  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
1103
  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 +1118,7 @@ http_interactions:
1241
1118
  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
1119
  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
1120
  http_version:
1244
- recorded_at: Tue, 09 Sep 2014 21:48:22 GMT
1121
+ recorded_at: Fri, 12 Sep 2014 20:48:47 GMT
1245
1122
  - request:
1246
1123
  method: get
1247
1124
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e5979049e75a9262d0afb
@@ -1250,7 +1127,7 @@ http_interactions:
1250
1127
  string: ''
1251
1128
  headers:
1252
1129
  Accept:
1253
- - "*/*; q=0.5, application/xml"
1130
+ - ! '*/*; q=0.5, application/xml'
1254
1131
  Accept-Encoding:
1255
1132
  - gzip, deflate
1256
1133
  User-Agent:
@@ -1265,13 +1142,13 @@ http_interactions:
1265
1142
  Access-Control-Allow-Methods:
1266
1143
  - GET,PATCH,POST,DELETE
1267
1144
  Access-Control-Allow-Origin:
1268
- - "*"
1145
+ - ! '*'
1269
1146
  Content-Type:
1270
1147
  - application/json; charset=utf-8
1271
1148
  Date:
1272
- - Tue, 09 Sep 2014 21:48:22 GMT
1149
+ - Fri, 12 Sep 2014 20:48:47 GMT
1273
1150
  Etag:
1274
- - '"-1866448954"'
1151
+ - ! '"-1866448954"'
1275
1152
  Server:
1276
1153
  - nginx/1.4.7
1277
1154
  X-Powered-By:
@@ -1281,8 +1158,8 @@ http_interactions:
1281
1158
  Connection:
1282
1159
  - keep-alive
1283
1160
  body:
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
1161
+ encoding: US-ASCII
1162
+ 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
1163
  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
1164
  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
1165
  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 +1180,7 @@ http_interactions:
1303
1180
  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
1181
  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
1182
  http_version:
1306
- recorded_at: Tue, 09 Sep 2014 21:48:22 GMT
1183
+ recorded_at: Fri, 12 Sep 2014 20:48:47 GMT
1307
1184
  - request:
1308
1185
  method: get
1309
1186
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b05
@@ -1312,7 +1189,7 @@ http_interactions:
1312
1189
  string: ''
1313
1190
  headers:
1314
1191
  Accept:
1315
- - "*/*; q=0.5, application/xml"
1192
+ - ! '*/*; q=0.5, application/xml'
1316
1193
  Accept-Encoding:
1317
1194
  - gzip, deflate
1318
1195
  User-Agent:
@@ -1327,13 +1204,13 @@ http_interactions:
1327
1204
  Access-Control-Allow-Methods:
1328
1205
  - GET,PATCH,POST,DELETE
1329
1206
  Access-Control-Allow-Origin:
1330
- - "*"
1207
+ - ! '*'
1331
1208
  Content-Type:
1332
1209
  - application/json; charset=utf-8
1333
1210
  Date:
1334
- - Tue, 09 Sep 2014 21:48:22 GMT
1211
+ - Fri, 12 Sep 2014 20:48:47 GMT
1335
1212
  Etag:
1336
- - '"-1637407075"'
1213
+ - ! '"-1637407075"'
1337
1214
  Server:
1338
1215
  - nginx/1.4.7
1339
1216
  X-Powered-By:
@@ -1343,8 +1220,8 @@ http_interactions:
1343
1220
  Connection:
1344
1221
  - keep-alive
1345
1222
  body:
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
1223
+ encoding: US-ASCII
1224
+ 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
1225
  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
1226
  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
1227
  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 +1250,7 @@ http_interactions:
1373
1250
  - 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
1251
  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
1252
  http_version:
1376
- recorded_at: Tue, 09 Sep 2014 21:48:22 GMT
1253
+ recorded_at: Fri, 12 Sep 2014 20:48:47 GMT
1377
1254
  - request:
1378
1255
  method: get
1379
1256
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b0f
@@ -1382,7 +1259,7 @@ http_interactions:
1382
1259
  string: ''
1383
1260
  headers:
1384
1261
  Accept:
1385
- - "*/*; q=0.5, application/xml"
1262
+ - ! '*/*; q=0.5, application/xml'
1386
1263
  Accept-Encoding:
1387
1264
  - gzip, deflate
1388
1265
  User-Agent:
@@ -1397,13 +1274,13 @@ http_interactions:
1397
1274
  Access-Control-Allow-Methods:
1398
1275
  - GET,PATCH,POST,DELETE
1399
1276
  Access-Control-Allow-Origin:
1400
- - "*"
1277
+ - ! '*'
1401
1278
  Content-Type:
1402
1279
  - application/json; charset=utf-8
1403
1280
  Date:
1404
- - Tue, 09 Sep 2014 21:48:23 GMT
1281
+ - Fri, 12 Sep 2014 20:48:47 GMT
1405
1282
  Etag:
1406
- - '"1252785622"'
1283
+ - ! '"1252785622"'
1407
1284
  Server:
1408
1285
  - nginx/1.4.7
1409
1286
  X-Powered-By:
@@ -1413,8 +1290,8 @@ http_interactions:
1413
1290
  Connection:
1414
1291
  - keep-alive
1415
1292
  body:
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
1293
+ encoding: US-ASCII
1294
+ 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
1295
  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
1296
  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
1297
  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 +1319,7 @@ http_interactions:
1442
1319
  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
1320
  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
1321
  http_version:
1445
- recorded_at: Tue, 09 Sep 2014 21:48:22 GMT
1322
+ recorded_at: Fri, 12 Sep 2014 20:48:47 GMT
1446
1323
  - request:
1447
1324
  method: get
1448
1325
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b19
@@ -1451,7 +1328,7 @@ http_interactions:
1451
1328
  string: ''
1452
1329
  headers:
1453
1330
  Accept:
1454
- - "*/*; q=0.5, application/xml"
1331
+ - ! '*/*; q=0.5, application/xml'
1455
1332
  Accept-Encoding:
1456
1333
  - gzip, deflate
1457
1334
  User-Agent:
@@ -1466,13 +1343,13 @@ http_interactions:
1466
1343
  Access-Control-Allow-Methods:
1467
1344
  - GET,PATCH,POST,DELETE
1468
1345
  Access-Control-Allow-Origin:
1469
- - "*"
1346
+ - ! '*'
1470
1347
  Content-Type:
1471
1348
  - application/json; charset=utf-8
1472
1349
  Date:
1473
- - Tue, 09 Sep 2014 21:48:23 GMT
1350
+ - Fri, 12 Sep 2014 20:48:47 GMT
1474
1351
  Etag:
1475
- - '"-323231899"'
1352
+ - ! '"-323231899"'
1476
1353
  Server:
1477
1354
  - nginx/1.4.7
1478
1355
  X-Powered-By:
@@ -1482,8 +1359,8 @@ http_interactions:
1482
1359
  Connection:
1483
1360
  - keep-alive
1484
1361
  body:
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
1362
+ encoding: US-ASCII
1363
+ 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
1364
  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
1365
  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
1366
  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 +1388,7 @@ http_interactions:
1511
1388
  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
1389
  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
1390
  http_version:
1514
- recorded_at: Tue, 09 Sep 2014 21:48:23 GMT
1391
+ recorded_at: Fri, 12 Sep 2014 20:48:47 GMT
1515
1392
  - request:
1516
1393
  method: get
1517
1394
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b23
@@ -1520,7 +1397,7 @@ http_interactions:
1520
1397
  string: ''
1521
1398
  headers:
1522
1399
  Accept:
1523
- - "*/*; q=0.5, application/xml"
1400
+ - ! '*/*; q=0.5, application/xml'
1524
1401
  Accept-Encoding:
1525
1402
  - gzip, deflate
1526
1403
  User-Agent:
@@ -1535,13 +1412,13 @@ http_interactions:
1535
1412
  Access-Control-Allow-Methods:
1536
1413
  - GET,PATCH,POST,DELETE
1537
1414
  Access-Control-Allow-Origin:
1538
- - "*"
1415
+ - ! '*'
1539
1416
  Content-Type:
1540
1417
  - application/json; charset=utf-8
1541
1418
  Date:
1542
- - Tue, 09 Sep 2014 21:48:23 GMT
1419
+ - Fri, 12 Sep 2014 20:48:48 GMT
1543
1420
  Etag:
1544
- - '"1633650518"'
1421
+ - ! '"1633650518"'
1545
1422
  Server:
1546
1423
  - nginx/1.4.7
1547
1424
  X-Powered-By:
@@ -1551,8 +1428,8 @@ http_interactions:
1551
1428
  Connection:
1552
1429
  - keep-alive
1553
1430
  body:
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
1431
+ encoding: US-ASCII
1432
+ 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
1433
  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
1434
  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
1435
  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 +1455,7 @@ http_interactions:
1578
1455
  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
1456
  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
1457
  http_version:
1581
- recorded_at: Tue, 09 Sep 2014 21:48:23 GMT
1458
+ recorded_at: Fri, 12 Sep 2014 20:48:48 GMT
1582
1459
  - request:
1583
1460
  method: get
1584
1461
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b2d
@@ -1587,7 +1464,7 @@ http_interactions:
1587
1464
  string: ''
1588
1465
  headers:
1589
1466
  Accept:
1590
- - "*/*; q=0.5, application/xml"
1467
+ - ! '*/*; q=0.5, application/xml'
1591
1468
  Accept-Encoding:
1592
1469
  - gzip, deflate
1593
1470
  User-Agent:
@@ -1602,13 +1479,13 @@ http_interactions:
1602
1479
  Access-Control-Allow-Methods:
1603
1480
  - GET,PATCH,POST,DELETE
1604
1481
  Access-Control-Allow-Origin:
1605
- - "*"
1482
+ - ! '*'
1606
1483
  Content-Type:
1607
1484
  - application/json; charset=utf-8
1608
1485
  Date:
1609
- - Tue, 09 Sep 2014 21:48:23 GMT
1486
+ - Fri, 12 Sep 2014 20:48:48 GMT
1610
1487
  Etag:
1611
- - '"-1866821540"'
1488
+ - ! '"-1866821540"'
1612
1489
  Server:
1613
1490
  - nginx/1.4.7
1614
1491
  X-Powered-By:
@@ -1618,8 +1495,8 @@ http_interactions:
1618
1495
  Connection:
1619
1496
  - keep-alive
1620
1497
  body:
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
1498
+ encoding: US-ASCII
1499
+ 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
1500
  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
1501
  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
1502
  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 +1527,7 @@ http_interactions:
1650
1527
  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
1528
  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
1529
  http_version:
1653
- recorded_at: Tue, 09 Sep 2014 21:48:23 GMT
1530
+ recorded_at: Fri, 12 Sep 2014 20:48:48 GMT
1654
1531
  - request:
1655
1532
  method: get
1656
1533
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b37
@@ -1659,7 +1536,7 @@ http_interactions:
1659
1536
  string: ''
1660
1537
  headers:
1661
1538
  Accept:
1662
- - "*/*; q=0.5, application/xml"
1539
+ - ! '*/*; q=0.5, application/xml'
1663
1540
  Accept-Encoding:
1664
1541
  - gzip, deflate
1665
1542
  User-Agent:
@@ -1674,13 +1551,13 @@ http_interactions:
1674
1551
  Access-Control-Allow-Methods:
1675
1552
  - GET,PATCH,POST,DELETE
1676
1553
  Access-Control-Allow-Origin:
1677
- - "*"
1554
+ - ! '*'
1678
1555
  Content-Type:
1679
1556
  - application/json; charset=utf-8
1680
1557
  Date:
1681
- - Tue, 09 Sep 2014 21:48:23 GMT
1558
+ - Fri, 12 Sep 2014 20:48:48 GMT
1682
1559
  Etag:
1683
- - '"1867079356"'
1560
+ - ! '"1867079356"'
1684
1561
  Server:
1685
1562
  - nginx/1.4.7
1686
1563
  X-Powered-By:
@@ -1690,8 +1567,8 @@ http_interactions:
1690
1567
  Connection:
1691
1568
  - keep-alive
1692
1569
  body:
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
1570
+ encoding: US-ASCII
1571
+ 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
1572
  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
1573
  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
1574
  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 +1599,7 @@ http_interactions:
1722
1599
  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
1600
  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
1601
  http_version:
1725
- recorded_at: Tue, 09 Sep 2014 21:48:23 GMT
1602
+ recorded_at: Fri, 12 Sep 2014 20:48:48 GMT
1726
1603
  - request:
1727
1604
  method: get
1728
1605
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b41
@@ -1731,7 +1608,7 @@ http_interactions:
1731
1608
  string: ''
1732
1609
  headers:
1733
1610
  Accept:
1734
- - "*/*; q=0.5, application/xml"
1611
+ - ! '*/*; q=0.5, application/xml'
1735
1612
  Accept-Encoding:
1736
1613
  - gzip, deflate
1737
1614
  User-Agent:
@@ -1746,13 +1623,13 @@ http_interactions:
1746
1623
  Access-Control-Allow-Methods:
1747
1624
  - GET,PATCH,POST,DELETE
1748
1625
  Access-Control-Allow-Origin:
1749
- - "*"
1626
+ - ! '*'
1750
1627
  Content-Type:
1751
1628
  - application/json; charset=utf-8
1752
1629
  Date:
1753
- - Tue, 09 Sep 2014 21:48:23 GMT
1630
+ - Fri, 12 Sep 2014 20:48:48 GMT
1754
1631
  Etag:
1755
- - '"-348636803"'
1632
+ - ! '"-348636803"'
1756
1633
  Server:
1757
1634
  - nginx/1.4.7
1758
1635
  X-Powered-By:
@@ -1762,8 +1639,8 @@ http_interactions:
1762
1639
  Connection:
1763
1640
  - keep-alive
1764
1641
  body:
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,
1642
+ encoding: US-ASCII
1643
+ 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
1644
  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
1645
  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
1646
  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 +1671,7 @@ http_interactions:
1794
1671
  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
1672
  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
1673
  http_version:
1797
- recorded_at: Tue, 09 Sep 2014 21:48:23 GMT
1674
+ recorded_at: Fri, 12 Sep 2014 20:48:48 GMT
1798
1675
  - request:
1799
1676
  method: get
1800
1677
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b4b
@@ -1803,7 +1680,7 @@ http_interactions:
1803
1680
  string: ''
1804
1681
  headers:
1805
1682
  Accept:
1806
- - "*/*; q=0.5, application/xml"
1683
+ - ! '*/*; q=0.5, application/xml'
1807
1684
  Accept-Encoding:
1808
1685
  - gzip, deflate
1809
1686
  User-Agent:
@@ -1818,13 +1695,13 @@ http_interactions:
1818
1695
  Access-Control-Allow-Methods:
1819
1696
  - GET,PATCH,POST,DELETE
1820
1697
  Access-Control-Allow-Origin:
1821
- - "*"
1698
+ - ! '*'
1822
1699
  Content-Type:
1823
1700
  - application/json; charset=utf-8
1824
1701
  Date:
1825
- - Tue, 09 Sep 2014 21:48:23 GMT
1702
+ - Fri, 12 Sep 2014 20:48:48 GMT
1826
1703
  Etag:
1827
- - '"-1951933124"'
1704
+ - ! '"-1951933124"'
1828
1705
  Server:
1829
1706
  - nginx/1.4.7
1830
1707
  X-Powered-By:
@@ -1834,8 +1711,8 @@ http_interactions:
1834
1711
  Connection:
1835
1712
  - keep-alive
1836
1713
  body:
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
1714
+ encoding: US-ASCII
1715
+ 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
1716
  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
1717
  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
1718
  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 +1739,7 @@ http_interactions:
1862
1739
  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
1740
  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
1741
  http_version:
1865
- recorded_at: Tue, 09 Sep 2014 21:48:23 GMT
1742
+ recorded_at: Fri, 12 Sep 2014 20:48:48 GMT
1866
1743
  - request:
1867
1744
  method: get
1868
1745
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b55
@@ -1871,7 +1748,7 @@ http_interactions:
1871
1748
  string: ''
1872
1749
  headers:
1873
1750
  Accept:
1874
- - "*/*; q=0.5, application/xml"
1751
+ - ! '*/*; q=0.5, application/xml'
1875
1752
  Accept-Encoding:
1876
1753
  - gzip, deflate
1877
1754
  User-Agent:
@@ -1886,13 +1763,13 @@ http_interactions:
1886
1763
  Access-Control-Allow-Methods:
1887
1764
  - GET,PATCH,POST,DELETE
1888
1765
  Access-Control-Allow-Origin:
1889
- - "*"
1766
+ - ! '*'
1890
1767
  Content-Type:
1891
1768
  - application/json; charset=utf-8
1892
1769
  Date:
1893
- - Tue, 09 Sep 2014 21:48:23 GMT
1770
+ - Fri, 12 Sep 2014 20:48:48 GMT
1894
1771
  Etag:
1895
- - '"1591368645"'
1772
+ - ! '"1591368645"'
1896
1773
  Server:
1897
1774
  - nginx/1.4.7
1898
1775
  X-Powered-By:
@@ -1902,8 +1779,8 @@ http_interactions:
1902
1779
  Connection:
1903
1780
  - keep-alive
1904
1781
  body:
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
1782
+ encoding: US-ASCII
1783
+ 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
1784
  - 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
1785
  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
1786
  - 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 +1806,7 @@ http_interactions:
1929
1806
  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
1807
  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
1808
  http_version:
1932
- recorded_at: Tue, 09 Sep 2014 21:48:23 GMT
1809
+ recorded_at: Fri, 12 Sep 2014 20:48:48 GMT
1933
1810
  - request:
1934
1811
  method: get
1935
1812
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b5f
@@ -1938,7 +1815,7 @@ http_interactions:
1938
1815
  string: ''
1939
1816
  headers:
1940
1817
  Accept:
1941
- - "*/*; q=0.5, application/xml"
1818
+ - ! '*/*; q=0.5, application/xml'
1942
1819
  Accept-Encoding:
1943
1820
  - gzip, deflate
1944
1821
  User-Agent:
@@ -1953,13 +1830,13 @@ http_interactions:
1953
1830
  Access-Control-Allow-Methods:
1954
1831
  - GET,PATCH,POST,DELETE
1955
1832
  Access-Control-Allow-Origin:
1956
- - "*"
1833
+ - ! '*'
1957
1834
  Content-Type:
1958
1835
  - application/json; charset=utf-8
1959
1836
  Date:
1960
- - Tue, 09 Sep 2014 21:48:24 GMT
1837
+ - Fri, 12 Sep 2014 20:48:48 GMT
1961
1838
  Etag:
1962
- - '"363652445"'
1839
+ - ! '"363652445"'
1963
1840
  Server:
1964
1841
  - nginx/1.4.7
1965
1842
  X-Powered-By:
@@ -1969,8 +1846,8 @@ http_interactions:
1969
1846
  Connection:
1970
1847
  - keep-alive
1971
1848
  body:
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
1849
+ encoding: US-ASCII
1850
+ 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
1851
  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
1852
  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
1853
  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 +1878,7 @@ http_interactions:
2001
1878
  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
1879
  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
1880
  http_version:
2004
- recorded_at: Tue, 09 Sep 2014 21:48:24 GMT
1881
+ recorded_at: Fri, 12 Sep 2014 20:48:48 GMT
2005
1882
  - request:
2006
1883
  method: get
2007
1884
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b69
@@ -2010,7 +1887,7 @@ http_interactions:
2010
1887
  string: ''
2011
1888
  headers:
2012
1889
  Accept:
2013
- - "*/*; q=0.5, application/xml"
1890
+ - ! '*/*; q=0.5, application/xml'
2014
1891
  Accept-Encoding:
2015
1892
  - gzip, deflate
2016
1893
  User-Agent:
@@ -2025,13 +1902,13 @@ http_interactions:
2025
1902
  Access-Control-Allow-Methods:
2026
1903
  - GET,PATCH,POST,DELETE
2027
1904
  Access-Control-Allow-Origin:
2028
- - "*"
1905
+ - ! '*'
2029
1906
  Content-Type:
2030
1907
  - application/json; charset=utf-8
2031
1908
  Date:
2032
- - Tue, 09 Sep 2014 21:48:24 GMT
1909
+ - Fri, 12 Sep 2014 20:48:49 GMT
2033
1910
  Etag:
2034
- - '"-1918875711"'
1911
+ - ! '"-1918875711"'
2035
1912
  Server:
2036
1913
  - nginx/1.4.7
2037
1914
  X-Powered-By:
@@ -2041,8 +1918,8 @@ http_interactions:
2041
1918
  Connection:
2042
1919
  - keep-alive
2043
1920
  body:
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
1921
+ encoding: US-ASCII
1922
+ 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
1923
  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
1924
  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
1925
  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 +1946,7 @@ http_interactions:
2069
1946
  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
1947
  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
1948
  http_version:
2072
- recorded_at: Tue, 09 Sep 2014 21:48:24 GMT
1949
+ recorded_at: Fri, 12 Sep 2014 20:48:49 GMT
2073
1950
  - request:
2074
1951
  method: get
2075
1952
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b73
@@ -2078,7 +1955,7 @@ http_interactions:
2078
1955
  string: ''
2079
1956
  headers:
2080
1957
  Accept:
2081
- - "*/*; q=0.5, application/xml"
1958
+ - ! '*/*; q=0.5, application/xml'
2082
1959
  Accept-Encoding:
2083
1960
  - gzip, deflate
2084
1961
  User-Agent:
@@ -2093,13 +1970,13 @@ http_interactions:
2093
1970
  Access-Control-Allow-Methods:
2094
1971
  - GET,PATCH,POST,DELETE
2095
1972
  Access-Control-Allow-Origin:
2096
- - "*"
1973
+ - ! '*'
2097
1974
  Content-Type:
2098
1975
  - application/json; charset=utf-8
2099
1976
  Date:
2100
- - Tue, 09 Sep 2014 21:48:24 GMT
1977
+ - Fri, 12 Sep 2014 20:48:49 GMT
2101
1978
  Etag:
2102
- - '"-1556313222"'
1979
+ - ! '"-1556313222"'
2103
1980
  Server:
2104
1981
  - nginx/1.4.7
2105
1982
  X-Powered-By:
@@ -2109,8 +1986,8 @@ http_interactions:
2109
1986
  Connection:
2110
1987
  - keep-alive
2111
1988
  body:
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
1989
+ encoding: US-ASCII
1990
+ 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
1991
  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
1992
  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
1993
  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 +2008,7 @@ http_interactions:
2131
2008
  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
2009
  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
2010
  http_version:
2134
- recorded_at: Tue, 09 Sep 2014 21:48:24 GMT
2011
+ recorded_at: Fri, 12 Sep 2014 20:48:49 GMT
2135
2012
  - request:
2136
2013
  method: get
2137
2014
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b7d
@@ -2140,7 +2017,7 @@ http_interactions:
2140
2017
  string: ''
2141
2018
  headers:
2142
2019
  Accept:
2143
- - "*/*; q=0.5, application/xml"
2020
+ - ! '*/*; q=0.5, application/xml'
2144
2021
  Accept-Encoding:
2145
2022
  - gzip, deflate
2146
2023
  User-Agent:
@@ -2155,13 +2032,13 @@ http_interactions:
2155
2032
  Access-Control-Allow-Methods:
2156
2033
  - GET,PATCH,POST,DELETE
2157
2034
  Access-Control-Allow-Origin:
2158
- - "*"
2035
+ - ! '*'
2159
2036
  Content-Type:
2160
2037
  - application/json; charset=utf-8
2161
2038
  Date:
2162
- - Tue, 09 Sep 2014 21:48:24 GMT
2039
+ - Fri, 12 Sep 2014 20:48:49 GMT
2163
2040
  Etag:
2164
- - '"-1794020354"'
2041
+ - ! '"-1794020354"'
2165
2042
  Server:
2166
2043
  - nginx/1.4.7
2167
2044
  X-Powered-By:
@@ -2171,8 +2048,8 @@ http_interactions:
2171
2048
  Connection:
2172
2049
  - keep-alive
2173
2050
  body:
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
2051
+ encoding: US-ASCII
2052
+ 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
2053
  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
2054
  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
2055
  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 +2070,7 @@ http_interactions:
2193
2070
  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
2071
  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
2072
  http_version:
2196
- recorded_at: Tue, 09 Sep 2014 21:48:24 GMT
2073
+ recorded_at: Fri, 12 Sep 2014 20:48:49 GMT
2197
2074
  - request:
2198
2075
  method: get
2199
2076
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b87
@@ -2202,7 +2079,7 @@ http_interactions:
2202
2079
  string: ''
2203
2080
  headers:
2204
2081
  Accept:
2205
- - "*/*; q=0.5, application/xml"
2082
+ - ! '*/*; q=0.5, application/xml'
2206
2083
  Accept-Encoding:
2207
2084
  - gzip, deflate
2208
2085
  User-Agent:
@@ -2217,13 +2094,13 @@ http_interactions:
2217
2094
  Access-Control-Allow-Methods:
2218
2095
  - GET,PATCH,POST,DELETE
2219
2096
  Access-Control-Allow-Origin:
2220
- - "*"
2097
+ - ! '*'
2221
2098
  Content-Type:
2222
2099
  - application/json; charset=utf-8
2223
2100
  Date:
2224
- - Tue, 09 Sep 2014 21:48:24 GMT
2101
+ - Fri, 12 Sep 2014 20:48:49 GMT
2225
2102
  Etag:
2226
- - '"733629802"'
2103
+ - ! '"733629802"'
2227
2104
  Server:
2228
2105
  - nginx/1.4.7
2229
2106
  X-Powered-By:
@@ -2233,8 +2110,8 @@ http_interactions:
2233
2110
  Connection:
2234
2111
  - keep-alive
2235
2112
  body:
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
2113
+ encoding: US-ASCII
2114
+ 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
2115
  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
2116
  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
2117
  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 +2132,7 @@ http_interactions:
2255
2132
  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
2133
  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
2134
  http_version:
2258
- recorded_at: Tue, 09 Sep 2014 21:48:24 GMT
2135
+ recorded_at: Fri, 12 Sep 2014 20:48:49 GMT
2259
2136
  - request:
2260
2137
  method: get
2261
2138
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b91
@@ -2264,7 +2141,7 @@ http_interactions:
2264
2141
  string: ''
2265
2142
  headers:
2266
2143
  Accept:
2267
- - "*/*; q=0.5, application/xml"
2144
+ - ! '*/*; q=0.5, application/xml'
2268
2145
  Accept-Encoding:
2269
2146
  - gzip, deflate
2270
2147
  User-Agent:
@@ -2279,13 +2156,13 @@ http_interactions:
2279
2156
  Access-Control-Allow-Methods:
2280
2157
  - GET,PATCH,POST,DELETE
2281
2158
  Access-Control-Allow-Origin:
2282
- - "*"
2159
+ - ! '*'
2283
2160
  Content-Type:
2284
2161
  - application/json; charset=utf-8
2285
2162
  Date:
2286
- - Tue, 09 Sep 2014 21:48:24 GMT
2163
+ - Fri, 12 Sep 2014 20:48:49 GMT
2287
2164
  Etag:
2288
- - '"-1887313920"'
2165
+ - ! '"-1887313920"'
2289
2166
  Server:
2290
2167
  - nginx/1.4.7
2291
2168
  X-Powered-By:
@@ -2295,8 +2172,8 @@ http_interactions:
2295
2172
  Connection:
2296
2173
  - keep-alive
2297
2174
  body:
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
2175
+ encoding: US-ASCII
2176
+ 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
2177
  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
2178
  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
2179
  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 +2192,7 @@ http_interactions:
2315
2192
  - 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
2193
  - 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
2194
  http_version:
2318
- recorded_at: Tue, 09 Sep 2014 21:48:24 GMT
2195
+ recorded_at: Fri, 12 Sep 2014 20:48:49 GMT
2319
2196
  - request:
2320
2197
  method: get
2321
2198
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0b9b
@@ -2324,7 +2201,7 @@ http_interactions:
2324
2201
  string: ''
2325
2202
  headers:
2326
2203
  Accept:
2327
- - "*/*; q=0.5, application/xml"
2204
+ - ! '*/*; q=0.5, application/xml'
2328
2205
  Accept-Encoding:
2329
2206
  - gzip, deflate
2330
2207
  User-Agent:
@@ -2339,13 +2216,13 @@ http_interactions:
2339
2216
  Access-Control-Allow-Methods:
2340
2217
  - GET,PATCH,POST,DELETE
2341
2218
  Access-Control-Allow-Origin:
2342
- - "*"
2219
+ - ! '*'
2343
2220
  Content-Type:
2344
2221
  - application/json; charset=utf-8
2345
2222
  Date:
2346
- - Tue, 09 Sep 2014 21:48:24 GMT
2223
+ - Fri, 12 Sep 2014 20:48:49 GMT
2347
2224
  Etag:
2348
- - '"-2017334850"'
2225
+ - ! '"-2017334850"'
2349
2226
  Server:
2350
2227
  - nginx/1.4.7
2351
2228
  X-Powered-By:
@@ -2355,8 +2232,8 @@ http_interactions:
2355
2232
  Connection:
2356
2233
  - keep-alive
2357
2234
  body:
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
2235
+ encoding: US-ASCII
2236
+ 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
2237
  - 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
2238
  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
2239
  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 +2253,7 @@ http_interactions:
2376
2253
  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
2254
  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
2255
  http_version:
2379
- recorded_at: Tue, 09 Sep 2014 21:48:24 GMT
2256
+ recorded_at: Fri, 12 Sep 2014 20:48:49 GMT
2380
2257
  - request:
2381
2258
  method: get
2382
2259
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0ba5
@@ -2385,7 +2262,7 @@ http_interactions:
2385
2262
  string: ''
2386
2263
  headers:
2387
2264
  Accept:
2388
- - "*/*; q=0.5, application/xml"
2265
+ - ! '*/*; q=0.5, application/xml'
2389
2266
  Accept-Encoding:
2390
2267
  - gzip, deflate
2391
2268
  User-Agent:
@@ -2400,13 +2277,13 @@ http_interactions:
2400
2277
  Access-Control-Allow-Methods:
2401
2278
  - GET,PATCH,POST,DELETE
2402
2279
  Access-Control-Allow-Origin:
2403
- - "*"
2280
+ - ! '*'
2404
2281
  Content-Type:
2405
2282
  - application/json; charset=utf-8
2406
2283
  Date:
2407
- - Tue, 09 Sep 2014 21:48:24 GMT
2284
+ - Fri, 12 Sep 2014 20:48:50 GMT
2408
2285
  Etag:
2409
- - '"-1868062864"'
2286
+ - ! '"-1868062864"'
2410
2287
  Server:
2411
2288
  - nginx/1.4.7
2412
2289
  X-Powered-By:
@@ -2416,8 +2293,8 @@ http_interactions:
2416
2293
  Connection:
2417
2294
  - keep-alive
2418
2295
  body:
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
2296
+ encoding: US-ASCII
2297
+ 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
2298
  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
2299
  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
2300
  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 +2315,7 @@ http_interactions:
2438
2315
  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
2316
  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
2317
  http_version:
2441
- recorded_at: Tue, 09 Sep 2014 21:48:24 GMT
2318
+ recorded_at: Fri, 12 Sep 2014 20:48:49 GMT
2442
2319
  - request:
2443
2320
  method: get
2444
2321
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0baf
@@ -2447,7 +2324,7 @@ http_interactions:
2447
2324
  string: ''
2448
2325
  headers:
2449
2326
  Accept:
2450
- - "*/*; q=0.5, application/xml"
2327
+ - ! '*/*; q=0.5, application/xml'
2451
2328
  Accept-Encoding:
2452
2329
  - gzip, deflate
2453
2330
  User-Agent:
@@ -2462,13 +2339,13 @@ http_interactions:
2462
2339
  Access-Control-Allow-Methods:
2463
2340
  - GET,PATCH,POST,DELETE
2464
2341
  Access-Control-Allow-Origin:
2465
- - "*"
2342
+ - ! '*'
2466
2343
  Content-Type:
2467
2344
  - application/json; charset=utf-8
2468
2345
  Date:
2469
- - Tue, 09 Sep 2014 21:48:25 GMT
2346
+ - Fri, 12 Sep 2014 20:48:50 GMT
2470
2347
  Etag:
2471
- - '"1985239116"'
2348
+ - ! '"1985239116"'
2472
2349
  Server:
2473
2350
  - nginx/1.4.7
2474
2351
  X-Powered-By:
@@ -2478,8 +2355,8 @@ http_interactions:
2478
2355
  Connection:
2479
2356
  - keep-alive
2480
2357
  body:
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
2358
+ encoding: US-ASCII
2359
+ 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
2360
  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
2361
  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
2362
  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 +2377,7 @@ http_interactions:
2500
2377
  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
2378
  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
2379
  http_version:
2503
- recorded_at: Tue, 09 Sep 2014 21:48:24 GMT
2380
+ recorded_at: Fri, 12 Sep 2014 20:48:50 GMT
2504
2381
  - request:
2505
2382
  method: get
2506
2383
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0bb9
@@ -2509,7 +2386,7 @@ http_interactions:
2509
2386
  string: ''
2510
2387
  headers:
2511
2388
  Accept:
2512
- - "*/*; q=0.5, application/xml"
2389
+ - ! '*/*; q=0.5, application/xml'
2513
2390
  Accept-Encoding:
2514
2391
  - gzip, deflate
2515
2392
  User-Agent:
@@ -2524,13 +2401,13 @@ http_interactions:
2524
2401
  Access-Control-Allow-Methods:
2525
2402
  - GET,PATCH,POST,DELETE
2526
2403
  Access-Control-Allow-Origin:
2527
- - "*"
2404
+ - ! '*'
2528
2405
  Content-Type:
2529
2406
  - application/json; charset=utf-8
2530
2407
  Date:
2531
- - Tue, 09 Sep 2014 21:48:25 GMT
2408
+ - Fri, 12 Sep 2014 20:48:50 GMT
2532
2409
  Etag:
2533
- - '"770347773"'
2410
+ - ! '"770347773"'
2534
2411
  Server:
2535
2412
  - nginx/1.4.7
2536
2413
  X-Powered-By:
@@ -2540,8 +2417,8 @@ http_interactions:
2540
2417
  Connection:
2541
2418
  - keep-alive
2542
2419
  body:
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,
2420
+ encoding: US-ASCII
2421
+ 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
2422
  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
2423
  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
2424
  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 +2439,7 @@ http_interactions:
2562
2439
  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
2440
  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
2441
  http_version:
2565
- recorded_at: Tue, 09 Sep 2014 21:48:25 GMT
2442
+ recorded_at: Fri, 12 Sep 2014 20:48:50 GMT
2566
2443
  - request:
2567
2444
  method: get
2568
2445
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0bc3
@@ -2571,7 +2448,7 @@ http_interactions:
2571
2448
  string: ''
2572
2449
  headers:
2573
2450
  Accept:
2574
- - "*/*; q=0.5, application/xml"
2451
+ - ! '*/*; q=0.5, application/xml'
2575
2452
  Accept-Encoding:
2576
2453
  - gzip, deflate
2577
2454
  User-Agent:
@@ -2586,13 +2463,13 @@ http_interactions:
2586
2463
  Access-Control-Allow-Methods:
2587
2464
  - GET,PATCH,POST,DELETE
2588
2465
  Access-Control-Allow-Origin:
2589
- - "*"
2466
+ - ! '*'
2590
2467
  Content-Type:
2591
2468
  - application/json; charset=utf-8
2592
2469
  Date:
2593
- - Tue, 09 Sep 2014 21:48:25 GMT
2470
+ - Fri, 12 Sep 2014 20:48:50 GMT
2594
2471
  Etag:
2595
- - '"-1848888890"'
2472
+ - ! '"-1848888890"'
2596
2473
  Server:
2597
2474
  - nginx/1.4.7
2598
2475
  X-Powered-By:
@@ -2602,8 +2479,8 @@ http_interactions:
2602
2479
  Connection:
2603
2480
  - keep-alive
2604
2481
  body:
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
2482
+ encoding: US-ASCII
2483
+ 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
2484
  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
2485
  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
2486
  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 +2508,7 @@ http_interactions:
2631
2508
  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
2509
  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
2510
  http_version:
2634
- recorded_at: Tue, 09 Sep 2014 21:48:25 GMT
2511
+ recorded_at: Fri, 12 Sep 2014 20:48:50 GMT
2635
2512
  - request:
2636
2513
  method: get
2637
2514
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0bcd
@@ -2640,7 +2517,7 @@ http_interactions:
2640
2517
  string: ''
2641
2518
  headers:
2642
2519
  Accept:
2643
- - "*/*; q=0.5, application/xml"
2520
+ - ! '*/*; q=0.5, application/xml'
2644
2521
  Accept-Encoding:
2645
2522
  - gzip, deflate
2646
2523
  User-Agent:
@@ -2655,13 +2532,13 @@ http_interactions:
2655
2532
  Access-Control-Allow-Methods:
2656
2533
  - GET,PATCH,POST,DELETE
2657
2534
  Access-Control-Allow-Origin:
2658
- - "*"
2535
+ - ! '*'
2659
2536
  Content-Type:
2660
2537
  - application/json; charset=utf-8
2661
2538
  Date:
2662
- - Tue, 09 Sep 2014 21:48:25 GMT
2539
+ - Fri, 12 Sep 2014 20:48:50 GMT
2663
2540
  Etag:
2664
- - '"-657078363"'
2541
+ - ! '"-657078363"'
2665
2542
  Server:
2666
2543
  - nginx/1.4.7
2667
2544
  X-Powered-By:
@@ -2671,8 +2548,8 @@ http_interactions:
2671
2548
  Connection:
2672
2549
  - keep-alive
2673
2550
  body:
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
2551
+ encoding: US-ASCII
2552
+ 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
2553
  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
2554
  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
2555
  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 +2579,7 @@ http_interactions:
2702
2579
  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
2580
  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
2581
  http_version:
2705
- recorded_at: Tue, 09 Sep 2014 21:48:25 GMT
2582
+ recorded_at: Fri, 12 Sep 2014 20:48:50 GMT
2706
2583
  - request:
2707
2584
  method: get
2708
2585
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0bd7
@@ -2711,7 +2588,7 @@ http_interactions:
2711
2588
  string: ''
2712
2589
  headers:
2713
2590
  Accept:
2714
- - "*/*; q=0.5, application/xml"
2591
+ - ! '*/*; q=0.5, application/xml'
2715
2592
  Accept-Encoding:
2716
2593
  - gzip, deflate
2717
2594
  User-Agent:
@@ -2726,13 +2603,13 @@ http_interactions:
2726
2603
  Access-Control-Allow-Methods:
2727
2604
  - GET,PATCH,POST,DELETE
2728
2605
  Access-Control-Allow-Origin:
2729
- - "*"
2606
+ - ! '*'
2730
2607
  Content-Type:
2731
2608
  - application/json; charset=utf-8
2732
2609
  Date:
2733
- - Tue, 09 Sep 2014 21:48:25 GMT
2610
+ - Fri, 12 Sep 2014 20:48:50 GMT
2734
2611
  Etag:
2735
- - '"931822657"'
2612
+ - ! '"931822657"'
2736
2613
  Server:
2737
2614
  - nginx/1.4.7
2738
2615
  X-Powered-By:
@@ -2742,8 +2619,8 @@ http_interactions:
2742
2619
  Connection:
2743
2620
  - keep-alive
2744
2621
  body:
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
2622
+ encoding: US-ASCII
2623
+ 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
2624
  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
2625
  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
2626
  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 +2651,7 @@ http_interactions:
2774
2651
  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
2652
  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
2653
  http_version:
2777
- recorded_at: Tue, 09 Sep 2014 21:48:25 GMT
2654
+ recorded_at: Fri, 12 Sep 2014 20:48:50 GMT
2778
2655
  - request:
2779
2656
  method: get
2780
2657
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0be1
@@ -2783,7 +2660,7 @@ http_interactions:
2783
2660
  string: ''
2784
2661
  headers:
2785
2662
  Accept:
2786
- - "*/*; q=0.5, application/xml"
2663
+ - ! '*/*; q=0.5, application/xml'
2787
2664
  Accept-Encoding:
2788
2665
  - gzip, deflate
2789
2666
  User-Agent:
@@ -2798,13 +2675,13 @@ http_interactions:
2798
2675
  Access-Control-Allow-Methods:
2799
2676
  - GET,PATCH,POST,DELETE
2800
2677
  Access-Control-Allow-Origin:
2801
- - "*"
2678
+ - ! '*'
2802
2679
  Content-Type:
2803
2680
  - application/json; charset=utf-8
2804
2681
  Date:
2805
- - Tue, 09 Sep 2014 21:48:25 GMT
2682
+ - Fri, 12 Sep 2014 20:48:50 GMT
2806
2683
  Etag:
2807
- - '"-1471869131"'
2684
+ - ! '"-1471869131"'
2808
2685
  Server:
2809
2686
  - nginx/1.4.7
2810
2687
  X-Powered-By:
@@ -2814,8 +2691,8 @@ http_interactions:
2814
2691
  Connection:
2815
2692
  - keep-alive
2816
2693
  body:
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
2694
+ encoding: US-ASCII
2695
+ 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
2696
  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
2697
  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
2698
  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 +2723,7 @@ http_interactions:
2846
2723
  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
2724
  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
2725
  http_version:
2849
- recorded_at: Tue, 09 Sep 2014 21:48:25 GMT
2726
+ recorded_at: Fri, 12 Sep 2014 20:48:50 GMT
2850
2727
  - request:
2851
2728
  method: get
2852
2729
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597a049e75a9262d0beb
@@ -2855,7 +2732,7 @@ http_interactions:
2855
2732
  string: ''
2856
2733
  headers:
2857
2734
  Accept:
2858
- - "*/*; q=0.5, application/xml"
2735
+ - ! '*/*; q=0.5, application/xml'
2859
2736
  Accept-Encoding:
2860
2737
  - gzip, deflate
2861
2738
  User-Agent:
@@ -2870,13 +2747,13 @@ http_interactions:
2870
2747
  Access-Control-Allow-Methods:
2871
2748
  - GET,PATCH,POST,DELETE
2872
2749
  Access-Control-Allow-Origin:
2873
- - "*"
2750
+ - ! '*'
2874
2751
  Content-Type:
2875
2752
  - application/json; charset=utf-8
2876
2753
  Date:
2877
- - Tue, 09 Sep 2014 21:48:25 GMT
2754
+ - Fri, 12 Sep 2014 20:48:51 GMT
2878
2755
  Etag:
2879
- - '"-1621127"'
2756
+ - ! '"-1621127"'
2880
2757
  Server:
2881
2758
  - nginx/1.4.7
2882
2759
  X-Powered-By:
@@ -2886,8 +2763,8 @@ http_interactions:
2886
2763
  Connection:
2887
2764
  - keep-alive
2888
2765
  body:
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
2766
+ encoding: US-ASCII
2767
+ 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
2768
  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
2769
  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
2770
  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 +2795,7 @@ http_interactions:
2918
2795
  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
2796
  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
2797
  http_version:
2921
- recorded_at: Tue, 09 Sep 2014 21:48:25 GMT
2798
+ recorded_at: Fri, 12 Sep 2014 20:48:51 GMT
2922
2799
  - request:
2923
2800
  method: get
2924
2801
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0bf5
@@ -2927,7 +2804,7 @@ http_interactions:
2927
2804
  string: ''
2928
2805
  headers:
2929
2806
  Accept:
2930
- - "*/*; q=0.5, application/xml"
2807
+ - ! '*/*; q=0.5, application/xml'
2931
2808
  Accept-Encoding:
2932
2809
  - gzip, deflate
2933
2810
  User-Agent:
@@ -2942,13 +2819,13 @@ http_interactions:
2942
2819
  Access-Control-Allow-Methods:
2943
2820
  - GET,PATCH,POST,DELETE
2944
2821
  Access-Control-Allow-Origin:
2945
- - "*"
2822
+ - ! '*'
2946
2823
  Content-Type:
2947
2824
  - application/json; charset=utf-8
2948
2825
  Date:
2949
- - Tue, 09 Sep 2014 21:48:25 GMT
2826
+ - Fri, 12 Sep 2014 20:48:51 GMT
2950
2827
  Etag:
2951
- - '"707540498"'
2828
+ - ! '"707540498"'
2952
2829
  Server:
2953
2830
  - nginx/1.4.7
2954
2831
  X-Powered-By:
@@ -2958,8 +2835,8 @@ http_interactions:
2958
2835
  Connection:
2959
2836
  - keep-alive
2960
2837
  body:
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
2838
+ encoding: US-ASCII
2839
+ 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
2840
  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
2841
  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
2842
  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 +2867,7 @@ http_interactions:
2990
2867
  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
2868
  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
2869
  http_version:
2993
- recorded_at: Tue, 09 Sep 2014 21:48:25 GMT
2870
+ recorded_at: Fri, 12 Sep 2014 20:48:51 GMT
2994
2871
  - request:
2995
2872
  method: get
2996
2873
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0bff
@@ -2999,7 +2876,7 @@ http_interactions:
2999
2876
  string: ''
3000
2877
  headers:
3001
2878
  Accept:
3002
- - "*/*; q=0.5, application/xml"
2879
+ - ! '*/*; q=0.5, application/xml'
3003
2880
  Accept-Encoding:
3004
2881
  - gzip, deflate
3005
2882
  User-Agent:
@@ -3014,13 +2891,13 @@ http_interactions:
3014
2891
  Access-Control-Allow-Methods:
3015
2892
  - GET,PATCH,POST,DELETE
3016
2893
  Access-Control-Allow-Origin:
3017
- - "*"
2894
+ - ! '*'
3018
2895
  Content-Type:
3019
2896
  - application/json; charset=utf-8
3020
2897
  Date:
3021
- - Tue, 09 Sep 2014 21:48:26 GMT
2898
+ - Fri, 12 Sep 2014 20:48:51 GMT
3022
2899
  Etag:
3023
- - '"1311156402"'
2900
+ - ! '"1311156402"'
3024
2901
  Server:
3025
2902
  - nginx/1.4.7
3026
2903
  X-Powered-By:
@@ -3030,8 +2907,8 @@ http_interactions:
3030
2907
  Connection:
3031
2908
  - keep-alive
3032
2909
  body:
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
2910
+ encoding: US-ASCII
2911
+ 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
2912
  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
2913
  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
2914
  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 +2933,7 @@ http_interactions:
3056
2933
  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
2934
  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
2935
  http_version:
3059
- recorded_at: Tue, 09 Sep 2014 21:48:26 GMT
2936
+ recorded_at: Fri, 12 Sep 2014 20:48:51 GMT
3060
2937
  - request:
3061
2938
  method: get
3062
2939
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c09
@@ -3065,7 +2942,7 @@ http_interactions:
3065
2942
  string: ''
3066
2943
  headers:
3067
2944
  Accept:
3068
- - "*/*; q=0.5, application/xml"
2945
+ - ! '*/*; q=0.5, application/xml'
3069
2946
  Accept-Encoding:
3070
2947
  - gzip, deflate
3071
2948
  User-Agent:
@@ -3080,13 +2957,13 @@ http_interactions:
3080
2957
  Access-Control-Allow-Methods:
3081
2958
  - GET,PATCH,POST,DELETE
3082
2959
  Access-Control-Allow-Origin:
3083
- - "*"
2960
+ - ! '*'
3084
2961
  Content-Type:
3085
2962
  - application/json; charset=utf-8
3086
2963
  Date:
3087
- - Tue, 09 Sep 2014 21:48:26 GMT
2964
+ - Fri, 12 Sep 2014 20:48:51 GMT
3088
2965
  Etag:
3089
- - '"813776824"'
2966
+ - ! '"813776824"'
3090
2967
  Server:
3091
2968
  - nginx/1.4.7
3092
2969
  X-Powered-By:
@@ -3096,8 +2973,8 @@ http_interactions:
3096
2973
  Connection:
3097
2974
  - keep-alive
3098
2975
  body:
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
2976
+ encoding: US-ASCII
2977
+ 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
2978
  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
2979
  - 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
2980
  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 +2997,7 @@ http_interactions:
3120
2997
  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
2998
  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
2999
  http_version:
3123
- recorded_at: Tue, 09 Sep 2014 21:48:26 GMT
3000
+ recorded_at: Fri, 12 Sep 2014 20:48:51 GMT
3124
3001
  - request:
3125
3002
  method: get
3126
3003
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c13
@@ -3129,7 +3006,7 @@ http_interactions:
3129
3006
  string: ''
3130
3007
  headers:
3131
3008
  Accept:
3132
- - "*/*; q=0.5, application/xml"
3009
+ - ! '*/*; q=0.5, application/xml'
3133
3010
  Accept-Encoding:
3134
3011
  - gzip, deflate
3135
3012
  User-Agent:
@@ -3144,13 +3021,13 @@ http_interactions:
3144
3021
  Access-Control-Allow-Methods:
3145
3022
  - GET,PATCH,POST,DELETE
3146
3023
  Access-Control-Allow-Origin:
3147
- - "*"
3024
+ - ! '*'
3148
3025
  Content-Type:
3149
3026
  - application/json; charset=utf-8
3150
3027
  Date:
3151
- - Tue, 09 Sep 2014 21:48:26 GMT
3028
+ - Fri, 12 Sep 2014 20:48:51 GMT
3152
3029
  Etag:
3153
- - '"-1614059195"'
3030
+ - ! '"-1614059195"'
3154
3031
  Server:
3155
3032
  - nginx/1.4.7
3156
3033
  X-Powered-By:
@@ -3160,8 +3037,8 @@ http_interactions:
3160
3037
  Connection:
3161
3038
  - keep-alive
3162
3039
  body:
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
3040
+ encoding: US-ASCII
3041
+ 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
3042
  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
3043
  - 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
3044
  - 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 +3056,7 @@ http_interactions:
3179
3056
  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
3057
  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
3058
  http_version:
3182
- recorded_at: Tue, 09 Sep 2014 21:48:26 GMT
3059
+ recorded_at: Fri, 12 Sep 2014 20:48:51 GMT
3183
3060
  - request:
3184
3061
  method: get
3185
3062
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c1d
@@ -3188,7 +3065,7 @@ http_interactions:
3188
3065
  string: ''
3189
3066
  headers:
3190
3067
  Accept:
3191
- - "*/*; q=0.5, application/xml"
3068
+ - ! '*/*; q=0.5, application/xml'
3192
3069
  Accept-Encoding:
3193
3070
  - gzip, deflate
3194
3071
  User-Agent:
@@ -3203,13 +3080,13 @@ http_interactions:
3203
3080
  Access-Control-Allow-Methods:
3204
3081
  - GET,PATCH,POST,DELETE
3205
3082
  Access-Control-Allow-Origin:
3206
- - "*"
3083
+ - ! '*'
3207
3084
  Content-Type:
3208
3085
  - application/json; charset=utf-8
3209
3086
  Date:
3210
- - Tue, 09 Sep 2014 21:48:26 GMT
3087
+ - Fri, 12 Sep 2014 20:48:51 GMT
3211
3088
  Etag:
3212
- - '"125113949"'
3089
+ - ! '"125113949"'
3213
3090
  Server:
3214
3091
  - nginx/1.4.7
3215
3092
  X-Powered-By:
@@ -3219,8 +3096,8 @@ http_interactions:
3219
3096
  Connection:
3220
3097
  - keep-alive
3221
3098
  body:
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
3099
+ encoding: US-ASCII
3100
+ 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
3101
  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
3102
  - 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
3103
  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 +3117,7 @@ http_interactions:
3240
3117
  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
3118
  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
3119
  http_version:
3243
- recorded_at: Tue, 09 Sep 2014 21:48:26 GMT
3120
+ recorded_at: Fri, 12 Sep 2014 20:48:51 GMT
3244
3121
  - request:
3245
3122
  method: get
3246
3123
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c27
@@ -3249,7 +3126,7 @@ http_interactions:
3249
3126
  string: ''
3250
3127
  headers:
3251
3128
  Accept:
3252
- - "*/*; q=0.5, application/xml"
3129
+ - ! '*/*; q=0.5, application/xml'
3253
3130
  Accept-Encoding:
3254
3131
  - gzip, deflate
3255
3132
  User-Agent:
@@ -3264,13 +3141,13 @@ http_interactions:
3264
3141
  Access-Control-Allow-Methods:
3265
3142
  - GET,PATCH,POST,DELETE
3266
3143
  Access-Control-Allow-Origin:
3267
- - "*"
3144
+ - ! '*'
3268
3145
  Content-Type:
3269
3146
  - application/json; charset=utf-8
3270
3147
  Date:
3271
- - Tue, 09 Sep 2014 21:48:26 GMT
3148
+ - Fri, 12 Sep 2014 20:48:52 GMT
3272
3149
  Etag:
3273
- - '"974836690"'
3150
+ - ! '"974836690"'
3274
3151
  Server:
3275
3152
  - nginx/1.4.7
3276
3153
  X-Powered-By:
@@ -3280,8 +3157,8 @@ http_interactions:
3280
3157
  Connection:
3281
3158
  - keep-alive
3282
3159
  body:
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
3160
+ encoding: US-ASCII
3161
+ 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
3162
  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
3163
  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
3164
  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 +3179,7 @@ http_interactions:
3302
3179
  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
3180
  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
3181
  http_version:
3305
- recorded_at: Tue, 09 Sep 2014 21:48:26 GMT
3182
+ recorded_at: Fri, 12 Sep 2014 20:48:52 GMT
3306
3183
  - request:
3307
3184
  method: get
3308
3185
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c31
@@ -3311,7 +3188,7 @@ http_interactions:
3311
3188
  string: ''
3312
3189
  headers:
3313
3190
  Accept:
3314
- - "*/*; q=0.5, application/xml"
3191
+ - ! '*/*; q=0.5, application/xml'
3315
3192
  Accept-Encoding:
3316
3193
  - gzip, deflate
3317
3194
  User-Agent:
@@ -3326,13 +3203,13 @@ http_interactions:
3326
3203
  Access-Control-Allow-Methods:
3327
3204
  - GET,PATCH,POST,DELETE
3328
3205
  Access-Control-Allow-Origin:
3329
- - "*"
3206
+ - ! '*'
3330
3207
  Content-Type:
3331
3208
  - application/json; charset=utf-8
3332
3209
  Date:
3333
- - Tue, 09 Sep 2014 21:48:26 GMT
3210
+ - Fri, 12 Sep 2014 20:48:52 GMT
3334
3211
  Etag:
3335
- - '"504345345"'
3212
+ - ! '"504345345"'
3336
3213
  Server:
3337
3214
  - nginx/1.4.7
3338
3215
  X-Powered-By:
@@ -3342,8 +3219,8 @@ http_interactions:
3342
3219
  Connection:
3343
3220
  - keep-alive
3344
3221
  body:
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,
3222
+ encoding: US-ASCII
3223
+ 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
3224
  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
3225
  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
3226
  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 +3241,7 @@ http_interactions:
3364
3241
  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
3242
  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
3243
  http_version:
3367
- recorded_at: Tue, 09 Sep 2014 21:48:26 GMT
3244
+ recorded_at: Fri, 12 Sep 2014 20:48:52 GMT
3368
3245
  - request:
3369
3246
  method: get
3370
3247
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c3b
@@ -3373,7 +3250,7 @@ http_interactions:
3373
3250
  string: ''
3374
3251
  headers:
3375
3252
  Accept:
3376
- - "*/*; q=0.5, application/xml"
3253
+ - ! '*/*; q=0.5, application/xml'
3377
3254
  Accept-Encoding:
3378
3255
  - gzip, deflate
3379
3256
  User-Agent:
@@ -3388,13 +3265,13 @@ http_interactions:
3388
3265
  Access-Control-Allow-Methods:
3389
3266
  - GET,PATCH,POST,DELETE
3390
3267
  Access-Control-Allow-Origin:
3391
- - "*"
3268
+ - ! '*'
3392
3269
  Content-Type:
3393
3270
  - application/json; charset=utf-8
3394
3271
  Date:
3395
- - Tue, 09 Sep 2014 21:48:26 GMT
3272
+ - Fri, 12 Sep 2014 20:48:52 GMT
3396
3273
  Etag:
3397
- - '"1018050984"'
3274
+ - ! '"1018050984"'
3398
3275
  Server:
3399
3276
  - nginx/1.4.7
3400
3277
  X-Powered-By:
@@ -3404,8 +3281,8 @@ http_interactions:
3404
3281
  Connection:
3405
3282
  - keep-alive
3406
3283
  body:
3407
- encoding: UTF-8
3408
- string: '{"data":[{"data":{"course_name":"Kindergarten Social Studies, Class
3284
+ encoding: US-ASCII
3285
+ string: ! '{"data":[{"data":{"course_name":"Kindergarten Social Studies, Class
3409
3286
  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
3287
  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
3288
  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 +3312,7 @@ http_interactions:
3435
3312
  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
3313
  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
3314
  http_version:
3438
- recorded_at: Tue, 09 Sep 2014 21:48:26 GMT
3315
+ recorded_at: Fri, 12 Sep 2014 20:48:52 GMT
3439
3316
  - request:
3440
3317
  method: get
3441
3318
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c45
@@ -3444,7 +3321,7 @@ http_interactions:
3444
3321
  string: ''
3445
3322
  headers:
3446
3323
  Accept:
3447
- - "*/*; q=0.5, application/xml"
3324
+ - ! '*/*; q=0.5, application/xml'
3448
3325
  Accept-Encoding:
3449
3326
  - gzip, deflate
3450
3327
  User-Agent:
@@ -3459,13 +3336,13 @@ http_interactions:
3459
3336
  Access-Control-Allow-Methods:
3460
3337
  - GET,PATCH,POST,DELETE
3461
3338
  Access-Control-Allow-Origin:
3462
- - "*"
3339
+ - ! '*'
3463
3340
  Content-Type:
3464
3341
  - application/json; charset=utf-8
3465
3342
  Date:
3466
- - Tue, 09 Sep 2014 21:48:26 GMT
3343
+ - Fri, 12 Sep 2014 20:48:52 GMT
3467
3344
  Etag:
3468
- - '"159029288"'
3345
+ - ! '"159029288"'
3469
3346
  Server:
3470
3347
  - nginx/1.4.7
3471
3348
  X-Powered-By:
@@ -3475,8 +3352,8 @@ http_interactions:
3475
3352
  Connection:
3476
3353
  - keep-alive
3477
3354
  body:
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
3355
+ encoding: US-ASCII
3356
+ 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
3357
  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
3358
  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
3359
  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 +3384,7 @@ http_interactions:
3507
3384
  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
3385
  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
3386
  http_version:
3510
- recorded_at: Tue, 09 Sep 2014 21:48:26 GMT
3387
+ recorded_at: Fri, 12 Sep 2014 20:48:52 GMT
3511
3388
  - request:
3512
3389
  method: get
3513
3390
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c4f
@@ -3516,7 +3393,7 @@ http_interactions:
3516
3393
  string: ''
3517
3394
  headers:
3518
3395
  Accept:
3519
- - "*/*; q=0.5, application/xml"
3396
+ - ! '*/*; q=0.5, application/xml'
3520
3397
  Accept-Encoding:
3521
3398
  - gzip, deflate
3522
3399
  User-Agent:
@@ -3531,13 +3408,13 @@ http_interactions:
3531
3408
  Access-Control-Allow-Methods:
3532
3409
  - GET,PATCH,POST,DELETE
3533
3410
  Access-Control-Allow-Origin:
3534
- - "*"
3411
+ - ! '*'
3535
3412
  Content-Type:
3536
3413
  - application/json; charset=utf-8
3537
3414
  Date:
3538
- - Tue, 09 Sep 2014 21:48:27 GMT
3415
+ - Fri, 12 Sep 2014 20:48:52 GMT
3539
3416
  Etag:
3540
- - '"-570791926"'
3417
+ - ! '"-570791926"'
3541
3418
  Server:
3542
3419
  - nginx/1.4.7
3543
3420
  X-Powered-By:
@@ -3547,8 +3424,8 @@ http_interactions:
3547
3424
  Connection:
3548
3425
  - keep-alive
3549
3426
  body:
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
3427
+ encoding: US-ASCII
3428
+ 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
3429
  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
3430
  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
3431
  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 +3455,7 @@ http_interactions:
3578
3455
  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
3456
  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
3457
  http_version:
3581
- recorded_at: Tue, 09 Sep 2014 21:48:27 GMT
3458
+ recorded_at: Fri, 12 Sep 2014 20:48:52 GMT
3582
3459
  - request:
3583
3460
  method: get
3584
3461
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c59
@@ -3587,7 +3464,7 @@ http_interactions:
3587
3464
  string: ''
3588
3465
  headers:
3589
3466
  Accept:
3590
- - "*/*; q=0.5, application/xml"
3467
+ - ! '*/*; q=0.5, application/xml'
3591
3468
  Accept-Encoding:
3592
3469
  - gzip, deflate
3593
3470
  User-Agent:
@@ -3602,13 +3479,13 @@ http_interactions:
3602
3479
  Access-Control-Allow-Methods:
3603
3480
  - GET,PATCH,POST,DELETE
3604
3481
  Access-Control-Allow-Origin:
3605
- - "*"
3482
+ - ! '*'
3606
3483
  Content-Type:
3607
3484
  - application/json; charset=utf-8
3608
3485
  Date:
3609
- - Tue, 09 Sep 2014 21:48:27 GMT
3486
+ - Fri, 12 Sep 2014 20:48:52 GMT
3610
3487
  Etag:
3611
- - '"-522155333"'
3488
+ - ! '"-522155333"'
3612
3489
  Server:
3613
3490
  - nginx/1.4.7
3614
3491
  X-Powered-By:
@@ -3618,8 +3495,8 @@ http_interactions:
3618
3495
  Connection:
3619
3496
  - keep-alive
3620
3497
  body:
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
3498
+ encoding: US-ASCII
3499
+ 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
3500
  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
3501
  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
3502
  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 +3519,7 @@ http_interactions:
3642
3519
  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
3520
  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
3521
  http_version:
3645
- recorded_at: Tue, 09 Sep 2014 21:48:27 GMT
3522
+ recorded_at: Fri, 12 Sep 2014 20:48:52 GMT
3646
3523
  - request:
3647
3524
  method: get
3648
3525
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/sections?limit=10&starting_after=530e597b049e75a9262d0c63
@@ -3651,7 +3528,7 @@ http_interactions:
3651
3528
  string: ''
3652
3529
  headers:
3653
3530
  Accept:
3654
- - "*/*; q=0.5, application/xml"
3531
+ - ! '*/*; q=0.5, application/xml'
3655
3532
  Accept-Encoding:
3656
3533
  - gzip, deflate
3657
3534
  User-Agent:
@@ -3666,13 +3543,13 @@ http_interactions:
3666
3543
  Access-Control-Allow-Methods:
3667
3544
  - GET,PATCH,POST,DELETE
3668
3545
  Access-Control-Allow-Origin:
3669
- - "*"
3546
+ - ! '*'
3670
3547
  Content-Type:
3671
3548
  - application/json; charset=utf-8
3672
3549
  Date:
3673
- - Tue, 09 Sep 2014 21:48:27 GMT
3550
+ - Fri, 12 Sep 2014 20:48:53 GMT
3674
3551
  Etag:
3675
- - '"322596726"'
3552
+ - ! '"322596726"'
3676
3553
  Server:
3677
3554
  - nginx/1.4.7
3678
3555
  X-Powered-By:
@@ -3682,8 +3559,8 @@ http_interactions:
3682
3559
  Connection:
3683
3560
  - keep-alive
3684
3561
  body:
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
3562
+ encoding: US-ASCII
3563
+ 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
3564
  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
3565
  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
3566
  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 +3588,5 @@ http_interactions:
3711
3588
  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
3589
  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
3590
  http_version:
3714
- recorded_at: Tue, 09 Sep 2014 21:48:27 GMT
3591
+ recorded_at: Fri, 12 Sep 2014 20:48:53 GMT
3715
3592
  recorded_with: VCR 2.4.0