clever-ruby 0.5.0 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. checksums.yaml +13 -5
  2. data/CHANGELOG.md +4 -0
  3. data/README.md +1 -1
  4. data/lib/clever-ruby.rb +1 -0
  5. data/lib/clever-ruby/api_operations/list.rb +24 -0
  6. data/lib/clever-ruby/api_operations/pagelist.rb +6 -2
  7. data/lib/clever-ruby/api_operations/results_list.rb +20 -0
  8. data/lib/clever-ruby/util.rb +4 -0
  9. data/lib/clever-ruby/version.rb +1 -1
  10. data/test/data/vcr_cassettes/district_count.yml +44 -0
  11. data/test/data/vcr_cassettes/district_find_by_page.yml +85 -0
  12. data/test/data/vcr_cassettes/district_find_multiple.yml +85 -0
  13. data/test/data/vcr_cassettes/district_find_one.yml +85 -0
  14. data/test/data/vcr_cassettes/districts.yml +46 -5
  15. data/test/data/vcr_cassettes/districts_event_pages.yml +134 -134
  16. data/test/data/vcr_cassettes/districts_events.yml +44 -44
  17. data/test/data/vcr_cassettes/districts_school_pages.yml +50 -50
  18. data/test/data/vcr_cassettes/districts_schools.yml +44 -44
  19. data/test/data/vcr_cassettes/districts_section_pages.yml +303 -303
  20. data/test/data/vcr_cassettes/districts_sections.yml +44 -44
  21. data/test/data/vcr_cassettes/districts_student_pages.yml +184 -184
  22. data/test/data/vcr_cassettes/districts_students.yml +44 -44
  23. data/test/data/vcr_cassettes/districts_students_filtered.yml +25 -25
  24. data/test/data/vcr_cassettes/districts_teacher_pages.yml +100 -100
  25. data/test/data/vcr_cassettes/districts_teachers.yml +44 -44
  26. data/test/data/vcr_cassettes/error_handling.yml +24 -24
  27. data/test/data/vcr_cassettes/event_count.yml +44 -0
  28. data/test/data/vcr_cassettes/event_find_by_page.yml +110 -0
  29. data/test/data/vcr_cassettes/event_find_multiple.yml +124 -0
  30. data/test/data/vcr_cassettes/event_find_one.yml +114 -0
  31. data/test/data/vcr_cassettes/events.yml +110 -0
  32. data/test/data/vcr_cassettes/school_count.yml +44 -0
  33. data/test/data/vcr_cassettes/school_find_by_page.yml +96 -0
  34. data/test/data/vcr_cassettes/school_find_multiple.yml +104 -0
  35. data/test/data/vcr_cassettes/school_find_one.yml +99 -0
  36. data/test/data/vcr_cassettes/schools.yml +48 -7
  37. data/test/data/vcr_cassettes/schools_optional_attributes.yml +7 -7
  38. data/test/data/vcr_cassettes/section_count.yml +44 -0
  39. data/test/data/vcr_cassettes/section_find_by_page.yml +1146 -0
  40. data/test/data/vcr_cassettes/section_find_multiple.yml +147 -0
  41. data/test/data/vcr_cassettes/section_find_one.yml +352 -0
  42. data/test/data/vcr_cassettes/sections.yml +69 -28
  43. data/test/data/vcr_cassettes/student_count.yml +44 -0
  44. data/test/data/vcr_cassettes/student_find_by_page.yml +1171 -0
  45. data/test/data/vcr_cassettes/student_find_multiple.yml +111 -0
  46. data/test/data/vcr_cassettes/student_find_one.yml +160 -0
  47. data/test/data/vcr_cassettes/students.yml +118 -77
  48. data/test/data/vcr_cassettes/teacher_count.yml +44 -0
  49. data/test/data/vcr_cassettes/teacher_find_by_page.yml +176 -0
  50. data/test/data/vcr_cassettes/teacher_find_multiple.yml +119 -0
  51. data/test/data/vcr_cassettes/teacher_find_one.yml +177 -0
  52. data/test/data/vcr_cassettes/teachers.yml +15 -3712
  53. data/test/integration/api_operations/list_test.rb +84 -28
  54. metadata +82 -30
@@ -8,7 +8,7 @@ http_interactions:
8
8
  string: ''
9
9
  headers:
10
10
  Accept:
11
- - ! '*/*; q=0.5, application/xml'
11
+ - "*/*; q=0.5, application/xml"
12
12
  Accept-Encoding:
13
13
  - gzip, deflate
14
14
  User-Agent:
@@ -23,11 +23,11 @@ http_interactions:
23
23
  Access-Control-Allow-Methods:
24
24
  - GET,PATCH,POST,DELETE
25
25
  Access-Control-Allow-Origin:
26
- - ! '*'
26
+ - "*"
27
27
  Content-Type:
28
28
  - application/json; charset=utf-8
29
29
  Date:
30
- - Mon, 08 Sep 2014 21:31:28 GMT
30
+ - Tue, 09 Sep 2014 21:48:41 GMT
31
31
  Server:
32
32
  - nginx/1.4.7
33
33
  X-Powered-By:
@@ -37,10 +37,10 @@ http_interactions:
37
37
  Connection:
38
38
  - keep-alive
39
39
  body:
40
- encoding: US-ASCII
41
- string: ! '{"data":[{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"uri":"/v1.1/districts/4fd43cc56d11340000000005"}],"paging":{"current":1,"total":1,"count":1},"links":[{"rel":"self","uri":"/v1.1/districts"}]}'
40
+ encoding: UTF-8
41
+ string: '{"data":[{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"uri":"/v1.1/districts/4fd43cc56d11340000000005"}],"paging":{"current":1,"total":1,"count":1},"links":[{"rel":"self","uri":"/v1.1/districts"}]}'
42
42
  http_version:
43
- recorded_at: Mon, 08 Sep 2014 21:31:28 GMT
43
+ recorded_at: Tue, 09 Sep 2014 21:48:41 GMT
44
44
  - request:
45
45
  method: get
46
46
  uri: https://DEMO_KEY:@api.clever.com/v1.1/districts/4fd43cc56d11340000000005
@@ -49,7 +49,7 @@ http_interactions:
49
49
  string: ''
50
50
  headers:
51
51
  Accept:
52
- - ! '*/*; q=0.5, application/xml'
52
+ - "*/*; q=0.5, application/xml"
53
53
  Accept-Encoding:
54
54
  - gzip, deflate
55
55
  User-Agent:
@@ -64,11 +64,11 @@ http_interactions:
64
64
  Access-Control-Allow-Methods:
65
65
  - GET,PATCH,POST,DELETE
66
66
  Access-Control-Allow-Origin:
67
- - ! '*'
67
+ - "*"
68
68
  Content-Type:
69
69
  - application/json; charset=utf-8
70
70
  Date:
71
- - Mon, 08 Sep 2014 21:31:28 GMT
71
+ - Tue, 09 Sep 2014 21:48:41 GMT
72
72
  Server:
73
73
  - nginx/1.4.7
74
74
  X-Powered-By:
@@ -78,10 +78,10 @@ http_interactions:
78
78
  Connection:
79
79
  - keep-alive
80
80
  body:
81
- encoding: US-ASCII
82
- string: ! '{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005"},{"rel":"schools","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"},{"rel":"teachers","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers"},{"rel":"students","uri":"/v1.1/districts/4fd43cc56d11340000000005/students"},{"rel":"sections","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections"},{"rel":"events","uri":"/v1.1/districts/4fd43cc56d11340000000005/events"}]}'
81
+ encoding: UTF-8
82
+ string: '{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005"},{"rel":"schools","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"},{"rel":"teachers","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers"},{"rel":"students","uri":"/v1.1/districts/4fd43cc56d11340000000005/students"},{"rel":"sections","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections"},{"rel":"events","uri":"/v1.1/districts/4fd43cc56d11340000000005/events"}]}'
83
83
  http_version:
84
- recorded_at: Mon, 08 Sep 2014 21:31:28 GMT
84
+ recorded_at: Tue, 09 Sep 2014 21:48:41 GMT
85
85
  - request:
86
86
  method: get
87
87
  uri: https://DEMO_KEY:@api.clever.com/v1.1/districts/4fd43cc56d11340000000005
@@ -90,7 +90,7 @@ http_interactions:
90
90
  string: ''
91
91
  headers:
92
92
  Accept:
93
- - ! '*/*; q=0.5, application/xml'
93
+ - "*/*; q=0.5, application/xml"
94
94
  Accept-Encoding:
95
95
  - gzip, deflate
96
96
  User-Agent:
@@ -105,11 +105,11 @@ http_interactions:
105
105
  Access-Control-Allow-Methods:
106
106
  - GET,PATCH,POST,DELETE
107
107
  Access-Control-Allow-Origin:
108
- - ! '*'
108
+ - "*"
109
109
  Content-Type:
110
110
  - application/json; charset=utf-8
111
111
  Date:
112
- - Mon, 08 Sep 2014 21:31:28 GMT
112
+ - Tue, 09 Sep 2014 21:48:41 GMT
113
113
  Server:
114
114
  - nginx/1.4.7
115
115
  X-Powered-By:
@@ -119,10 +119,10 @@ http_interactions:
119
119
  Connection:
120
120
  - keep-alive
121
121
  body:
122
- encoding: US-ASCII
123
- string: ! '{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005"},{"rel":"schools","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"},{"rel":"teachers","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers"},{"rel":"students","uri":"/v1.1/districts/4fd43cc56d11340000000005/students"},{"rel":"sections","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections"},{"rel":"events","uri":"/v1.1/districts/4fd43cc56d11340000000005/events"}]}'
122
+ encoding: UTF-8
123
+ string: '{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005"},{"rel":"schools","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"},{"rel":"teachers","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers"},{"rel":"students","uri":"/v1.1/districts/4fd43cc56d11340000000005/students"},{"rel":"sections","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections"},{"rel":"events","uri":"/v1.1/districts/4fd43cc56d11340000000005/events"}]}'
124
124
  http_version:
125
- recorded_at: Mon, 08 Sep 2014 21:31:28 GMT
125
+ recorded_at: Tue, 09 Sep 2014 21:48:41 GMT
126
126
  - request:
127
127
  method: get
128
128
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students
@@ -131,7 +131,7 @@ http_interactions:
131
131
  string: ''
132
132
  headers:
133
133
  Accept:
134
- - ! '*/*; q=0.5, application/xml'
134
+ - "*/*; q=0.5, application/xml"
135
135
  Accept-Encoding:
136
136
  - gzip, deflate
137
137
  User-Agent:
@@ -146,13 +146,13 @@ http_interactions:
146
146
  Access-Control-Allow-Methods:
147
147
  - GET,PATCH,POST,DELETE
148
148
  Access-Control-Allow-Origin:
149
- - ! '*'
149
+ - "*"
150
150
  Content-Type:
151
151
  - application/json; charset=utf-8
152
152
  Date:
153
- - Mon, 08 Sep 2014 21:31:28 GMT
153
+ - Tue, 09 Sep 2014 21:48:42 GMT
154
154
  Etag:
155
- - ! '"-1846425227"'
155
+ - '"-1846425227"'
156
156
  Server:
157
157
  - nginx/1.4.7
158
158
  X-Powered-By:
@@ -162,8 +162,8 @@ http_interactions:
162
162
  Connection:
163
163
  - keep-alive
164
164
  body:
165
- encoding: US-ASCII
166
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:12.346Z","credentials":{"district_username":"stevez33","district_password":"auyik3tiTieL"},"district":"4fd43cc56d11340000000005","dob":"2/11/2007","ell_status":"N","email":"z.steve@example.net","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.656Z","location":{"zip":"10459"},"name":{"first":"Steve","middle":"G","last":"Ziemann"},"race":"Black
165
+ encoding: UTF-8
166
+ string: '{"data":[{"data":{"created":"2014-02-26T21:15:12.346Z","credentials":{"district_username":"stevez33","district_password":"auyik3tiTieL"},"district":"4fd43cc56d11340000000005","dob":"2/11/2007","ell_status":"N","email":"z.steve@example.net","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.656Z","location":{"zip":"10459"},"name":{"first":"Steve","middle":"G","last":"Ziemann"},"race":"Black
167
167
  or African American","school":"530e595026403103360ff9fe","sis_id":"100095233","state_id":"231786324","student_number":"100095233","id":"530e5960049e75a9262cff1d"},"uri":"/v1.1/students/530e5960049e75a9262cff1d"},{"data":{"created":"2014-02-26T21:15:12.358Z","credentials":{"district_username":"douglasw58","district_password":"ahFii2nae"},"district":"4fd43cc56d11340000000005","dob":"6/18/1998","ell_status":"Y","email":"w_douglas@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.661Z","location":{"zip":"11004"},"name":{"first":"Douglas","middle":"S","last":"Wisoky"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"101565758","state_id":"498006597","student_number":"101565758","id":"530e5960049e75a9262cff1e"},"uri":"/v1.1/students/530e5960049e75a9262cff1e"},{"data":{"created":"2014-02-26T21:15:12.368Z","credentials":{"district_username":"joel42","district_password":"CaaDie0eboo"},"district":"4fd43cc56d11340000000005","dob":"7/4/1997","ell_status":"Y","email":"l.joe@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.664Z","location":{"zip":"10473"},"name":{"first":"Joe","middle":"S","last":"Lakin"},"race":"Black
168
168
  or African American","school":"530e595026403103360ff9fd","sis_id":"106078142","state_id":"635493722","student_number":"106078142","id":"530e5960049e75a9262cff1f"},"uri":"/v1.1/students/530e5960049e75a9262cff1f"},{"data":{"created":"2014-02-26T21:15:12.374Z","credentials":{"district_username":"evalynb40","district_password":"ooXahwook2"},"district":"4fd43cc56d11340000000005","dob":"8/10/2006","ell_status":"N","email":"b_evalyn@example.org","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.668Z","location":{"zip":"10029"},"name":{"first":"Evalyn","middle":"J","last":"Bradtke"},"race":"Black
169
169
  or African American","school":"530e595026403103360ff9fe","sis_id":"106091540","state_id":"552729322","student_number":"106091540","id":"530e5960049e75a9262cff20"},"uri":"/v1.1/students/530e5960049e75a9262cff20"},{"data":{"created":"2014-02-26T21:15:12.382Z","credentials":{"district_username":"coryt00","district_password":"ahW1taesao5"},"district":"4fd43cc56d11340000000005","dob":"7/21/1997","ell_status":"Y","email":"cory_t@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.673Z","location":{"zip":"10038"},"name":{"first":"Cory","middle":"V","last":"Thompson"},"race":"Black
@@ -236,7 +236,7 @@ http_interactions:
236
236
  or More Races","school":"530e595026403103360ff9ff","sis_id":"189422359","state_id":"949395711","student_number":"189422359","id":"530e5961049e75a9262cffe3"},"uri":"/v1.1/students/530e5961049e75a9262cffe3"},{"data":{"created":"2014-02-26T21:15:13.206Z","credentials":{"district_username":"mial61","district_password":"uka5Hixae"},"district":"4fd43cc56d11340000000005","dob":"11/10/2002","ell_status":"N","email":"l_mia@example.org","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.072Z","location":{"zip":"10002"},"name":{"first":"Mia","middle":"J","last":"Lindgren"},"race":"Black
237
237
  or African American","school":"530e595026403103360ff9fe","sis_id":"189492161","state_id":"661166974","student_number":"189492161","id":"530e5961049e75a9262cffe4"},"uri":"/v1.1/students/530e5961049e75a9262cffe4"}],"paging":{"current":1,"total":11,"count":1004},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5961049e75a9262cffe4"}]}'
238
238
  http_version:
239
- recorded_at: Mon, 08 Sep 2014 21:31:28 GMT
239
+ recorded_at: Tue, 09 Sep 2014 21:48:42 GMT
240
240
  - request:
241
241
  method: get
242
242
  uri: https://DEMO_KEY:@api.clever.com/v1.1/districts/4fd43cc56d11340000000005
@@ -245,7 +245,7 @@ http_interactions:
245
245
  string: ''
246
246
  headers:
247
247
  Accept:
248
- - ! '*/*; q=0.5, application/xml'
248
+ - "*/*; q=0.5, application/xml"
249
249
  Accept-Encoding:
250
250
  - gzip, deflate
251
251
  User-Agent:
@@ -260,11 +260,11 @@ http_interactions:
260
260
  Access-Control-Allow-Methods:
261
261
  - GET,PATCH,POST,DELETE
262
262
  Access-Control-Allow-Origin:
263
- - ! '*'
263
+ - "*"
264
264
  Content-Type:
265
265
  - application/json; charset=utf-8
266
266
  Date:
267
- - Mon, 08 Sep 2014 21:31:28 GMT
267
+ - Tue, 09 Sep 2014 21:48:42 GMT
268
268
  Server:
269
269
  - nginx/1.4.7
270
270
  X-Powered-By:
@@ -274,10 +274,10 @@ http_interactions:
274
274
  Connection:
275
275
  - keep-alive
276
276
  body:
277
- encoding: US-ASCII
278
- 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"}]}'
277
+ encoding: UTF-8
278
+ 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"}]}'
279
279
  http_version:
280
- recorded_at: Mon, 08 Sep 2014 21:31:28 GMT
280
+ recorded_at: Tue, 09 Sep 2014 21:48:42 GMT
281
281
  - request:
282
282
  method: get
283
283
  uri: https://DEMO_KEY:@api.clever.com/v1.1/districts/4fd43cc56d11340000000005
@@ -286,7 +286,7 @@ http_interactions:
286
286
  string: ''
287
287
  headers:
288
288
  Accept:
289
- - ! '*/*; q=0.5, application/xml'
289
+ - "*/*; q=0.5, application/xml"
290
290
  Accept-Encoding:
291
291
  - gzip, deflate
292
292
  User-Agent:
@@ -301,11 +301,11 @@ http_interactions:
301
301
  Access-Control-Allow-Methods:
302
302
  - GET,PATCH,POST,DELETE
303
303
  Access-Control-Allow-Origin:
304
- - ! '*'
304
+ - "*"
305
305
  Content-Type:
306
306
  - application/json; charset=utf-8
307
307
  Date:
308
- - Mon, 08 Sep 2014 21:31:29 GMT
308
+ - Tue, 09 Sep 2014 21:48:42 GMT
309
309
  Server:
310
310
  - nginx/1.4.7
311
311
  X-Powered-By:
@@ -315,10 +315,10 @@ http_interactions:
315
315
  Connection:
316
316
  - keep-alive
317
317
  body:
318
- encoding: US-ASCII
319
- 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"}]}'
318
+ encoding: UTF-8
319
+ 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"}]}'
320
320
  http_version:
321
- recorded_at: Mon, 08 Sep 2014 21:31:28 GMT
321
+ recorded_at: Tue, 09 Sep 2014 21:48:42 GMT
322
322
  - request:
323
323
  method: get
324
324
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students
@@ -327,7 +327,7 @@ http_interactions:
327
327
  string: ''
328
328
  headers:
329
329
  Accept:
330
- - ! '*/*; q=0.5, application/xml'
330
+ - "*/*; q=0.5, application/xml"
331
331
  Accept-Encoding:
332
332
  - gzip, deflate
333
333
  User-Agent:
@@ -342,13 +342,13 @@ http_interactions:
342
342
  Access-Control-Allow-Methods:
343
343
  - GET,PATCH,POST,DELETE
344
344
  Access-Control-Allow-Origin:
345
- - ! '*'
345
+ - "*"
346
346
  Content-Type:
347
347
  - application/json; charset=utf-8
348
348
  Date:
349
- - Mon, 08 Sep 2014 21:31:29 GMT
349
+ - Tue, 09 Sep 2014 21:48:42 GMT
350
350
  Etag:
351
- - ! '"-1846425227"'
351
+ - '"-1846425227"'
352
352
  Server:
353
353
  - nginx/1.4.7
354
354
  X-Powered-By:
@@ -358,8 +358,8 @@ http_interactions:
358
358
  Connection:
359
359
  - keep-alive
360
360
  body:
361
- encoding: US-ASCII
362
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:12.346Z","credentials":{"district_username":"stevez33","district_password":"auyik3tiTieL"},"district":"4fd43cc56d11340000000005","dob":"2/11/2007","ell_status":"N","email":"z.steve@example.net","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.656Z","location":{"zip":"10459"},"name":{"first":"Steve","middle":"G","last":"Ziemann"},"race":"Black
361
+ encoding: UTF-8
362
+ string: '{"data":[{"data":{"created":"2014-02-26T21:15:12.346Z","credentials":{"district_username":"stevez33","district_password":"auyik3tiTieL"},"district":"4fd43cc56d11340000000005","dob":"2/11/2007","ell_status":"N","email":"z.steve@example.net","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.656Z","location":{"zip":"10459"},"name":{"first":"Steve","middle":"G","last":"Ziemann"},"race":"Black
363
363
  or African American","school":"530e595026403103360ff9fe","sis_id":"100095233","state_id":"231786324","student_number":"100095233","id":"530e5960049e75a9262cff1d"},"uri":"/v1.1/students/530e5960049e75a9262cff1d"},{"data":{"created":"2014-02-26T21:15:12.358Z","credentials":{"district_username":"douglasw58","district_password":"ahFii2nae"},"district":"4fd43cc56d11340000000005","dob":"6/18/1998","ell_status":"Y","email":"w_douglas@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.661Z","location":{"zip":"11004"},"name":{"first":"Douglas","middle":"S","last":"Wisoky"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"101565758","state_id":"498006597","student_number":"101565758","id":"530e5960049e75a9262cff1e"},"uri":"/v1.1/students/530e5960049e75a9262cff1e"},{"data":{"created":"2014-02-26T21:15:12.368Z","credentials":{"district_username":"joel42","district_password":"CaaDie0eboo"},"district":"4fd43cc56d11340000000005","dob":"7/4/1997","ell_status":"Y","email":"l.joe@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.664Z","location":{"zip":"10473"},"name":{"first":"Joe","middle":"S","last":"Lakin"},"race":"Black
364
364
  or African American","school":"530e595026403103360ff9fd","sis_id":"106078142","state_id":"635493722","student_number":"106078142","id":"530e5960049e75a9262cff1f"},"uri":"/v1.1/students/530e5960049e75a9262cff1f"},{"data":{"created":"2014-02-26T21:15:12.374Z","credentials":{"district_username":"evalynb40","district_password":"ooXahwook2"},"district":"4fd43cc56d11340000000005","dob":"8/10/2006","ell_status":"N","email":"b_evalyn@example.org","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.668Z","location":{"zip":"10029"},"name":{"first":"Evalyn","middle":"J","last":"Bradtke"},"race":"Black
365
365
  or African American","school":"530e595026403103360ff9fe","sis_id":"106091540","state_id":"552729322","student_number":"106091540","id":"530e5960049e75a9262cff20"},"uri":"/v1.1/students/530e5960049e75a9262cff20"},{"data":{"created":"2014-02-26T21:15:12.382Z","credentials":{"district_username":"coryt00","district_password":"ahW1taesao5"},"district":"4fd43cc56d11340000000005","dob":"7/21/1997","ell_status":"Y","email":"cory_t@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.673Z","location":{"zip":"10038"},"name":{"first":"Cory","middle":"V","last":"Thompson"},"race":"Black
@@ -432,5 +432,5 @@ http_interactions:
432
432
  or More Races","school":"530e595026403103360ff9ff","sis_id":"189422359","state_id":"949395711","student_number":"189422359","id":"530e5961049e75a9262cffe3"},"uri":"/v1.1/students/530e5961049e75a9262cffe3"},{"data":{"created":"2014-02-26T21:15:13.206Z","credentials":{"district_username":"mial61","district_password":"uka5Hixae"},"district":"4fd43cc56d11340000000005","dob":"11/10/2002","ell_status":"N","email":"l_mia@example.org","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.072Z","location":{"zip":"10002"},"name":{"first":"Mia","middle":"J","last":"Lindgren"},"race":"Black
433
433
  or African American","school":"530e595026403103360ff9fe","sis_id":"189492161","state_id":"661166974","student_number":"189492161","id":"530e5961049e75a9262cffe4"},"uri":"/v1.1/students/530e5961049e75a9262cffe4"}],"paging":{"current":1,"total":11,"count":1004},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?starting_after=530e5961049e75a9262cffe4"}]}'
434
434
  http_version:
435
- recorded_at: Mon, 08 Sep 2014 21:31:29 GMT
435
+ recorded_at: Tue, 09 Sep 2014 21:48:42 GMT
436
436
  recorded_with: VCR 2.4.0
@@ -8,7 +8,7 @@ http_interactions:
8
8
  string: ''
9
9
  headers:
10
10
  Accept:
11
- - ! '*/*; q=0.5, application/xml'
11
+ - "*/*; q=0.5, application/xml"
12
12
  Accept-Encoding:
13
13
  - gzip, deflate
14
14
  User-Agent:
@@ -23,11 +23,11 @@ http_interactions:
23
23
  Access-Control-Allow-Methods:
24
24
  - GET,PATCH,POST,DELETE
25
25
  Access-Control-Allow-Origin:
26
- - ! '*'
26
+ - "*"
27
27
  Content-Type:
28
28
  - application/json; charset=utf-8
29
29
  Date:
30
- - Mon, 08 Sep 2014 21:31:27 GMT
30
+ - Tue, 09 Sep 2014 21:48:41 GMT
31
31
  Server:
32
32
  - nginx/1.4.7
33
33
  X-Powered-By:
@@ -37,10 +37,10 @@ http_interactions:
37
37
  Connection:
38
38
  - keep-alive
39
39
  body:
40
- encoding: US-ASCII
41
- string: ! '{"data":[{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"uri":"/v1.1/districts/4fd43cc56d11340000000005"}],"paging":{"current":1,"total":1,"count":1},"links":[{"rel":"self","uri":"/v1.1/districts"}]}'
40
+ encoding: UTF-8
41
+ string: '{"data":[{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"uri":"/v1.1/districts/4fd43cc56d11340000000005"}],"paging":{"current":1,"total":1,"count":1},"links":[{"rel":"self","uri":"/v1.1/districts"}]}'
42
42
  http_version:
43
- recorded_at: Mon, 08 Sep 2014 21:31:27 GMT
43
+ recorded_at: Tue, 09 Sep 2014 21:48:41 GMT
44
44
  - request:
45
45
  method: get
46
46
  uri: https://DEMO_KEY:@api.clever.com/v1.1/districts/4fd43cc56d11340000000005
@@ -49,7 +49,7 @@ http_interactions:
49
49
  string: ''
50
50
  headers:
51
51
  Accept:
52
- - ! '*/*; q=0.5, application/xml'
52
+ - "*/*; q=0.5, application/xml"
53
53
  Accept-Encoding:
54
54
  - gzip, deflate
55
55
  User-Agent:
@@ -64,11 +64,11 @@ http_interactions:
64
64
  Access-Control-Allow-Methods:
65
65
  - GET,PATCH,POST,DELETE
66
66
  Access-Control-Allow-Origin:
67
- - ! '*'
67
+ - "*"
68
68
  Content-Type:
69
69
  - application/json; charset=utf-8
70
70
  Date:
71
- - Mon, 08 Sep 2014 21:31:27 GMT
71
+ - Tue, 09 Sep 2014 21:48:41 GMT
72
72
  Server:
73
73
  - nginx/1.4.7
74
74
  X-Powered-By:
@@ -78,10 +78,10 @@ http_interactions:
78
78
  Connection:
79
79
  - keep-alive
80
80
  body:
81
- encoding: US-ASCII
82
- string: ! '{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005"},{"rel":"schools","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"},{"rel":"teachers","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers"},{"rel":"students","uri":"/v1.1/districts/4fd43cc56d11340000000005/students"},{"rel":"sections","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections"},{"rel":"events","uri":"/v1.1/districts/4fd43cc56d11340000000005/events"}]}'
81
+ encoding: UTF-8
82
+ string: '{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005"},{"rel":"schools","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"},{"rel":"teachers","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers"},{"rel":"students","uri":"/v1.1/districts/4fd43cc56d11340000000005/students"},{"rel":"sections","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections"},{"rel":"events","uri":"/v1.1/districts/4fd43cc56d11340000000005/events"}]}'
83
83
  http_version:
84
- recorded_at: Mon, 08 Sep 2014 21:31:27 GMT
84
+ recorded_at: Tue, 09 Sep 2014 21:48:41 GMT
85
85
  - request:
86
86
  method: get
87
87
  uri: https://DEMO_KEY:@api.clever.com/v1.1/districts/4fd43cc56d11340000000005
@@ -90,7 +90,7 @@ http_interactions:
90
90
  string: ''
91
91
  headers:
92
92
  Accept:
93
- - ! '*/*; q=0.5, application/xml'
93
+ - "*/*; q=0.5, application/xml"
94
94
  Accept-Encoding:
95
95
  - gzip, deflate
96
96
  User-Agent:
@@ -105,11 +105,11 @@ http_interactions:
105
105
  Access-Control-Allow-Methods:
106
106
  - GET,PATCH,POST,DELETE
107
107
  Access-Control-Allow-Origin:
108
- - ! '*'
108
+ - "*"
109
109
  Content-Type:
110
110
  - application/json; charset=utf-8
111
111
  Date:
112
- - Mon, 08 Sep 2014 21:31:28 GMT
112
+ - Tue, 09 Sep 2014 21:48:41 GMT
113
113
  Server:
114
114
  - nginx/1.4.7
115
115
  X-Powered-By:
@@ -119,10 +119,10 @@ http_interactions:
119
119
  Connection:
120
120
  - keep-alive
121
121
  body:
122
- encoding: US-ASCII
123
- string: ! '{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005"},{"rel":"schools","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"},{"rel":"teachers","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers"},{"rel":"students","uri":"/v1.1/districts/4fd43cc56d11340000000005/students"},{"rel":"sections","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections"},{"rel":"events","uri":"/v1.1/districts/4fd43cc56d11340000000005/events"}]}'
122
+ encoding: UTF-8
123
+ string: '{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005"},{"rel":"schools","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"},{"rel":"teachers","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers"},{"rel":"students","uri":"/v1.1/districts/4fd43cc56d11340000000005/students"},{"rel":"sections","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections"},{"rel":"events","uri":"/v1.1/districts/4fd43cc56d11340000000005/events"}]}'
124
124
  http_version:
125
- recorded_at: Mon, 08 Sep 2014 21:31:27 GMT
125
+ recorded_at: Tue, 09 Sep 2014 21:48:41 GMT
126
126
  - request:
127
127
  method: get
128
128
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/students?limit=2
@@ -131,7 +131,7 @@ http_interactions:
131
131
  string: ''
132
132
  headers:
133
133
  Accept:
134
- - ! '*/*; q=0.5, application/xml'
134
+ - "*/*; q=0.5, application/xml"
135
135
  Accept-Encoding:
136
136
  - gzip, deflate
137
137
  User-Agent:
@@ -146,13 +146,13 @@ http_interactions:
146
146
  Access-Control-Allow-Methods:
147
147
  - GET,PATCH,POST,DELETE
148
148
  Access-Control-Allow-Origin:
149
- - ! '*'
149
+ - "*"
150
150
  Content-Type:
151
151
  - application/json; charset=utf-8
152
152
  Date:
153
- - Mon, 08 Sep 2014 21:31:28 GMT
153
+ - Tue, 09 Sep 2014 21:48:41 GMT
154
154
  Etag:
155
- - ! '"390894019"'
155
+ - '"390894019"'
156
156
  Server:
157
157
  - nginx/1.4.7
158
158
  X-Powered-By:
@@ -162,9 +162,9 @@ http_interactions:
162
162
  Connection:
163
163
  - keep-alive
164
164
  body:
165
- encoding: US-ASCII
166
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:12.346Z","credentials":{"district_username":"stevez33","district_password":"auyik3tiTieL"},"district":"4fd43cc56d11340000000005","dob":"2/11/2007","ell_status":"N","email":"z.steve@example.net","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.656Z","location":{"zip":"10459"},"name":{"first":"Steve","middle":"G","last":"Ziemann"},"race":"Black
165
+ encoding: UTF-8
166
+ string: '{"data":[{"data":{"created":"2014-02-26T21:15:12.346Z","credentials":{"district_username":"stevez33","district_password":"auyik3tiTieL"},"district":"4fd43cc56d11340000000005","dob":"2/11/2007","ell_status":"N","email":"z.steve@example.net","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.656Z","location":{"zip":"10459"},"name":{"first":"Steve","middle":"G","last":"Ziemann"},"race":"Black
167
167
  or African American","school":"530e595026403103360ff9fe","sis_id":"100095233","state_id":"231786324","student_number":"100095233","id":"530e5960049e75a9262cff1d"},"uri":"/v1.1/students/530e5960049e75a9262cff1d"},{"data":{"created":"2014-02-26T21:15:12.358Z","credentials":{"district_username":"douglasw58","district_password":"ahFii2nae"},"district":"4fd43cc56d11340000000005","dob":"6/18/1998","ell_status":"Y","email":"w_douglas@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.661Z","location":{"zip":"11004"},"name":{"first":"Douglas","middle":"S","last":"Wisoky"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"101565758","state_id":"498006597","student_number":"101565758","id":"530e5960049e75a9262cff1e"},"uri":"/v1.1/students/530e5960049e75a9262cff1e"}],"paging":{"current":1,"total":502,"count":1004},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=2"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/students?limit=2&starting_after=530e5960049e75a9262cff1e"}]}'
168
168
  http_version:
169
- recorded_at: Mon, 08 Sep 2014 21:31:28 GMT
169
+ recorded_at: Tue, 09 Sep 2014 21:48:41 GMT
170
170
  recorded_with: VCR 2.4.0
@@ -8,7 +8,7 @@ http_interactions:
8
8
  string: ''
9
9
  headers:
10
10
  Accept:
11
- - ! '*/*; q=0.5, application/xml'
11
+ - "*/*; q=0.5, application/xml"
12
12
  Accept-Encoding:
13
13
  - gzip, deflate
14
14
  User-Agent:
@@ -23,11 +23,11 @@ http_interactions:
23
23
  Access-Control-Allow-Methods:
24
24
  - GET,PATCH,POST,DELETE
25
25
  Access-Control-Allow-Origin:
26
- - ! '*'
26
+ - "*"
27
27
  Content-Type:
28
28
  - application/json; charset=utf-8
29
29
  Date:
30
- - Mon, 08 Sep 2014 21:31:22 GMT
30
+ - Tue, 09 Sep 2014 21:48:36 GMT
31
31
  Server:
32
32
  - nginx/1.4.7
33
33
  X-Powered-By:
@@ -37,10 +37,10 @@ http_interactions:
37
37
  Connection:
38
38
  - keep-alive
39
39
  body:
40
- encoding: US-ASCII
41
- string: ! '{"data":[{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"uri":"/v1.1/districts/4fd43cc56d11340000000005"}],"paging":{"current":1,"total":1,"count":1},"links":[{"rel":"self","uri":"/v1.1/districts"}]}'
40
+ encoding: UTF-8
41
+ string: '{"data":[{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"uri":"/v1.1/districts/4fd43cc56d11340000000005"}],"paging":{"current":1,"total":1,"count":1},"links":[{"rel":"self","uri":"/v1.1/districts"}]}'
42
42
  http_version:
43
- recorded_at: Mon, 08 Sep 2014 21:31:22 GMT
43
+ recorded_at: Tue, 09 Sep 2014 21:48:36 GMT
44
44
  - request:
45
45
  method: get
46
46
  uri: https://DEMO_KEY:@api.clever.com/v1.1/districts/4fd43cc56d11340000000005
@@ -49,7 +49,7 @@ http_interactions:
49
49
  string: ''
50
50
  headers:
51
51
  Accept:
52
- - ! '*/*; q=0.5, application/xml'
52
+ - "*/*; q=0.5, application/xml"
53
53
  Accept-Encoding:
54
54
  - gzip, deflate
55
55
  User-Agent:
@@ -64,11 +64,11 @@ http_interactions:
64
64
  Access-Control-Allow-Methods:
65
65
  - GET,PATCH,POST,DELETE
66
66
  Access-Control-Allow-Origin:
67
- - ! '*'
67
+ - "*"
68
68
  Content-Type:
69
69
  - application/json; charset=utf-8
70
70
  Date:
71
- - Mon, 08 Sep 2014 21:31:22 GMT
71
+ - Tue, 09 Sep 2014 21:48:36 GMT
72
72
  Server:
73
73
  - nginx/1.4.7
74
74
  X-Powered-By:
@@ -78,10 +78,10 @@ http_interactions:
78
78
  Connection:
79
79
  - keep-alive
80
80
  body:
81
- encoding: US-ASCII
82
- string: ! '{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005"},{"rel":"schools","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"},{"rel":"teachers","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers"},{"rel":"students","uri":"/v1.1/districts/4fd43cc56d11340000000005/students"},{"rel":"sections","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections"},{"rel":"events","uri":"/v1.1/districts/4fd43cc56d11340000000005/events"}]}'
81
+ encoding: UTF-8
82
+ string: '{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005"},{"rel":"schools","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"},{"rel":"teachers","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers"},{"rel":"students","uri":"/v1.1/districts/4fd43cc56d11340000000005/students"},{"rel":"sections","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections"},{"rel":"events","uri":"/v1.1/districts/4fd43cc56d11340000000005/events"}]}'
83
83
  http_version:
84
- recorded_at: Mon, 08 Sep 2014 21:31:22 GMT
84
+ recorded_at: Tue, 09 Sep 2014 21:48:36 GMT
85
85
  - request:
86
86
  method: get
87
87
  uri: https://DEMO_KEY:@api.clever.com/v1.1/districts/4fd43cc56d11340000000005
@@ -90,7 +90,7 @@ http_interactions:
90
90
  string: ''
91
91
  headers:
92
92
  Accept:
93
- - ! '*/*; q=0.5, application/xml'
93
+ - "*/*; q=0.5, application/xml"
94
94
  Accept-Encoding:
95
95
  - gzip, deflate
96
96
  User-Agent:
@@ -105,11 +105,11 @@ http_interactions:
105
105
  Access-Control-Allow-Methods:
106
106
  - GET,PATCH,POST,DELETE
107
107
  Access-Control-Allow-Origin:
108
- - ! '*'
108
+ - "*"
109
109
  Content-Type:
110
110
  - application/json; charset=utf-8
111
111
  Date:
112
- - Mon, 08 Sep 2014 21:31:23 GMT
112
+ - Tue, 09 Sep 2014 21:48:36 GMT
113
113
  Server:
114
114
  - nginx/1.4.7
115
115
  X-Powered-By:
@@ -119,10 +119,10 @@ http_interactions:
119
119
  Connection:
120
120
  - keep-alive
121
121
  body:
122
- encoding: US-ASCII
123
- string: ! '{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005"},{"rel":"schools","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"},{"rel":"teachers","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers"},{"rel":"students","uri":"/v1.1/districts/4fd43cc56d11340000000005/students"},{"rel":"sections","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections"},{"rel":"events","uri":"/v1.1/districts/4fd43cc56d11340000000005/events"}]}'
122
+ encoding: UTF-8
123
+ string: '{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005"},{"rel":"schools","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"},{"rel":"teachers","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers"},{"rel":"students","uri":"/v1.1/districts/4fd43cc56d11340000000005/students"},{"rel":"sections","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections"},{"rel":"events","uri":"/v1.1/districts/4fd43cc56d11340000000005/events"}]}'
124
124
  http_version:
125
- recorded_at: Mon, 08 Sep 2014 21:31:23 GMT
125
+ recorded_at: Tue, 09 Sep 2014 21:48:36 GMT
126
126
  - request:
127
127
  method: get
128
128
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/teachers?limit=100000
@@ -131,7 +131,7 @@ http_interactions:
131
131
  string: ''
132
132
  headers:
133
133
  Accept:
134
- - ! '*/*; q=0.5, application/xml'
134
+ - "*/*; q=0.5, application/xml"
135
135
  Accept-Encoding:
136
136
  - gzip, deflate
137
137
  User-Agent:
@@ -146,13 +146,13 @@ http_interactions:
146
146
  Access-Control-Allow-Methods:
147
147
  - GET,PATCH,POST,DELETE
148
148
  Access-Control-Allow-Origin:
149
- - ! '*'
149
+ - "*"
150
150
  Content-Type:
151
151
  - application/json; charset=utf-8
152
152
  Date:
153
- - Mon, 08 Sep 2014 21:31:23 GMT
153
+ - Tue, 09 Sep 2014 21:48:36 GMT
154
154
  Etag:
155
- - ! '"-1604003112"'
155
+ - '"-1604003112"'
156
156
  Server:
157
157
  - nginx/1.4.7
158
158
  X-Powered-By:
@@ -162,8 +162,8 @@ http_interactions:
162
162
  Connection:
163
163
  - keep-alive
164
164
  body:
165
- encoding: US-ASCII
166
- string: ! '{"data":[{"data":{"created":"2012-11-11T15:00:14.036Z","credentials":{"district_password":"Acoev0oow4","district_username":"spinka_leo"},"district":"4fd43cc56d11340000000005","email":"spinka.leo@example.net","last_modified":"2014-02-26T21:15:01.038Z","name":{"first":"Leo","last":"Spinka","middle":"R"},"school":"530e595026403103360ff9fe","sis_id":"11","teacher_number":"539224","title":"Grade
165
+ encoding: UTF-8
166
+ string: '{"data":[{"data":{"created":"2012-11-11T15:00:14.036Z","credentials":{"district_password":"Acoev0oow4","district_username":"spinka_leo"},"district":"4fd43cc56d11340000000005","email":"spinka.leo@example.net","last_modified":"2014-02-26T21:15:01.038Z","name":{"first":"Leo","last":"Spinka","middle":"R"},"school":"530e595026403103360ff9fe","sis_id":"11","teacher_number":"539224","title":"Grade
167
167
  3 Common Branch Teacher","id":"509fbd7ec474fab64a8e9d53"},"uri":"/v1.1/teachers/509fbd7ec474fab64a8e9d53"},{"data":{"created":"2012-11-27T15:04:48.474Z","credentials":{"district_password":"OMeitoo3v","district_username":"reuben.conn"},"district":"4fd43cc56d11340000000005","email":"conn_reuben@example.net","last_modified":"2014-02-26T21:15:01.234Z","name":{"first":"Reuben","last":"Conn","middle":"K"},"school":"530e595026403103360ff9ff","sis_id":"33","teacher_number":"215041","title":"Grade
168
168
  8 Mathematics Teacher","id":"50b4d690ad221ab95f1c6c39"},"uri":"/v1.1/teachers/50b4d690ad221ab95f1c6c39"},{"data":{"created":"2012-12-01T15:02:36.961Z","credentials":{"district_password":"ru3o8rusbf","district_username":"steven.ogden"},"district":"4fd43cc56d11340000000005","email":"ogden_steven@example.net","last_modified":"2014-02-26T21:15:01.485Z","name":{"first":"Steven","last":"Ogden","middle":"Q"},"school":"530e595026403103360ff9fd","sis_id":"81","teacher_number":"474958","title":"High
169
169
  School Science Teacher","id":"50ba1c0c4eda5d94372227eb"},"uri":"/v1.1/teachers/50ba1c0c4eda5d94372227eb"},{"data":{"created":"2012-12-05T15:00:02.670Z","credentials":{"district_password":"Coo0ooyahgh","district_username":"hauck.haylie"},"district":"4fd43cc56d11340000000005","email":"hauck.haylie@example.com","last_modified":"2014-02-26T21:15:01.358Z","name":{"first":"Haylie","last":"Hauck","middle":"J"},"school":"530e595026403103360ff9fd","sis_id":"48","teacher_number":"830340","title":"Grade
@@ -254,7 +254,7 @@ http_interactions:
254
254
  Coach","id":"530e5955d50c310f36112c18"},"uri":"/v1.1/teachers/530e5955d50c310f36112c18"},{"data":{"created":"2014-02-26T21:15:01.572Z","credentials":{"district_username":"m_paucek","district_password":"jhga8salgh"},"district":"4fd43cc56d11340000000005","email":"paucek_m@example.org","last_modified":"2014-02-26T21:15:01.574Z","name":{"first":"Meaghan","middle":"P","last":"Paucek"},"school":"530e595026403103360ff9fd","sis_id":"93","teacher_number":"843713","title":"High
255
255
  School Drama Teacher","id":"530e5955d50c310f36112c19"},"uri":"/v1.1/teachers/530e5955d50c310f36112c19"}],"paging":{"current":1,"total":1,"count":89},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=100000"}]}'
256
256
  http_version:
257
- recorded_at: Mon, 08 Sep 2014 21:31:23 GMT
257
+ recorded_at: Tue, 09 Sep 2014 21:48:36 GMT
258
258
  - request:
259
259
  method: get
260
260
  uri: https://DEMO_KEY:@api.clever.com/v1.1/districts/4fd43cc56d11340000000005
@@ -263,7 +263,7 @@ http_interactions:
263
263
  string: ''
264
264
  headers:
265
265
  Accept:
266
- - ! '*/*; q=0.5, application/xml'
266
+ - "*/*; q=0.5, application/xml"
267
267
  Accept-Encoding:
268
268
  - gzip, deflate
269
269
  User-Agent:
@@ -278,11 +278,11 @@ http_interactions:
278
278
  Access-Control-Allow-Methods:
279
279
  - GET,PATCH,POST,DELETE
280
280
  Access-Control-Allow-Origin:
281
- - ! '*'
281
+ - "*"
282
282
  Content-Type:
283
283
  - application/json; charset=utf-8
284
284
  Date:
285
- - Mon, 08 Sep 2014 21:31:23 GMT
285
+ - Tue, 09 Sep 2014 21:48:36 GMT
286
286
  Server:
287
287
  - nginx/1.4.7
288
288
  X-Powered-By:
@@ -292,10 +292,10 @@ http_interactions:
292
292
  Connection:
293
293
  - keep-alive
294
294
  body:
295
- encoding: US-ASCII
296
- 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"}]}'
295
+ encoding: UTF-8
296
+ 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"}]}'
297
297
  http_version:
298
- recorded_at: Mon, 08 Sep 2014 21:31:23 GMT
298
+ recorded_at: Tue, 09 Sep 2014 21:48:36 GMT
299
299
  - request:
300
300
  method: get
301
301
  uri: https://DEMO_KEY:@api.clever.com/v1.1/districts/4fd43cc56d11340000000005
@@ -304,7 +304,7 @@ http_interactions:
304
304
  string: ''
305
305
  headers:
306
306
  Accept:
307
- - ! '*/*; q=0.5, application/xml'
307
+ - "*/*; q=0.5, application/xml"
308
308
  Accept-Encoding:
309
309
  - gzip, deflate
310
310
  User-Agent:
@@ -319,11 +319,11 @@ http_interactions:
319
319
  Access-Control-Allow-Methods:
320
320
  - GET,PATCH,POST,DELETE
321
321
  Access-Control-Allow-Origin:
322
- - ! '*'
322
+ - "*"
323
323
  Content-Type:
324
324
  - application/json; charset=utf-8
325
325
  Date:
326
- - Mon, 08 Sep 2014 21:31:23 GMT
326
+ - Tue, 09 Sep 2014 21:48:36 GMT
327
327
  Server:
328
328
  - nginx/1.4.7
329
329
  X-Powered-By:
@@ -333,10 +333,10 @@ http_interactions:
333
333
  Connection:
334
334
  - keep-alive
335
335
  body:
336
- encoding: US-ASCII
337
- 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"}]}'
336
+ encoding: UTF-8
337
+ 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"}]}'
338
338
  http_version:
339
- recorded_at: Mon, 08 Sep 2014 21:31:23 GMT
339
+ recorded_at: Tue, 09 Sep 2014 21:48:36 GMT
340
340
  - request:
341
341
  method: get
342
342
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10
@@ -345,7 +345,7 @@ http_interactions:
345
345
  string: ''
346
346
  headers:
347
347
  Accept:
348
- - ! '*/*; q=0.5, application/xml'
348
+ - "*/*; q=0.5, application/xml"
349
349
  Accept-Encoding:
350
350
  - gzip, deflate
351
351
  User-Agent:
@@ -360,13 +360,13 @@ http_interactions:
360
360
  Access-Control-Allow-Methods:
361
361
  - GET,PATCH,POST,DELETE
362
362
  Access-Control-Allow-Origin:
363
- - ! '*'
363
+ - "*"
364
364
  Content-Type:
365
365
  - application/json; charset=utf-8
366
366
  Date:
367
- - Mon, 08 Sep 2014 21:31:23 GMT
367
+ - Tue, 09 Sep 2014 21:48:36 GMT
368
368
  Etag:
369
- - ! '"1331950855"'
369
+ - '"1331950855"'
370
370
  Server:
371
371
  - nginx/1.4.7
372
372
  X-Powered-By:
@@ -376,8 +376,8 @@ http_interactions:
376
376
  Connection:
377
377
  - keep-alive
378
378
  body:
379
- encoding: US-ASCII
380
- string: ! '{"data":[{"data":{"created":"2012-11-11T15:00:14.036Z","credentials":{"district_password":"Acoev0oow4","district_username":"spinka_leo"},"district":"4fd43cc56d11340000000005","email":"spinka.leo@example.net","last_modified":"2014-02-26T21:15:01.038Z","name":{"first":"Leo","last":"Spinka","middle":"R"},"school":"530e595026403103360ff9fe","sis_id":"11","teacher_number":"539224","title":"Grade
379
+ encoding: UTF-8
380
+ string: '{"data":[{"data":{"created":"2012-11-11T15:00:14.036Z","credentials":{"district_password":"Acoev0oow4","district_username":"spinka_leo"},"district":"4fd43cc56d11340000000005","email":"spinka.leo@example.net","last_modified":"2014-02-26T21:15:01.038Z","name":{"first":"Leo","last":"Spinka","middle":"R"},"school":"530e595026403103360ff9fe","sis_id":"11","teacher_number":"539224","title":"Grade
381
381
  3 Common Branch Teacher","id":"509fbd7ec474fab64a8e9d53"},"uri":"/v1.1/teachers/509fbd7ec474fab64a8e9d53"},{"data":{"created":"2012-11-27T15:04:48.474Z","credentials":{"district_password":"OMeitoo3v","district_username":"reuben.conn"},"district":"4fd43cc56d11340000000005","email":"conn_reuben@example.net","last_modified":"2014-02-26T21:15:01.234Z","name":{"first":"Reuben","last":"Conn","middle":"K"},"school":"530e595026403103360ff9ff","sis_id":"33","teacher_number":"215041","title":"Grade
382
382
  8 Mathematics Teacher","id":"50b4d690ad221ab95f1c6c39"},"uri":"/v1.1/teachers/50b4d690ad221ab95f1c6c39"},{"data":{"created":"2012-12-01T15:02:36.961Z","credentials":{"district_password":"ru3o8rusbf","district_username":"steven.ogden"},"district":"4fd43cc56d11340000000005","email":"ogden_steven@example.net","last_modified":"2014-02-26T21:15:01.485Z","name":{"first":"Steven","last":"Ogden","middle":"Q"},"school":"530e595026403103360ff9fd","sis_id":"81","teacher_number":"474958","title":"High
383
383
  School Science Teacher","id":"50ba1c0c4eda5d94372227eb"},"uri":"/v1.1/teachers/50ba1c0c4eda5d94372227eb"},{"data":{"created":"2012-12-05T15:00:02.670Z","credentials":{"district_password":"Coo0ooyahgh","district_username":"hauck.haylie"},"district":"4fd43cc56d11340000000005","email":"hauck.haylie@example.com","last_modified":"2014-02-26T21:15:01.358Z","name":{"first":"Haylie","last":"Hauck","middle":"J"},"school":"530e595026403103360ff9fd","sis_id":"48","teacher_number":"830340","title":"Grade
@@ -389,7 +389,7 @@ http_interactions:
389
389
  2 Special Education Teacher","id":"50c89ff19ed67a1d3f1f50c9"},"uri":"/v1.1/teachers/50c89ff19ed67a1d3f1f50c9"},{"data":{"created":"2012-12-12T15:17:05.366Z","credentials":{"district_password":"meile5Taicei","district_username":"colton.block"},"district":"4fd43cc56d11340000000005","email":"block_colton@example.net","last_modified":"2014-02-26T21:15:01.391Z","name":{"first":"Colton","last":"Block","middle":"L"},"school":"530e595026403103360ff9fd","sis_id":"54","teacher_number":"911173","title":"Grade
390
390
  9 History Teacher","id":"50c89ff19ed67a1d3f1f50ca"},"uri":"/v1.1/teachers/50c89ff19ed67a1d3f1f50ca"}],"paging":{"current":1,"total":9,"count":89},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=50c89ff19ed67a1d3f1f50ca"}]}'
391
391
  http_version:
392
- recorded_at: Mon, 08 Sep 2014 21:31:23 GMT
392
+ recorded_at: Tue, 09 Sep 2014 21:48:36 GMT
393
393
  - request:
394
394
  method: get
395
395
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=50c89ff19ed67a1d3f1f50ca
@@ -398,7 +398,7 @@ http_interactions:
398
398
  string: ''
399
399
  headers:
400
400
  Accept:
401
- - ! '*/*; q=0.5, application/xml'
401
+ - "*/*; q=0.5, application/xml"
402
402
  Accept-Encoding:
403
403
  - gzip, deflate
404
404
  User-Agent:
@@ -413,13 +413,13 @@ http_interactions:
413
413
  Access-Control-Allow-Methods:
414
414
  - GET,PATCH,POST,DELETE
415
415
  Access-Control-Allow-Origin:
416
- - ! '*'
416
+ - "*"
417
417
  Content-Type:
418
418
  - application/json; charset=utf-8
419
419
  Date:
420
- - Mon, 08 Sep 2014 21:31:23 GMT
420
+ - Tue, 09 Sep 2014 21:48:37 GMT
421
421
  Etag:
422
- - ! '"1639195967"'
422
+ - '"1639195967"'
423
423
  Server:
424
424
  - nginx/1.4.7
425
425
  X-Powered-By:
@@ -429,8 +429,8 @@ http_interactions:
429
429
  Connection:
430
430
  - keep-alive
431
431
  body:
432
- encoding: US-ASCII
433
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:01.053Z","credentials":{"district_username":"haley.hahn","district_password":"xooBee4um"},"district":"4fd43cc56d11340000000005","email":"hahn_haley@example.com","last_modified":"2014-02-26T21:15:01.057Z","name":{"first":"Haley","middle":"D","last":"Hahn"},"school":"530e595026403103360ff9fe","sis_id":"1","teacher_number":"341754","title":"Grade
432
+ encoding: UTF-8
433
+ string: '{"data":[{"data":{"created":"2014-02-26T21:15:01.053Z","credentials":{"district_username":"haley.hahn","district_password":"xooBee4um"},"district":"4fd43cc56d11340000000005","email":"hahn_haley@example.com","last_modified":"2014-02-26T21:15:01.057Z","name":{"first":"Haley","middle":"D","last":"Hahn"},"school":"530e595026403103360ff9fe","sis_id":"1","teacher_number":"341754","title":"Grade
434
434
  1 Common Branch Teacher","id":"530e5955d50c310f36112bcb"},"uri":"/v1.1/teachers/530e5955d50c310f36112bcb"},{"data":{"created":"2014-02-26T21:15:01.060Z","credentials":{"district_username":"abernathy.leatha","district_password":"ohF6Gai1ai"},"district":"4fd43cc56d11340000000005","email":"leatha.abernathy@example.org","last_modified":"2014-02-26T21:15:01.065Z","name":{"first":"Leatha","middle":"D","last":"Abernathy"},"school":"530e595026403103360ff9fe","sis_id":"10","teacher_number":"670963","title":"Grade
435
435
  3 Common Branch Teacher","id":"530e5955d50c310f36112bcc"},"uri":"/v1.1/teachers/530e5955d50c310f36112bcc"},{"data":{"created":"2014-02-26T21:15:01.078Z","credentials":{"district_username":"davin_runte","district_password":"Ap3aQuoh"},"district":"4fd43cc56d11340000000005","email":"runte_davin@example.org","last_modified":"2014-02-26T21:15:01.082Z","name":{"first":"Davin","middle":"V","last":"Runte"},"school":"530e595026403103360ff9fe","sis_id":"12","teacher_number":"199518","title":"High
436
436
  School Mathematics Teacher","id":"530e5955d50c310f36112bcd"},"uri":"/v1.1/teachers/530e5955d50c310f36112bcd"},{"data":{"created":"2014-02-26T21:15:01.083Z","credentials":{"district_username":"mertz.jana","district_password":"Fairohb9"},"district":"4fd43cc56d11340000000005","email":"jana_mertz@example.org","last_modified":"2014-02-26T21:15:01.088Z","name":{"first":"Jana","middle":"P","last":"Mertz"},"school":"530e595026403103360ff9fe","sis_id":"13","teacher_number":"211618","title":"Grade
@@ -442,7 +442,7 @@ http_interactions:
442
442
  5 Common Branch Teacher","id":"530e5955d50c310f36112bd3"},"uri":"/v1.1/teachers/530e5955d50c310f36112bd3"},{"data":{"created":"2014-02-26T21:15:01.138Z","credentials":{"district_username":"daniela.raynor","district_password":"quahse5Ch"},"district":"4fd43cc56d11340000000005","email":"raynor_daniela@example.net","last_modified":"2014-02-26T21:15:01.144Z","name":{"first":"Daniela","middle":"F","last":"Raynor"},"school":"530e595026403103360ff9fe","sis_id":"19","teacher_number":"493218","title":"Grade
443
443
  5 Common Branch Teacher","id":"530e5955d50c310f36112bd4"},"uri":"/v1.1/teachers/530e5955d50c310f36112bd4"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=50c89ff19ed67a1d3f1f50ca"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&ending_before=530e5955d50c310f36112bcb"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112bd4"}]}'
444
444
  http_version:
445
- recorded_at: Mon, 08 Sep 2014 21:31:23 GMT
445
+ recorded_at: Tue, 09 Sep 2014 21:48:37 GMT
446
446
  - request:
447
447
  method: get
448
448
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112bd4
@@ -451,7 +451,7 @@ http_interactions:
451
451
  string: ''
452
452
  headers:
453
453
  Accept:
454
- - ! '*/*; q=0.5, application/xml'
454
+ - "*/*; q=0.5, application/xml"
455
455
  Accept-Encoding:
456
456
  - gzip, deflate
457
457
  User-Agent:
@@ -466,13 +466,13 @@ http_interactions:
466
466
  Access-Control-Allow-Methods:
467
467
  - GET,PATCH,POST,DELETE
468
468
  Access-Control-Allow-Origin:
469
- - ! '*'
469
+ - "*"
470
470
  Content-Type:
471
471
  - application/json; charset=utf-8
472
472
  Date:
473
- - Mon, 08 Sep 2014 21:31:24 GMT
473
+ - Tue, 09 Sep 2014 21:48:37 GMT
474
474
  Etag:
475
- - ! '"859940908"'
475
+ - '"859940908"'
476
476
  Server:
477
477
  - nginx/1.4.7
478
478
  X-Powered-By:
@@ -482,8 +482,8 @@ http_interactions:
482
482
  Connection:
483
483
  - keep-alive
484
484
  body:
485
- encoding: US-ASCII
486
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:01.155Z","credentials":{"district_username":"evangeline.harris","district_password":"ieThes1ke"},"district":"4fd43cc56d11340000000005","email":"evangeline_harris@example.net","last_modified":"2014-02-26T21:15:01.158Z","name":{"first":"Evangeline","middle":"R","last":"Harris"},"school":"530e595026403103360ff9fe","sis_id":"2","teacher_number":"796856","title":"Grade
485
+ encoding: UTF-8
486
+ string: '{"data":[{"data":{"created":"2014-02-26T21:15:01.155Z","credentials":{"district_username":"evangeline.harris","district_password":"ieThes1ke"},"district":"4fd43cc56d11340000000005","email":"evangeline_harris@example.net","last_modified":"2014-02-26T21:15:01.158Z","name":{"first":"Evangeline","middle":"R","last":"Harris"},"school":"530e595026403103360ff9fe","sis_id":"2","teacher_number":"796856","title":"Grade
487
487
  1 Common Branch Teacher","id":"530e5955d50c310f36112bd5"},"uri":"/v1.1/teachers/530e5955d50c310f36112bd5"},{"data":{"created":"2014-02-26T21:15:01.162Z","credentials":{"district_username":"kulas.mallie","district_password":"Naith2Roh8i"},"district":"4fd43cc56d11340000000005","email":"mallie_kulas@example.net","last_modified":"2014-02-26T21:15:01.164Z","name":{"first":"Mallie","middle":"S","last":"Kulas"},"school":"530e595026403103360ff9fe","sis_id":"20","teacher_number":"671315","title":"High
488
488
  School Science Teacher","id":"530e5955d50c310f36112bd6"},"uri":"/v1.1/teachers/530e5955d50c310f36112bd6"},{"data":{"created":"2014-02-26T21:15:01.177Z","credentials":{"district_username":"samantha.conn","district_password":"Oke5doog"},"district":"4fd43cc56d11340000000005","email":"conn.samantha@example.com","last_modified":"2014-02-26T21:15:01.182Z","name":{"first":"Samantha","middle":"A","last":"Conn"},"school":"530e595026403103360ff9fe","sis_id":"22","teacher_number":"380369","title":"Grade
489
489
  1 Special Education Teacher","id":"530e5955d50c310f36112bd7"},"uri":"/v1.1/teachers/530e5955d50c310f36112bd7"},{"data":{"created":"2014-02-26T21:15:01.190Z","credentials":{"district_username":"addie_dietrich","district_password":"tha7bo8ahR"},"district":"4fd43cc56d11340000000005","email":"addie_dietrich@example.com","last_modified":"2014-02-26T21:15:01.193Z","name":{"first":"Addie","middle":"S","last":"Dietrich"},"school":"530e595026403103360ff9fe","sis_id":"24","teacher_number":"176809","title":"Grade
@@ -495,7 +495,7 @@ http_interactions:
495
495
  7 English Teacher","id":"530e5955d50c310f36112bdd"},"uri":"/v1.1/teachers/530e5955d50c310f36112bdd"},{"data":{"created":"2014-02-26T21:15:01.237Z","credentials":{"district_username":"rhiannon_prosacco","district_password":"ievo9Eeg"},"district":"4fd43cc56d11340000000005","email":"rhiannon_prosacco@example.org","last_modified":"2014-02-26T21:15:01.240Z","name":{"first":"Rhiannon","middle":"K","last":"Prosacco"},"school":"530e595026403103360ff9fe","sis_id":"3","teacher_number":"435202","title":"Grade
496
496
  1 Common Branch Teacher","id":"530e5955d50c310f36112bde"},"uri":"/v1.1/teachers/530e5955d50c310f36112bde"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112bd4"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&ending_before=530e5955d50c310f36112bd5"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112bde"}]}'
497
497
  http_version:
498
- recorded_at: Mon, 08 Sep 2014 21:31:23 GMT
498
+ recorded_at: Tue, 09 Sep 2014 21:48:37 GMT
499
499
  - request:
500
500
  method: get
501
501
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112bde
@@ -504,7 +504,7 @@ http_interactions:
504
504
  string: ''
505
505
  headers:
506
506
  Accept:
507
- - ! '*/*; q=0.5, application/xml'
507
+ - "*/*; q=0.5, application/xml"
508
508
  Accept-Encoding:
509
509
  - gzip, deflate
510
510
  User-Agent:
@@ -519,13 +519,13 @@ http_interactions:
519
519
  Access-Control-Allow-Methods:
520
520
  - GET,PATCH,POST,DELETE
521
521
  Access-Control-Allow-Origin:
522
- - ! '*'
522
+ - "*"
523
523
  Content-Type:
524
524
  - application/json; charset=utf-8
525
525
  Date:
526
- - Mon, 08 Sep 2014 21:31:24 GMT
526
+ - Tue, 09 Sep 2014 21:48:37 GMT
527
527
  Etag:
528
- - ! '"887390389"'
528
+ - '"887390389"'
529
529
  Server:
530
530
  - nginx/1.4.7
531
531
  X-Powered-By:
@@ -535,8 +535,8 @@ http_interactions:
535
535
  Connection:
536
536
  - keep-alive
537
537
  body:
538
- encoding: US-ASCII
539
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:01.242Z","credentials":{"district_username":"schneider_june","district_password":"UC3zahv1z"},"district":"4fd43cc56d11340000000005","email":"june.schneider@example.com","last_modified":"2014-02-26T21:15:01.245Z","name":{"first":"June","middle":"O","last":"Schneider"},"school":"530e595026403103360ff9ff","sis_id":"30","teacher_number":"423681","title":"Grade
538
+ encoding: UTF-8
539
+ string: '{"data":[{"data":{"created":"2014-02-26T21:15:01.242Z","credentials":{"district_username":"schneider_june","district_password":"UC3zahv1z"},"district":"4fd43cc56d11340000000005","email":"june.schneider@example.com","last_modified":"2014-02-26T21:15:01.245Z","name":{"first":"June","middle":"O","last":"Schneider"},"school":"530e595026403103360ff9ff","sis_id":"30","teacher_number":"423681","title":"Grade
540
540
  8 English Teacher","id":"530e5955d50c310f36112bdf"},"uri":"/v1.1/teachers/530e5955d50c310f36112bdf"},{"data":{"created":"2014-02-26T21:15:01.249Z","credentials":{"district_username":"goldner_brice","district_password":"ji5Koos5xeo"},"district":"4fd43cc56d11340000000005","email":"brice.goldner@example.com","last_modified":"2014-02-26T21:15:01.251Z","name":{"first":"Brice","middle":"M","last":"Goldner"},"school":"530e595026403103360ff9ff","sis_id":"31","teacher_number":"626129","title":"Grade
541
541
  6 Mathematics Teacher","id":"530e5955d50c310f36112be0"},"uri":"/v1.1/teachers/530e5955d50c310f36112be0"},{"data":{"created":"2014-02-26T21:15:01.267Z","credentials":{"district_username":"connelly.sierra","district_password":"cahGh1geeJ"},"district":"4fd43cc56d11340000000005","email":"connelly.sierra@example.net","last_modified":"2014-02-26T21:15:01.269Z","name":{"first":"Sierra","middle":"V","last":"Connelly"},"school":"530e595026403103360ff9ff","sis_id":"32","teacher_number":"395642","title":"Grade
542
542
  7 Mathematics Teacher","id":"530e5955d50c310f36112be1"},"uri":"/v1.1/teachers/530e5955d50c310f36112be1"},{"data":{"created":"2014-02-26T21:15:01.279Z","credentials":{"district_username":"mohr.philip","district_password":"Rohjeeque6ae"},"district":"4fd43cc56d11340000000005","email":"mohr.philip@example.net","last_modified":"2014-02-26T21:15:01.283Z","name":{"first":"Philip","middle":"K","last":"Mohr"},"school":"530e595026403103360ff9ff","sis_id":"34","teacher_number":"852070","title":"Grade
@@ -548,7 +548,7 @@ http_interactions:
548
548
  School English Teacher","id":"530e5955d50c310f36112be7"},"uri":"/v1.1/teachers/530e5955d50c310f36112be7"},{"data":{"created":"2014-02-26T21:15:01.331Z","credentials":{"district_username":"ankunding.cydney","district_password":"moorei2Ie"},"district":"4fd43cc56d11340000000005","email":"ankunding_cydney@example.com","last_modified":"2014-02-26T21:15:01.334Z","name":{"first":"Cydney","middle":"H","last":"Ankunding"},"school":"530e595026403103360ff9ff","sis_id":"40","teacher_number":"873862","title":"Middle
549
549
  School Science Teacher","id":"530e5955d50c310f36112be8"},"uri":"/v1.1/teachers/530e5955d50c310f36112be8"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112bde"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&ending_before=530e5955d50c310f36112bdf"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112be8"}]}'
550
550
  http_version:
551
- recorded_at: Mon, 08 Sep 2014 21:31:24 GMT
551
+ recorded_at: Tue, 09 Sep 2014 21:48:37 GMT
552
552
  - request:
553
553
  method: get
554
554
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112be8
@@ -557,7 +557,7 @@ http_interactions:
557
557
  string: ''
558
558
  headers:
559
559
  Accept:
560
- - ! '*/*; q=0.5, application/xml'
560
+ - "*/*; q=0.5, application/xml"
561
561
  Accept-Encoding:
562
562
  - gzip, deflate
563
563
  User-Agent:
@@ -572,13 +572,13 @@ http_interactions:
572
572
  Access-Control-Allow-Methods:
573
573
  - GET,PATCH,POST,DELETE
574
574
  Access-Control-Allow-Origin:
575
- - ! '*'
575
+ - "*"
576
576
  Content-Type:
577
577
  - application/json; charset=utf-8
578
578
  Date:
579
- - Mon, 08 Sep 2014 21:31:24 GMT
579
+ - Tue, 09 Sep 2014 21:48:37 GMT
580
580
  Etag:
581
- - ! '"-309201969"'
581
+ - '"-309201969"'
582
582
  Server:
583
583
  - nginx/1.4.7
584
584
  X-Powered-By:
@@ -588,8 +588,8 @@ http_interactions:
588
588
  Connection:
589
589
  - keep-alive
590
590
  body:
591
- encoding: US-ASCII
592
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:01.335Z","credentials":{"district_username":"gleichner_cora","district_password":"bah1Heuheeca"},"district":"4fd43cc56d11340000000005","email":"cora.gleichner@example.org","last_modified":"2014-02-26T21:15:01.337Z","name":{"first":"Cora","middle":"M","last":"Gleichner"},"school":"530e595026403103360ff9ff","sis_id":"41","teacher_number":"700424","title":"Middle
591
+ encoding: UTF-8
592
+ string: '{"data":[{"data":{"created":"2014-02-26T21:15:01.335Z","credentials":{"district_username":"gleichner_cora","district_password":"bah1Heuheeca"},"district":"4fd43cc56d11340000000005","email":"cora.gleichner@example.org","last_modified":"2014-02-26T21:15:01.337Z","name":{"first":"Cora","middle":"M","last":"Gleichner"},"school":"530e595026403103360ff9ff","sis_id":"41","teacher_number":"700424","title":"Middle
593
593
  School Science Teacher","id":"530e5955d50c310f36112be9"},"uri":"/v1.1/teachers/530e5955d50c310f36112be9"},{"data":{"created":"2014-02-26T21:15:01.343Z","credentials":{"district_username":"jonatan_doyle","district_password":"aeXaeBos8ie"},"district":"4fd43cc56d11340000000005","email":"jonatan_doyle@example.com","last_modified":"2014-02-26T21:15:01.345Z","name":{"first":"Jonatan","middle":"B","last":"Doyle"},"school":"530e595026403103360ff9ff","sis_id":"42","teacher_number":"973474","title":"Middle
594
594
  School Spanish Teacher","id":"530e5955d50c310f36112bea"},"uri":"/v1.1/teachers/530e5955d50c310f36112bea"},{"data":{"created":"2014-02-26T21:15:01.362Z","credentials":{"district_username":"murray.jewel","district_password":"eilia2Eiceem"},"district":"4fd43cc56d11340000000005","email":"jewel.murray@example.net","last_modified":"2014-02-26T21:15:01.367Z","name":{"first":"Jewel","middle":"J","last":"Murray"},"school":"530e595026403103360ff9ff","sis_id":"43","teacher_number":"296077","title":"Middle
595
595
  School Spanish Teacher","id":"530e5955d50c310f36112beb"},"uri":"/v1.1/teachers/530e5955d50c310f36112beb"},{"data":{"created":"2014-02-26T21:15:01.368Z","credentials":{"district_username":"ortiz_anya","district_password":"Vaeye8quo0z"},"district":"4fd43cc56d11340000000005","email":"ortiz_anya@example.com","last_modified":"2014-02-26T21:15:01.371Z","name":{"first":"Anya","middle":"L","last":"Ortiz"},"school":"530e595026403103360ff9ff","sis_id":"44","teacher_number":"121129","title":"Middle
@@ -601,7 +601,7 @@ http_interactions:
601
601
  2 Common Branch Teacher","id":"530e5955d50c310f36112bf1"},"uri":"/v1.1/teachers/530e5955d50c310f36112bf1"},{"data":{"created":"2014-02-26T21:15:01.401Z","credentials":{"district_username":"preston.lemke","district_password":"caiteiL1ah"},"district":"4fd43cc56d11340000000005","email":"preston.lemke@example.net","last_modified":"2014-02-26T21:15:01.404Z","name":{"first":"Preston","middle":"J","last":"Lemke"},"school":"530e595026403103360ff9fd","sis_id":"51","teacher_number":"171060","title":"Grade
602
602
  12 History Teacher","id":"530e5955d50c310f36112bf2"},"uri":"/v1.1/teachers/530e5955d50c310f36112bf2"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112be8"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&ending_before=530e5955d50c310f36112be9"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112bf2"}]}'
603
603
  http_version:
604
- recorded_at: Mon, 08 Sep 2014 21:31:24 GMT
604
+ recorded_at: Tue, 09 Sep 2014 21:48:37 GMT
605
605
  - request:
606
606
  method: get
607
607
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112bf2
@@ -610,7 +610,7 @@ http_interactions:
610
610
  string: ''
611
611
  headers:
612
612
  Accept:
613
- - ! '*/*; q=0.5, application/xml'
613
+ - "*/*; q=0.5, application/xml"
614
614
  Accept-Encoding:
615
615
  - gzip, deflate
616
616
  User-Agent:
@@ -625,13 +625,13 @@ http_interactions:
625
625
  Access-Control-Allow-Methods:
626
626
  - GET,PATCH,POST,DELETE
627
627
  Access-Control-Allow-Origin:
628
- - ! '*'
628
+ - "*"
629
629
  Content-Type:
630
630
  - application/json; charset=utf-8
631
631
  Date:
632
- - Mon, 08 Sep 2014 21:31:24 GMT
632
+ - Tue, 09 Sep 2014 21:48:37 GMT
633
633
  Etag:
634
- - ! '"-1806235015"'
634
+ - '"-1806235015"'
635
635
  Server:
636
636
  - nginx/1.4.7
637
637
  X-Powered-By:
@@ -641,8 +641,8 @@ http_interactions:
641
641
  Connection:
642
642
  - keep-alive
643
643
  body:
644
- encoding: US-ASCII
645
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:01.405Z","credentials":{"district_username":"witting.kelsie","district_password":"aeNee6aiW"},"district":"4fd43cc56d11340000000005","email":"witting_kelsie@example.net","last_modified":"2014-02-26T21:15:01.407Z","name":{"first":"Kelsie","middle":"O","last":"Witting"},"school":"530e595026403103360ff9fd","sis_id":"52","teacher_number":"822376","title":"Grade
644
+ encoding: UTF-8
645
+ string: '{"data":[{"data":{"created":"2014-02-26T21:15:01.405Z","credentials":{"district_username":"witting.kelsie","district_password":"aeNee6aiW"},"district":"4fd43cc56d11340000000005","email":"witting_kelsie@example.net","last_modified":"2014-02-26T21:15:01.407Z","name":{"first":"Kelsie","middle":"O","last":"Witting"},"school":"530e595026403103360ff9fd","sis_id":"52","teacher_number":"822376","title":"Grade
646
646
  11 History Teacher","id":"530e5955d50c310f36112bf3"},"uri":"/v1.1/teachers/530e5955d50c310f36112bf3"},{"data":{"created":"2014-02-26T21:15:01.410Z","credentials":{"district_username":"emard_rickie","district_password":"Tah6hiRaeph"},"district":"4fd43cc56d11340000000005","email":"emard_rickie@example.com","last_modified":"2014-02-26T21:15:01.412Z","name":{"first":"Rickie","middle":"C","last":"Emard"},"school":"530e595026403103360ff9fd","sis_id":"53","teacher_number":"625918","title":"Grade
647
647
  10 History Teacher","id":"530e5955d50c310f36112bf4"},"uri":"/v1.1/teachers/530e5955d50c310f36112bf4"},{"data":{"created":"2014-02-26T21:15:01.416Z","credentials":{"district_username":"mertz.junius","district_password":"Oiph4Chias"},"district":"4fd43cc56d11340000000005","email":"mertz_junius@example.net","last_modified":"2014-02-26T21:15:01.418Z","name":{"first":"Junius","middle":"T","last":"Mertz"},"school":"530e595026403103360ff9fd","sis_id":"55","teacher_number":"969210","title":"Grade
648
648
  9 Physics Teacher","id":"530e5955d50c310f36112bf5"},"uri":"/v1.1/teachers/530e5955d50c310f36112bf5"},{"data":{"created":"2014-02-26T21:15:01.420Z","credentials":{"district_username":"crooks.garland","district_password":"Quahph3ch"},"district":"4fd43cc56d11340000000005","email":"garland.crooks@example.org","last_modified":"2014-02-26T21:15:01.422Z","name":{"first":"Garland","middle":"E","last":"Crooks"},"school":"530e595026403103360ff9fd","sis_id":"56","teacher_number":"178155","title":"Grade
@@ -654,7 +654,7 @@ http_interactions:
654
654
  9 Algebra Teacher","id":"530e5955d50c310f36112bfb"},"uri":"/v1.1/teachers/530e5955d50c310f36112bfb"},{"data":{"created":"2014-02-26T21:15:01.443Z","credentials":{"district_username":"cullen_bashirian","district_password":"cheikoh1Ies"},"district":"4fd43cc56d11340000000005","email":"bashirian.cullen@example.net","last_modified":"2014-02-26T21:15:01.445Z","name":{"first":"Cullen","middle":"J","last":"Bashirian"},"school":"530e595026403103360ff9fd","sis_id":"61","teacher_number":"311251","title":"Grade
655
655
  10 Geometry Teacher","id":"530e5955d50c310f36112bfc"},"uri":"/v1.1/teachers/530e5955d50c310f36112bfc"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112bf2"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&ending_before=530e5955d50c310f36112bf3"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112bfc"}]}'
656
656
  http_version:
657
- recorded_at: Mon, 08 Sep 2014 21:31:24 GMT
657
+ recorded_at: Tue, 09 Sep 2014 21:48:37 GMT
658
658
  - request:
659
659
  method: get
660
660
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112bfc
@@ -663,7 +663,7 @@ http_interactions:
663
663
  string: ''
664
664
  headers:
665
665
  Accept:
666
- - ! '*/*; q=0.5, application/xml'
666
+ - "*/*; q=0.5, application/xml"
667
667
  Accept-Encoding:
668
668
  - gzip, deflate
669
669
  User-Agent:
@@ -678,13 +678,13 @@ http_interactions:
678
678
  Access-Control-Allow-Methods:
679
679
  - GET,PATCH,POST,DELETE
680
680
  Access-Control-Allow-Origin:
681
- - ! '*'
681
+ - "*"
682
682
  Content-Type:
683
683
  - application/json; charset=utf-8
684
684
  Date:
685
- - Mon, 08 Sep 2014 21:31:24 GMT
685
+ - Tue, 09 Sep 2014 21:48:37 GMT
686
686
  Etag:
687
- - ! '"2002280190"'
687
+ - '"2002280190"'
688
688
  Server:
689
689
  - nginx/1.4.7
690
690
  X-Powered-By:
@@ -694,8 +694,8 @@ http_interactions:
694
694
  Connection:
695
695
  - keep-alive
696
696
  body:
697
- encoding: US-ASCII
698
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:01.449Z","credentials":{"district_username":"will_roger","district_password":"ooT8aeke"},"district":"4fd43cc56d11340000000005","email":"will_roger@example.net","last_modified":"2014-02-26T21:15:01.454Z","name":{"first":"Roger","middle":"J","last":"Will"},"school":"530e595026403103360ff9fd","sis_id":"63","teacher_number":"138841","title":"Grade
697
+ encoding: UTF-8
698
+ string: '{"data":[{"data":{"created":"2014-02-26T21:15:01.449Z","credentials":{"district_username":"will_roger","district_password":"ooT8aeke"},"district":"4fd43cc56d11340000000005","email":"will_roger@example.net","last_modified":"2014-02-26T21:15:01.454Z","name":{"first":"Roger","middle":"J","last":"Will"},"school":"530e595026403103360ff9fd","sis_id":"63","teacher_number":"138841","title":"Grade
699
699
  12 Calculus Teacher","id":"530e5955d50c310f36112bfd"},"uri":"/v1.1/teachers/530e5955d50c310f36112bfd"},{"data":{"created":"2014-02-26T21:15:01.455Z","credentials":{"district_username":"rice.dannie","district_password":"thuY4IeMooph"},"district":"4fd43cc56d11340000000005","email":"rice.dannie@example.com","last_modified":"2014-02-26T21:15:01.457Z","name":{"first":"Dannie","middle":"L","last":"Rice"},"school":"530e595026403103360ff9fd","sis_id":"64","teacher_number":"984216","title":"Grade
700
700
  9 Physical Education Teacher","id":"530e5955d50c310f36112bfe"},"uri":"/v1.1/teachers/530e5955d50c310f36112bfe"},{"data":{"created":"2014-02-26T21:15:01.459Z","credentials":{"district_username":"ritchie_kaci","district_password":"Eif6eephin3"},"district":"4fd43cc56d11340000000005","email":"ritchie_kaci@example.org","last_modified":"2014-02-26T21:15:01.460Z","name":{"first":"Kaci","middle":"B","last":"Ritchie"},"school":"530e595026403103360ff9ff","sis_id":"65","teacher_number":"110912","title":"Grade
701
701
  6 Physical Education Teacher","id":"530e5955d50c310f36112bff"},"uri":"/v1.1/teachers/530e5955d50c310f36112bff"},{"data":{"created":"2014-02-26T21:15:01.462Z","credentials":{"district_username":"raina_herman","district_password":"Eexae9fae"},"district":"4fd43cc56d11340000000005","email":"herman.raina@example.net","last_modified":"2014-02-26T21:15:01.464Z","name":{"first":"Raina","middle":"A","last":"Herman"},"school":"530e595026403103360ff9fe","sis_id":"66","teacher_number":"693443","title":"Elementary
@@ -707,7 +707,7 @@ http_interactions:
707
707
  School Media Arts Teacher","id":"530e5955d50c310f36112c05"},"uri":"/v1.1/teachers/530e5955d50c310f36112c05"},{"data":{"created":"2014-02-26T21:15:01.488Z","credentials":{"district_username":"coulton.john","district_password":"posi924adA"},"district":"4fd43cc56d11340000000005","email":"john.coulton@example.net","last_modified":"2014-02-26T21:15:01.491Z","name":{"first":"John","middle":"D","last":"Coulton"},"school":"530e595026403103360ff9fd","sis_id":"72","teacher_number":"900381","title":"High
708
708
  School Music Teacher","id":"530e5955d50c310f36112c06"},"uri":"/v1.1/teachers/530e5955d50c310f36112c06"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112bfc"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&ending_before=530e5955d50c310f36112bfd"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112c06"}]}'
709
709
  http_version:
710
- recorded_at: Mon, 08 Sep 2014 21:31:24 GMT
710
+ recorded_at: Tue, 09 Sep 2014 21:48:37 GMT
711
711
  - request:
712
712
  method: get
713
713
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112c06
@@ -716,7 +716,7 @@ http_interactions:
716
716
  string: ''
717
717
  headers:
718
718
  Accept:
719
- - ! '*/*; q=0.5, application/xml'
719
+ - "*/*; q=0.5, application/xml"
720
720
  Accept-Encoding:
721
721
  - gzip, deflate
722
722
  User-Agent:
@@ -731,13 +731,13 @@ http_interactions:
731
731
  Access-Control-Allow-Methods:
732
732
  - GET,PATCH,POST,DELETE
733
733
  Access-Control-Allow-Origin:
734
- - ! '*'
734
+ - "*"
735
735
  Content-Type:
736
736
  - application/json; charset=utf-8
737
737
  Date:
738
- - Mon, 08 Sep 2014 21:31:24 GMT
738
+ - Tue, 09 Sep 2014 21:48:37 GMT
739
739
  Etag:
740
- - ! '"-1878424653"'
740
+ - '"-1878424653"'
741
741
  Server:
742
742
  - nginx/1.4.7
743
743
  X-Powered-By:
@@ -747,8 +747,8 @@ http_interactions:
747
747
  Connection:
748
748
  - keep-alive
749
749
  body:
750
- encoding: US-ASCII
751
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:01.493Z","credentials":{"district_username":"mccartney_paula","district_password":"jf098fjdk2a"},"district":"4fd43cc56d11340000000005","email":"paula_mccartney@example.org","last_modified":"2014-02-26T21:15:01.494Z","name":{"first":"Paula","middle":"H","last":"McCartney"},"school":"530e595026403103360ff9fd","sis_id":"75","teacher_number":"847826","title":"High
750
+ encoding: UTF-8
751
+ string: '{"data":[{"data":{"created":"2014-02-26T21:15:01.493Z","credentials":{"district_username":"mccartney_paula","district_password":"jf098fjdk2a"},"district":"4fd43cc56d11340000000005","email":"paula_mccartney@example.org","last_modified":"2014-02-26T21:15:01.494Z","name":{"first":"Paula","middle":"H","last":"McCartney"},"school":"530e595026403103360ff9fd","sis_id":"75","teacher_number":"847826","title":"High
752
752
  School Health and Physical Education Teacher","id":"530e5955d50c310f36112c07"},"uri":"/v1.1/teachers/530e5955d50c310f36112c07"},{"data":{"created":"2014-02-26T21:15:01.496Z","credentials":{"district_username":"roger_gadsby","district_password":"lkjgf8hasdofjh"},"district":"4fd43cc56d11340000000005","email":"gadsby.roger@example.com","last_modified":"2014-02-26T21:15:01.497Z","name":{"first":"Roger","middle":"X","last":"Gadsby"},"school":"530e595026403103360ff9fd","sis_id":"76","teacher_number":"219349","title":"High
753
753
  School Music Teacher","id":"530e5955d50c310f36112c08"},"uri":"/v1.1/teachers/530e5955d50c310f36112c08"},{"data":{"created":"2014-02-26T21:15:01.499Z","credentials":{"district_username":"plant_robin","district_password":"84dhhfsfgh"},"district":"4fd43cc56d11340000000005","email":"robin_plant@example.org","last_modified":"2014-02-26T21:15:01.501Z","name":{"first":"Robin","middle":"M","last":"Plant"},"school":"530e595026403103360ff9fd","sis_id":"77","teacher_number":"532771","title":"High
754
754
  School Arts Teacher","id":"530e5955d50c310f36112c09"},"uri":"/v1.1/teachers/530e5955d50c310f36112c09"},{"data":{"created":"2014-02-26T21:15:01.502Z","credentials":{"district_username":"page.james","district_password":"843r5hfsajfh"},"district":"4fd43cc56d11340000000005","email":"page.james@example.net","last_modified":"2014-02-26T21:15:01.504Z","name":{"first":"James","middle":"V","last":"Page"},"school":"530e595026403103360ff9fd","sis_id":"78","teacher_number":"884763","title":"High
@@ -760,7 +760,7 @@ http_interactions:
760
760
  School Guidance Counselor","id":"530e5955d50c310f36112c0f"},"uri":"/v1.1/teachers/530e5955d50c310f36112c0f"},{"data":{"created":"2014-02-26T21:15:01.537Z","credentials":{"district_username":"kari_hudson","district_password":"dfafsbe5tw3"},"district":"4fd43cc56d11340000000005","email":"kari.hudson@example.net","last_modified":"2014-02-26T21:15:01.538Z","name":{"first":"Kari","middle":"H","last":"Hudson"},"school":"530e595026403103360ff9ff","sis_id":"85","teacher_number":"989342","title":"Middle
761
761
  School Guidance Counselor","id":"530e5955d50c310f36112c10"},"uri":"/v1.1/teachers/530e5955d50c310f36112c10"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112c06"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&ending_before=530e5955d50c310f36112c07"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112c10"}]}'
762
762
  http_version:
763
- recorded_at: Mon, 08 Sep 2014 21:31:24 GMT
763
+ recorded_at: Tue, 09 Sep 2014 21:48:37 GMT
764
764
  - request:
765
765
  method: get
766
766
  uri: https://DEMO_KEY:@api.clever.com//v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112c10
@@ -769,7 +769,7 @@ http_interactions:
769
769
  string: ''
770
770
  headers:
771
771
  Accept:
772
- - ! '*/*; q=0.5, application/xml'
772
+ - "*/*; q=0.5, application/xml"
773
773
  Accept-Encoding:
774
774
  - gzip, deflate
775
775
  User-Agent:
@@ -784,13 +784,13 @@ http_interactions:
784
784
  Access-Control-Allow-Methods:
785
785
  - GET,PATCH,POST,DELETE
786
786
  Access-Control-Allow-Origin:
787
- - ! '*'
787
+ - "*"
788
788
  Content-Type:
789
789
  - application/json; charset=utf-8
790
790
  Date:
791
- - Mon, 08 Sep 2014 21:31:24 GMT
791
+ - Tue, 09 Sep 2014 21:48:37 GMT
792
792
  Etag:
793
- - ! '"214602549"'
793
+ - '"214602549"'
794
794
  Server:
795
795
  - nginx/1.4.7
796
796
  X-Powered-By:
@@ -800,8 +800,8 @@ http_interactions:
800
800
  Connection:
801
801
  - keep-alive
802
802
  body:
803
- encoding: US-ASCII
804
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:01.541Z","credentials":{"district_username":"brianna.greene","district_password":"878fddh"},"district":"4fd43cc56d11340000000005","email":"brianna.greene@example.org","last_modified":"2014-02-26T21:15:01.542Z","name":{"first":"Brianna","middle":"P","last":"Greene"},"school":"530e595026403103360ff9fd","sis_id":"86","teacher_number":"595853","title":"High
803
+ encoding: UTF-8
804
+ string: '{"data":[{"data":{"created":"2014-02-26T21:15:01.541Z","credentials":{"district_username":"brianna.greene","district_password":"878fddh"},"district":"4fd43cc56d11340000000005","email":"brianna.greene@example.org","last_modified":"2014-02-26T21:15:01.542Z","name":{"first":"Brianna","middle":"P","last":"Greene"},"school":"530e595026403103360ff9fd","sis_id":"86","teacher_number":"595853","title":"High
805
805
  School Guidance Counselor","id":"530e5955d50c310f36112c11"},"uri":"/v1.1/teachers/530e5955d50c310f36112c11"},{"data":{"created":"2014-02-26T21:15:01.544Z","credentials":{"district_username":"vaux_tracy","district_password":"09876dfgh"},"district":"4fd43cc56d11340000000005","email":"vaux_tracy@example.com","last_modified":"2014-02-26T21:15:01.547Z","name":{"first":"Tracy","middle":"A","last":"Vaux"},"school":"530e595026403103360ff9fd","sis_id":"87","teacher_number":"148041","title":"High
806
806
  School Guidance Counselor","id":"530e5955d50c310f36112c12"},"uri":"/v1.1/teachers/530e5955d50c310f36112c12"},{"data":{"created":"2014-02-26T21:15:01.549Z","credentials":{"district_username":"britcher_elizabeth","district_password":"password1"},"district":"4fd43cc56d11340000000005","email":"elizabeth.britcher@example.net","last_modified":"2014-02-26T21:15:01.553Z","name":{"first":"Elizabeth","middle":"H","last":"Britcher"},"school":"530e595026403103360ff9fd","sis_id":"88","teacher_number":"969161","title":"High
807
807
  School Guidance Counselor","id":"530e5955d50c310f36112c13"},"uri":"/v1.1/teachers/530e5955d50c310f36112c13"},{"data":{"created":"2014-02-26T21:15:01.554Z","credentials":{"district_username":"josephine.isaacs","district_password":"rgrgj924"},"district":"4fd43cc56d11340000000005","email":"josephine_isaacs@example.com","last_modified":"2014-02-26T21:15:01.556Z","name":{"first":"Josephine","middle":"K","last":"Isaacs"},"school":"530e595026403103360ff9fd","sis_id":"89","teacher_number":"565897","title":"College
@@ -812,5 +812,5 @@ http_interactions:
812
812
  Coach","id":"530e5955d50c310f36112c18"},"uri":"/v1.1/teachers/530e5955d50c310f36112c18"},{"data":{"created":"2014-02-26T21:15:01.572Z","credentials":{"district_username":"m_paucek","district_password":"jhga8salgh"},"district":"4fd43cc56d11340000000005","email":"paucek_m@example.org","last_modified":"2014-02-26T21:15:01.574Z","name":{"first":"Meaghan","middle":"P","last":"Paucek"},"school":"530e595026403103360ff9fd","sis_id":"93","teacher_number":"843713","title":"High
813
813
  School Drama Teacher","id":"530e5955d50c310f36112c19"},"uri":"/v1.1/teachers/530e5955d50c310f36112c19"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112c10"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&ending_before=530e5955d50c310f36112c11"}]}'
814
814
  http_version:
815
- recorded_at: Mon, 08 Sep 2014 21:31:24 GMT
815
+ recorded_at: Tue, 09 Sep 2014 21:48:37 GMT
816
816
  recorded_with: VCR 2.4.0