clever-ruby 0.11.1 → 0.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (96) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +8 -0
  3. data/README.md +15 -1
  4. data/clever-ruby.gemspec +0 -1
  5. data/lib/clever-ruby.rb +1 -1
  6. data/lib/clever-ruby/api_resource.rb +43 -7
  7. data/lib/clever-ruby/district.rb +14 -0
  8. data/lib/clever-ruby/event.rb +2 -0
  9. data/lib/clever-ruby/school.rb +2 -0
  10. data/lib/clever-ruby/school_admin.rb +17 -0
  11. data/lib/clever-ruby/section.rb +2 -0
  12. data/lib/clever-ruby/student.rb +2 -0
  13. data/lib/clever-ruby/teacher.rb +2 -0
  14. data/lib/clever-ruby/util.rb +1 -9
  15. data/lib/clever-ruby/version.rb +1 -1
  16. data/test/data/vcr_cassettes/Clever_APIOperations_List/counts_district_properly.yml +14 -8
  17. data/test/data/vcr_cassettes/Clever_APIOperations_List/counts_event_properly.yml +14 -8
  18. data/test/data/vcr_cassettes/Clever_APIOperations_List/counts_school_admin_properly.yml +52 -0
  19. data/test/data/vcr_cassettes/Clever_APIOperations_List/counts_school_properly.yml +14 -8
  20. data/test/data/vcr_cassettes/Clever_APIOperations_List/counts_section_properly.yml +14 -8
  21. data/test/data/vcr_cassettes/Clever_APIOperations_List/counts_student_properly.yml +14 -8
  22. data/test/data/vcr_cassettes/Clever_APIOperations_List/counts_teacher_properly.yml +14 -8
  23. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_a_single_district.yml +28 -16
  24. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_a_single_event.yml +28 -16
  25. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_a_single_school.yml +28 -18
  26. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_a_single_school_admin.yml +101 -0
  27. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_a_single_section.yml +30 -18
  28. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_a_single_student.yml +30 -18
  29. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_a_single_teacher.yml +28 -18
  30. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_districts_by_page.yml +28 -16
  31. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_districts_with_multiple_ids.yml +28 -16
  32. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_events_by_page.yml +24 -10
  33. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_events_with_multiple_ids.yml +30 -18
  34. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_school_admins_by_page.yml +101 -0
  35. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_school_admins_with_multiple_ids.yml +101 -0
  36. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_schools_by_page.yml +28 -18
  37. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_schools_with_multiple_ids.yml +28 -20
  38. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_sections_by_page.yml +34 -22
  39. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_sections_with_multiple_ids.yml +30 -18
  40. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_students_by_page.yml +48 -36
  41. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_students_with_multiple_ids.yml +30 -18
  42. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_teachers_by_page.yml +27 -17
  43. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_teachers_with_multiple_ids.yml +28 -20
  44. data/test/data/vcr_cassettes/Clever_APIOperations_List/retrieves_all_district.yml +28 -16
  45. data/test/data/vcr_cassettes/Clever_APIOperations_List/retrieves_all_event.yml +28 -14
  46. data/test/data/vcr_cassettes/Clever_APIOperations_List/retrieves_all_school.yml +28 -18
  47. data/test/data/vcr_cassettes/Clever_APIOperations_List/retrieves_all_school_admin.yml +101 -0
  48. data/test/data/vcr_cassettes/Clever_APIOperations_List/retrieves_all_section.yml +34 -22
  49. data/test/data/vcr_cassettes/Clever_APIOperations_List/retrieves_all_student.yml +48 -36
  50. data/test/data/vcr_cassettes/Clever_APIOperations_List/retrieves_all_teacher.yml +30 -20
  51. data/test/data/vcr_cassettes/Clever_District_without_global_token/pages_methods/pages_a_district_s_events.yml +39 -19
  52. data/test/data/vcr_cassettes/Clever_District_without_global_token/pages_methods/pages_a_district_s_schools.yml +36 -22
  53. data/test/data/vcr_cassettes/Clever_District_without_global_token/pages_methods/pages_a_district_s_sections.yml +37 -19
  54. data/test/data/vcr_cassettes/Clever_District_without_global_token/pages_methods/pages_a_district_s_students.yml +37 -19
  55. data/test/data/vcr_cassettes/Clever_District_without_global_token/pages_methods/pages_a_district_s_teachers.yml +34 -20
  56. data/test/data/vcr_cassettes/Clever_District_without_global_token/retrieves_a_district_s_school_admins.yml +101 -0
  57. data/test/data/vcr_cassettes/Clever_District_without_global_token/retrieves_a_district_s_schools.yml +25 -15
  58. data/test/data/vcr_cassettes/Clever_District_without_global_token/retrieves_a_district_s_sections.yml +26 -14
  59. data/test/data/vcr_cassettes/Clever_District_without_global_token/retrieves_a_district_s_students.yml +26 -14
  60. data/test/data/vcr_cassettes/Clever_District_without_global_token/retrieves_a_district_s_teachers.yml +25 -15
  61. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_district_s_events.yml +54 -30
  62. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_district_s_schools.yml +50 -30
  63. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_district_s_sections.yml +51 -27
  64. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_district_s_students.yml +51 -27
  65. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_district_s_teachers.yml +50 -30
  66. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_school_admin_s_schools.yml +205 -0
  67. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_school_s_district.yml +43 -27
  68. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_school_s_events.yml +56 -30
  69. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_school_s_sections.yml +58 -36
  70. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_school_s_students.yml +69 -45
  71. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_school_s_teachers.yml +52 -34
  72. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_section_s_district.yml +42 -24
  73. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_section_s_events.yml +58 -30
  74. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_section_s_school.yml +41 -23
  75. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_section_s_students.yml +45 -27
  76. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_section_s_teacher.yml +41 -23
  77. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_student_s_district.yml +42 -24
  78. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_student_s_events.yml +58 -30
  79. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_student_s_school.yml +41 -23
  80. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_student_s_sections.yml +56 -32
  81. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_student_s_teachers.yml +54 -30
  82. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_teacher_s_district.yml +40 -24
  83. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_teacher_s_events.yml +56 -30
  84. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_teacher_s_school.yml +39 -23
  85. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_teacher_s_sections.yml +54 -32
  86. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_teacher_s_students.yml +54 -32
  87. data/test/data/vcr_cassettes/Error_handling/raises_an_InvalidRequestError_when_given_a_bad_created_since.yml +42 -24
  88. data/test/data/vcr_cassettes/Optional_attributes/has_the_expected_value_for_an_optional_attribute_that_is_present.yml +13 -7
  89. data/test/data/vcr_cassettes/last_method/page/has_working_first_and_last_methods.yml +142 -61
  90. data/test/integration/api_operations/list_test.rb +5 -3
  91. data/test/integration/district_with_non_global_token_test.rb +7 -0
  92. data/test/integration/last_test.rb +3 -2
  93. data/test/integration/nested_resource_test.rb +3 -2
  94. data/test/unit/api_resource_test.rb +29 -14
  95. data/test/unit/clever_test.rb +1 -0
  96. metadata +17 -16
@@ -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
  Authorization:
@@ -25,24 +25,28 @@ http_interactions:
25
25
  Access-Control-Allow-Methods:
26
26
  - GET,PATCH,POST,DELETE
27
27
  Access-Control-Allow-Origin:
28
- - ! '*'
28
+ - "*"
29
29
  Content-Type:
30
30
  - application/json; charset=utf-8
31
31
  Date:
32
- - Sat, 13 Sep 2014 00:07:38 GMT
33
- Etag:
34
- - ! '"-409931571"'
35
- Server:
36
- - nginx/1.4.7
32
+ - Sat, 26 Sep 2015 17:37:25 GMT
37
33
  X-Powered-By:
38
34
  - Express
35
+ X-Ratelimit-Bucket:
36
+ - bearer
37
+ X-Ratelimit-Limit:
38
+ - '1200'
39
+ X-Ratelimit-Remaining:
40
+ - '1115'
41
+ X-Ratelimit-Reset:
42
+ - '1443289062'
39
43
  Content-Length:
40
44
  - '44617'
41
45
  Connection:
42
46
  - keep-alive
43
47
  body:
44
- encoding: US-ASCII
45
- 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
48
+ encoding: UTF-8
49
+ 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
46
50
  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
47
51
  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
48
52
  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
@@ -142,7 +146,7 @@ http_interactions:
142
146
  string: ''
143
147
  headers:
144
148
  Accept:
145
- - ! '*/*; q=0.5, application/xml'
149
+ - "*/*; q=0.5, application/xml"
146
150
  Accept-Encoding:
147
151
  - gzip, deflate
148
152
  Authorization:
@@ -159,22 +163,28 @@ http_interactions:
159
163
  Access-Control-Allow-Methods:
160
164
  - GET,PATCH,POST,DELETE
161
165
  Access-Control-Allow-Origin:
162
- - ! '*'
166
+ - "*"
163
167
  Content-Type:
164
168
  - application/json; charset=utf-8
165
169
  Date:
166
- - Sat, 13 Sep 2014 00:07:38 GMT
167
- Server:
168
- - nginx/1.4.7
170
+ - Sat, 26 Sep 2015 17:37:25 GMT
169
171
  X-Powered-By:
170
172
  - Express
173
+ X-Ratelimit-Bucket:
174
+ - bearer
175
+ X-Ratelimit-Limit:
176
+ - '1200'
177
+ X-Ratelimit-Remaining:
178
+ - '1114'
179
+ X-Ratelimit-Reset:
180
+ - '1443289062'
171
181
  Content-Length:
172
182
  - '972'
173
183
  Connection:
174
184
  - keep-alive
175
185
  body:
176
- encoding: US-ASCII
177
- string: ! '{"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
186
+ encoding: UTF-8
187
+ string: '{"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
178
188
  3 Common Branch Teacher","id":"509fbd7ec474fab64a8e9d53"},"links":[{"rel":"self","uri":"/v1.1/teachers/509fbd7ec474fab64a8e9d53"},{"rel":"district","uri":"/v1.1/teachers/509fbd7ec474fab64a8e9d53/district"},{"rel":"school","uri":"/v1.1/teachers/509fbd7ec474fab64a8e9d53/school"},{"rel":"students","uri":"/v1.1/teachers/509fbd7ec474fab64a8e9d53/students"},{"rel":"sections","uri":"/v1.1/teachers/509fbd7ec474fab64a8e9d53/sections"},{"rel":"grade_levels","uri":"/v1.1/teachers/509fbd7ec474fab64a8e9d53/grade_levels"},{"rel":"events","uri":"/v1.1/teachers/509fbd7ec474fab64a8e9d53/events"}]}'
179
189
  http_version:
180
190
  recorded_at: Sat, 13 Sep 2014 00:07:38 GMT
@@ -186,7 +196,7 @@ http_interactions:
186
196
  string: ''
187
197
  headers:
188
198
  Accept:
189
- - ! '*/*; q=0.5, application/xml'
199
+ - "*/*; q=0.5, application/xml"
190
200
  Accept-Encoding:
191
201
  - gzip, deflate
192
202
  Authorization:
@@ -203,22 +213,28 @@ http_interactions:
203
213
  Access-Control-Allow-Methods:
204
214
  - GET,PATCH,POST,DELETE
205
215
  Access-Control-Allow-Origin:
206
- - ! '*'
216
+ - "*"
207
217
  Content-Type:
208
218
  - application/json; charset=utf-8
209
219
  Date:
210
- - Sat, 13 Sep 2014 00:07:38 GMT
211
- Server:
212
- - nginx/1.4.7
220
+ - Sat, 26 Sep 2015 17:37:25 GMT
213
221
  X-Powered-By:
214
222
  - Express
223
+ X-Ratelimit-Bucket:
224
+ - bearer
225
+ X-Ratelimit-Limit:
226
+ - '1200'
227
+ X-Ratelimit-Remaining:
228
+ - '1113'
229
+ X-Ratelimit-Reset:
230
+ - '1443289062'
215
231
  Content-Length:
216
232
  - '587'
217
233
  Connection:
218
234
  - keep-alive
219
235
  body:
220
- encoding: US-ASCII
221
- string: ! '{"data":{"created":"2014-02-26T21:14:56.668Z","district":"4fd43cc56d11340000000005","high_grade":"5","last_modified":"2014-02-26T21:14:56.670Z","location":{"address":"110
236
+ encoding: UTF-8
237
+ string: '{"data":{"created":"2014-02-26T21:14:56.668Z","district":"4fd43cc56d11340000000005","high_grade":"5","last_modified":"2014-02-26T21:14:56.670Z","location":{"address":"110
222
238
  Pineapple Street","city":"Brooklyn","state":"NY","zip":"11201"},"low_grade":"Kindergarten","name":"Clever
223
239
  Elementary School","nces_id":"360007000000","phone":"(718) 555-4567","principal":{"name":"Cecilia
224
240
  Roderick","email":"ceciliar@mailinator.com"},"school_number":"13K123","sis_id":"13K123","state_id":"30890","id":"530e595026403103360ff9fe"},"links":[{"rel":"self","uri":"/v1.1/schools/530e595026403103360ff9fe"}]}'
@@ -8,7 +8,7 @@ http_interactions:
8
8
  string: ''
9
9
  headers:
10
10
  Accept:
11
- - ! '*/*; q=0.5, application/xml'
11
+ - "*/*; q=0.5, application/xml"
12
12
  Accept-Encoding:
13
13
  - gzip, deflate
14
14
  Authorization:
@@ -25,24 +25,28 @@ http_interactions:
25
25
  Access-Control-Allow-Methods:
26
26
  - GET,PATCH,POST,DELETE
27
27
  Access-Control-Allow-Origin:
28
- - ! '*'
28
+ - "*"
29
29
  Content-Type:
30
30
  - application/json; charset=utf-8
31
31
  Date:
32
- - Sat, 13 Sep 2014 00:07:37 GMT
33
- Etag:
34
- - ! '"-409931571"'
35
- Server:
36
- - nginx/1.4.7
32
+ - Sat, 26 Sep 2015 17:37:22 GMT
37
33
  X-Powered-By:
38
34
  - Express
35
+ X-Ratelimit-Bucket:
36
+ - bearer
37
+ X-Ratelimit-Limit:
38
+ - '1200'
39
+ X-Ratelimit-Remaining:
40
+ - '1123'
41
+ X-Ratelimit-Reset:
42
+ - '1443289062'
39
43
  Content-Length:
40
44
  - '44617'
41
45
  Connection:
42
46
  - keep-alive
43
47
  body:
44
- encoding: US-ASCII
45
- 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
48
+ encoding: UTF-8
49
+ 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
46
50
  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
47
51
  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
48
52
  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
@@ -142,7 +146,7 @@ http_interactions:
142
146
  string: ''
143
147
  headers:
144
148
  Accept:
145
- - ! '*/*; q=0.5, application/xml'
149
+ - "*/*; q=0.5, application/xml"
146
150
  Accept-Encoding:
147
151
  - gzip, deflate
148
152
  Authorization:
@@ -159,22 +163,28 @@ http_interactions:
159
163
  Access-Control-Allow-Methods:
160
164
  - GET,PATCH,POST,DELETE
161
165
  Access-Control-Allow-Origin:
162
- - ! '*'
166
+ - "*"
163
167
  Content-Type:
164
168
  - application/json; charset=utf-8
165
169
  Date:
166
- - Sat, 13 Sep 2014 00:07:37 GMT
167
- Server:
168
- - nginx/1.4.7
170
+ - Sat, 26 Sep 2015 17:37:22 GMT
169
171
  X-Powered-By:
170
172
  - Express
173
+ X-Ratelimit-Bucket:
174
+ - bearer
175
+ X-Ratelimit-Limit:
176
+ - '1200'
177
+ X-Ratelimit-Remaining:
178
+ - '1122'
179
+ X-Ratelimit-Reset:
180
+ - '1443289062'
171
181
  Content-Length:
172
182
  - '972'
173
183
  Connection:
174
184
  - keep-alive
175
185
  body:
176
- encoding: US-ASCII
177
- string: ! '{"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
186
+ encoding: UTF-8
187
+ string: '{"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
178
188
  3 Common Branch Teacher","id":"509fbd7ec474fab64a8e9d53"},"links":[{"rel":"self","uri":"/v1.1/teachers/509fbd7ec474fab64a8e9d53"},{"rel":"district","uri":"/v1.1/teachers/509fbd7ec474fab64a8e9d53/district"},{"rel":"school","uri":"/v1.1/teachers/509fbd7ec474fab64a8e9d53/school"},{"rel":"students","uri":"/v1.1/teachers/509fbd7ec474fab64a8e9d53/students"},{"rel":"sections","uri":"/v1.1/teachers/509fbd7ec474fab64a8e9d53/sections"},{"rel":"grade_levels","uri":"/v1.1/teachers/509fbd7ec474fab64a8e9d53/grade_levels"},{"rel":"events","uri":"/v1.1/teachers/509fbd7ec474fab64a8e9d53/events"}]}'
179
189
  http_version:
180
190
  recorded_at: Sat, 13 Sep 2014 00:07:37 GMT
@@ -186,7 +196,7 @@ http_interactions:
186
196
  string: ''
187
197
  headers:
188
198
  Accept:
189
- - ! '*/*; q=0.5, application/xml'
199
+ - "*/*; q=0.5, application/xml"
190
200
  Accept-Encoding:
191
201
  - gzip, deflate
192
202
  Authorization:
@@ -203,24 +213,30 @@ http_interactions:
203
213
  Access-Control-Allow-Methods:
204
214
  - GET,PATCH,POST,DELETE
205
215
  Access-Control-Allow-Origin:
206
- - ! '*'
216
+ - "*"
207
217
  Content-Type:
208
218
  - application/json; charset=utf-8
209
219
  Date:
210
- - Sat, 13 Sep 2014 00:07:37 GMT
220
+ - Sat, 26 Sep 2015 17:37:23 GMT
211
221
  Etag:
212
- - ! '"517917419"'
213
- Server:
214
- - nginx/1.4.7
222
+ - '"-1262236172"'
215
223
  X-Powered-By:
216
224
  - Express
225
+ X-Ratelimit-Bucket:
226
+ - bearer
227
+ X-Ratelimit-Limit:
228
+ - '1200'
229
+ X-Ratelimit-Remaining:
230
+ - '1121'
231
+ X-Ratelimit-Reset:
232
+ - '1443289062'
217
233
  Content-Length:
218
234
  - '7021'
219
235
  Connection:
220
236
  - keep-alive
221
237
  body:
222
- encoding: US-ASCII
223
- string: ! '{"data":[{"data":{"course_name":"Class 303, Homeroom","course_number":"303","created":"2014-02-26T21:15:38.560Z","district":"4fd43cc56d11340000000005","grade":"3","last_modified":"2014-02-26T21:15:38.562Z","name":"Class
238
+ encoding: UTF-8
239
+ string: '{"data":[{"data":{"course_name":"Class 303, Homeroom","course_number":"303","created":"2014-02-26T21:15:38.560Z","district":"4fd43cc56d11340000000005","grade":"3","last_modified":"2014-02-26T21:15:38.562Z","name":"Class
224
240
  303, Homeroom - 303 - L. Spinka (Section 3)","period":"0","school":"530e595026403103360ff9fe","sis_id":"728","students":["530e5960049e75a9262cff3e","530e5961049e75a9262d0067","530e5962049e75a9262d00a2","530e5962049e75a9262d00b0","530e5962049e75a9262d00f0","530e5962049e75a9262d0117","530e5962049e75a9262d0131","530e5963049e75a9262d0188","530e5963049e75a9262d01c3","530e5964049e75a9262d02b0","530e5964049e75a9262d02d7","530e5964049e75a9262d02f1","530e5965049e75a9262d03c1","530e5965049e75a9262d03c4","530e5966049e75a9262d0445","530e5967049e75a9262d0541","530e5967049e75a9262d05c2","530e5968049e75a9262d05fd","530e5968049e75a9262d0624","530e5968049e75a9262d063d","530e5968049e75a9262d063e"],"subject":"homeroom/advisory","teacher":"509fbd7ec474fab64a8e9d53","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b84"},"uri":"/v1.1/sections/530e597a049e75a9262d0b84"},{"data":{"course_name":"Grade
225
241
  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
226
242
  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
@@ -245,7 +261,7 @@ http_interactions:
245
261
  string: ''
246
262
  headers:
247
263
  Accept:
248
- - ! '*/*; q=0.5, application/xml'
264
+ - "*/*; q=0.5, application/xml"
249
265
  Accept-Encoding:
250
266
  - gzip, deflate
251
267
  Authorization:
@@ -262,24 +278,30 @@ http_interactions:
262
278
  Access-Control-Allow-Methods:
263
279
  - GET,PATCH,POST,DELETE
264
280
  Access-Control-Allow-Origin:
265
- - ! '*'
281
+ - "*"
266
282
  Content-Type:
267
283
  - application/json; charset=utf-8
268
284
  Date:
269
- - Sat, 13 Sep 2014 00:07:37 GMT
285
+ - Sat, 26 Sep 2015 17:37:23 GMT
270
286
  Etag:
271
- - ! '"517917419"'
272
- Server:
273
- - nginx/1.4.7
287
+ - '"-1262236172"'
274
288
  X-Powered-By:
275
289
  - Express
290
+ X-Ratelimit-Bucket:
291
+ - bearer
292
+ X-Ratelimit-Limit:
293
+ - '1200'
294
+ X-Ratelimit-Remaining:
295
+ - '1120'
296
+ X-Ratelimit-Reset:
297
+ - '1443289062'
276
298
  Content-Length:
277
299
  - '7021'
278
300
  Connection:
279
301
  - keep-alive
280
302
  body:
281
- encoding: US-ASCII
282
- string: ! '{"data":[{"data":{"course_name":"Class 303, Homeroom","course_number":"303","created":"2014-02-26T21:15:38.560Z","district":"4fd43cc56d11340000000005","grade":"3","last_modified":"2014-02-26T21:15:38.562Z","name":"Class
303
+ encoding: UTF-8
304
+ string: '{"data":[{"data":{"course_name":"Class 303, Homeroom","course_number":"303","created":"2014-02-26T21:15:38.560Z","district":"4fd43cc56d11340000000005","grade":"3","last_modified":"2014-02-26T21:15:38.562Z","name":"Class
283
305
  303, Homeroom - 303 - L. Spinka (Section 3)","period":"0","school":"530e595026403103360ff9fe","sis_id":"728","students":["530e5960049e75a9262cff3e","530e5961049e75a9262d0067","530e5962049e75a9262d00a2","530e5962049e75a9262d00b0","530e5962049e75a9262d00f0","530e5962049e75a9262d0117","530e5962049e75a9262d0131","530e5963049e75a9262d0188","530e5963049e75a9262d01c3","530e5964049e75a9262d02b0","530e5964049e75a9262d02d7","530e5964049e75a9262d02f1","530e5965049e75a9262d03c1","530e5965049e75a9262d03c4","530e5966049e75a9262d0445","530e5967049e75a9262d0541","530e5967049e75a9262d05c2","530e5968049e75a9262d05fd","530e5968049e75a9262d0624","530e5968049e75a9262d063d","530e5968049e75a9262d063e"],"subject":"homeroom/advisory","teacher":"509fbd7ec474fab64a8e9d53","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b84"},"uri":"/v1.1/sections/530e597a049e75a9262d0b84"},{"data":{"course_name":"Grade
284
306
  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
285
307
  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
@@ -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
  Authorization:
@@ -25,24 +25,28 @@ http_interactions:
25
25
  Access-Control-Allow-Methods:
26
26
  - GET,PATCH,POST,DELETE
27
27
  Access-Control-Allow-Origin:
28
- - ! '*'
28
+ - "*"
29
29
  Content-Type:
30
30
  - application/json; charset=utf-8
31
31
  Date:
32
- - Sat, 13 Sep 2014 00:07:38 GMT
33
- Etag:
34
- - ! '"-409931571"'
35
- Server:
36
- - nginx/1.4.7
32
+ - Sat, 26 Sep 2015 17:37:17 GMT
37
33
  X-Powered-By:
38
34
  - Express
35
+ X-Ratelimit-Bucket:
36
+ - bearer
37
+ X-Ratelimit-Limit:
38
+ - '1200'
39
+ X-Ratelimit-Remaining:
40
+ - '1134'
41
+ X-Ratelimit-Reset:
42
+ - '1443289062'
39
43
  Content-Length:
40
44
  - '44617'
41
45
  Connection:
42
46
  - keep-alive
43
47
  body:
44
- encoding: US-ASCII
45
- 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
48
+ encoding: UTF-8
49
+ 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
46
50
  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
47
51
  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
48
52
  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
@@ -142,7 +146,7 @@ http_interactions:
142
146
  string: ''
143
147
  headers:
144
148
  Accept:
145
- - ! '*/*; q=0.5, application/xml'
149
+ - "*/*; q=0.5, application/xml"
146
150
  Accept-Encoding:
147
151
  - gzip, deflate
148
152
  Authorization:
@@ -159,22 +163,28 @@ http_interactions:
159
163
  Access-Control-Allow-Methods:
160
164
  - GET,PATCH,POST,DELETE
161
165
  Access-Control-Allow-Origin:
162
- - ! '*'
166
+ - "*"
163
167
  Content-Type:
164
168
  - application/json; charset=utf-8
165
169
  Date:
166
- - Sat, 13 Sep 2014 00:07:38 GMT
167
- Server:
168
- - nginx/1.4.7
170
+ - Sat, 26 Sep 2015 17:37:17 GMT
169
171
  X-Powered-By:
170
172
  - Express
173
+ X-Ratelimit-Bucket:
174
+ - bearer
175
+ X-Ratelimit-Limit:
176
+ - '1200'
177
+ X-Ratelimit-Remaining:
178
+ - '1133'
179
+ X-Ratelimit-Reset:
180
+ - '1443289062'
171
181
  Content-Length:
172
182
  - '972'
173
183
  Connection:
174
184
  - keep-alive
175
185
  body:
176
- encoding: US-ASCII
177
- string: ! '{"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
186
+ encoding: UTF-8
187
+ string: '{"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
178
188
  3 Common Branch Teacher","id":"509fbd7ec474fab64a8e9d53"},"links":[{"rel":"self","uri":"/v1.1/teachers/509fbd7ec474fab64a8e9d53"},{"rel":"district","uri":"/v1.1/teachers/509fbd7ec474fab64a8e9d53/district"},{"rel":"school","uri":"/v1.1/teachers/509fbd7ec474fab64a8e9d53/school"},{"rel":"students","uri":"/v1.1/teachers/509fbd7ec474fab64a8e9d53/students"},{"rel":"sections","uri":"/v1.1/teachers/509fbd7ec474fab64a8e9d53/sections"},{"rel":"grade_levels","uri":"/v1.1/teachers/509fbd7ec474fab64a8e9d53/grade_levels"},{"rel":"events","uri":"/v1.1/teachers/509fbd7ec474fab64a8e9d53/events"}]}'
179
189
  http_version:
180
190
  recorded_at: Sat, 13 Sep 2014 00:07:38 GMT
@@ -186,7 +196,7 @@ http_interactions:
186
196
  string: ''
187
197
  headers:
188
198
  Accept:
189
- - ! '*/*; q=0.5, application/xml'
199
+ - "*/*; q=0.5, application/xml"
190
200
  Accept-Encoding:
191
201
  - gzip, deflate
192
202
  Authorization:
@@ -203,24 +213,30 @@ http_interactions:
203
213
  Access-Control-Allow-Methods:
204
214
  - GET,PATCH,POST,DELETE
205
215
  Access-Control-Allow-Origin:
206
- - ! '*'
216
+ - "*"
207
217
  Content-Type:
208
218
  - application/json; charset=utf-8
209
219
  Date:
210
- - Sat, 13 Sep 2014 00:07:38 GMT
220
+ - Sat, 26 Sep 2015 17:37:18 GMT
211
221
  Etag:
212
- - ! '"-648838959"'
213
- Server:
214
- - nginx/1.4.7
222
+ - '"-606603306"'
215
223
  X-Powered-By:
216
224
  - Express
225
+ X-Ratelimit-Bucket:
226
+ - bearer
227
+ X-Ratelimit-Limit:
228
+ - '1200'
229
+ X-Ratelimit-Remaining:
230
+ - '1132'
231
+ X-Ratelimit-Reset:
232
+ - '1443289062'
217
233
  Content-Length:
218
234
  - '14647'
219
235
  Connection:
220
236
  - keep-alive
221
237
  body:
222
- encoding: US-ASCII
223
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:12.512Z","credentials":{"district_username":"robertl13","district_password":"moo2aoLilei"},"district":"4fd43cc56d11340000000005","dob":"1/16/2004","ell_status":"N","email":"l_robert@example.com","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.753Z","location":{"zip":"11103"},"name":{"first":"Robert","middle":"G","last":"Luettgen"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"119991513","state_id":"402728823","student_number":"119991513","id":"530e5960049e75a9262cff3e"},"uri":"/v1.1/students/530e5960049e75a9262cff3e"},{"data":{"created":"2014-02-26T21:15:13.798Z","credentials":{"district_username":"ericl17","district_password":"jie3huph7Oc"},"district":"4fd43cc56d11340000000005","dob":"5/23/2004","ell_status":"Y","email":"eric.l@example.org","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.354Z","location":{"zip":"11419"},"name":{"first":"Eric","middle":"E","last":"Lindgren"},"race":"Black
238
+ encoding: UTF-8
239
+ string: '{"data":[{"data":{"created":"2014-02-26T21:15:12.512Z","credentials":{"district_username":"robertl13","district_password":"moo2aoLilei"},"district":"4fd43cc56d11340000000005","dob":"1/16/2004","ell_status":"N","email":"l_robert@example.com","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.753Z","location":{"zip":"11103"},"name":{"first":"Robert","middle":"G","last":"Luettgen"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"119991513","state_id":"402728823","student_number":"119991513","id":"530e5960049e75a9262cff3e"},"uri":"/v1.1/students/530e5960049e75a9262cff3e"},{"data":{"created":"2014-02-26T21:15:13.798Z","credentials":{"district_username":"ericl17","district_password":"jie3huph7Oc"},"district":"4fd43cc56d11340000000005","dob":"5/23/2004","ell_status":"Y","email":"eric.l@example.org","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.354Z","location":{"zip":"11419"},"name":{"first":"Eric","middle":"E","last":"Lindgren"},"race":"Black
224
240
  or African American","school":"530e595026403103360ff9fe","sis_id":"263559217","state_id":"723046682","student_number":"263559217","id":"530e5961049e75a9262d0067"},"uri":"/v1.1/students/530e5961049e75a9262d0067"},{"data":{"created":"2014-02-26T21:15:14.041Z","credentials":{"district_username":"ethans60","district_password":"iv5ooga4Ie"},"district":"4fd43cc56d11340000000005","dob":"10/19/2004","ell_status":"N","email":"s_ethan@example.com","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.470Z","location":{"zip":"10465"},"name":{"first":"Ethan","middle":"S","last":"Stokes"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"281770560","state_id":"424914041","student_number":"281770560","id":"530e5962049e75a9262d00a2"},"uri":"/v1.1/students/530e5962049e75a9262d00a2"},{"data":{"created":"2014-02-26T21:15:14.082Z","credentials":{"district_username":"margaretk42","district_password":"hem6rie4Xa"},"district":"4fd43cc56d11340000000005","dob":"6/2/2004","ell_status":"Y","email":"margaret_k@example.net","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.501Z","location":{"zip":"11103"},"name":{"first":"Margaret","middle":"W","last":"Klocko"},"race":"Black
225
241
  or African American","school":"530e595026403103360ff9fe","sis_id":"284028642","state_id":"373519047","student_number":"284028642","id":"530e5962049e75a9262d00b0"},"uri":"/v1.1/students/530e5962049e75a9262d00b0"},{"data":{"created":"2014-02-26T21:15:14.387Z","credentials":{"district_username":"ruthb55","district_password":"Ves3doom6oh"},"district":"4fd43cc56d11340000000005","dob":"12/22/2004","ell_status":"N","email":"b.ruth@example.com","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.645Z","location":{"zip":"11217"},"name":{"first":"Ruth","middle":"S","last":"Batz"},"race":"Two
226
242
  or More Races","school":"530e595026403103360ff9fe","sis_id":"316354855","state_id":"792742484","student_number":"316354855","id":"530e5962049e75a9262d00f0"},"uri":"/v1.1/students/530e5962049e75a9262d00f0"},{"data":{"created":"2014-02-26T21:15:14.546Z","credentials":{"district_username":"evelyns17","district_password":"Ooph5eof"},"district":"4fd43cc56d11340000000005","dob":"6/24/2004","ell_status":"N","email":"evelyn_s@example.org","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.728Z","location":{"zip":"10010"},"name":{"first":"Evelyn","middle":"E","last":"Schmidt"},"race":"Two
@@ -246,7 +262,7 @@ http_interactions:
246
262
  string: ''
247
263
  headers:
248
264
  Accept:
249
- - ! '*/*; q=0.5, application/xml'
265
+ - "*/*; q=0.5, application/xml"
250
266
  Accept-Encoding:
251
267
  - gzip, deflate
252
268
  Authorization:
@@ -263,24 +279,30 @@ http_interactions:
263
279
  Access-Control-Allow-Methods:
264
280
  - GET,PATCH,POST,DELETE
265
281
  Access-Control-Allow-Origin:
266
- - ! '*'
282
+ - "*"
267
283
  Content-Type:
268
284
  - application/json; charset=utf-8
269
285
  Date:
270
- - Sat, 13 Sep 2014 00:07:39 GMT
286
+ - Sat, 26 Sep 2015 17:37:18 GMT
271
287
  Etag:
272
- - ! '"-648838959"'
273
- Server:
274
- - nginx/1.4.7
288
+ - '"-606603306"'
275
289
  X-Powered-By:
276
290
  - Express
291
+ X-Ratelimit-Bucket:
292
+ - bearer
293
+ X-Ratelimit-Limit:
294
+ - '1200'
295
+ X-Ratelimit-Remaining:
296
+ - '1131'
297
+ X-Ratelimit-Reset:
298
+ - '1443289062'
277
299
  Content-Length:
278
300
  - '14647'
279
301
  Connection:
280
302
  - keep-alive
281
303
  body:
282
- encoding: US-ASCII
283
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:12.512Z","credentials":{"district_username":"robertl13","district_password":"moo2aoLilei"},"district":"4fd43cc56d11340000000005","dob":"1/16/2004","ell_status":"N","email":"l_robert@example.com","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.753Z","location":{"zip":"11103"},"name":{"first":"Robert","middle":"G","last":"Luettgen"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"119991513","state_id":"402728823","student_number":"119991513","id":"530e5960049e75a9262cff3e"},"uri":"/v1.1/students/530e5960049e75a9262cff3e"},{"data":{"created":"2014-02-26T21:15:13.798Z","credentials":{"district_username":"ericl17","district_password":"jie3huph7Oc"},"district":"4fd43cc56d11340000000005","dob":"5/23/2004","ell_status":"Y","email":"eric.l@example.org","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.354Z","location":{"zip":"11419"},"name":{"first":"Eric","middle":"E","last":"Lindgren"},"race":"Black
304
+ encoding: UTF-8
305
+ string: '{"data":[{"data":{"created":"2014-02-26T21:15:12.512Z","credentials":{"district_username":"robertl13","district_password":"moo2aoLilei"},"district":"4fd43cc56d11340000000005","dob":"1/16/2004","ell_status":"N","email":"l_robert@example.com","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.753Z","location":{"zip":"11103"},"name":{"first":"Robert","middle":"G","last":"Luettgen"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"119991513","state_id":"402728823","student_number":"119991513","id":"530e5960049e75a9262cff3e"},"uri":"/v1.1/students/530e5960049e75a9262cff3e"},{"data":{"created":"2014-02-26T21:15:13.798Z","credentials":{"district_username":"ericl17","district_password":"jie3huph7Oc"},"district":"4fd43cc56d11340000000005","dob":"5/23/2004","ell_status":"Y","email":"eric.l@example.org","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.354Z","location":{"zip":"11419"},"name":{"first":"Eric","middle":"E","last":"Lindgren"},"race":"Black
284
306
  or African American","school":"530e595026403103360ff9fe","sis_id":"263559217","state_id":"723046682","student_number":"263559217","id":"530e5961049e75a9262d0067"},"uri":"/v1.1/students/530e5961049e75a9262d0067"},{"data":{"created":"2014-02-26T21:15:14.041Z","credentials":{"district_username":"ethans60","district_password":"iv5ooga4Ie"},"district":"4fd43cc56d11340000000005","dob":"10/19/2004","ell_status":"N","email":"s_ethan@example.com","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.470Z","location":{"zip":"10465"},"name":{"first":"Ethan","middle":"S","last":"Stokes"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"281770560","state_id":"424914041","student_number":"281770560","id":"530e5962049e75a9262d00a2"},"uri":"/v1.1/students/530e5962049e75a9262d00a2"},{"data":{"created":"2014-02-26T21:15:14.082Z","credentials":{"district_username":"margaretk42","district_password":"hem6rie4Xa"},"district":"4fd43cc56d11340000000005","dob":"6/2/2004","ell_status":"Y","email":"margaret_k@example.net","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.501Z","location":{"zip":"11103"},"name":{"first":"Margaret","middle":"W","last":"Klocko"},"race":"Black
285
307
  or African American","school":"530e595026403103360ff9fe","sis_id":"284028642","state_id":"373519047","student_number":"284028642","id":"530e5962049e75a9262d00b0"},"uri":"/v1.1/students/530e5962049e75a9262d00b0"},{"data":{"created":"2014-02-26T21:15:14.387Z","credentials":{"district_username":"ruthb55","district_password":"Ves3doom6oh"},"district":"4fd43cc56d11340000000005","dob":"12/22/2004","ell_status":"N","email":"b.ruth@example.com","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.645Z","location":{"zip":"11217"},"name":{"first":"Ruth","middle":"S","last":"Batz"},"race":"Two
286
308
  or More Races","school":"530e595026403103360ff9fe","sis_id":"316354855","state_id":"792742484","student_number":"316354855","id":"530e5962049e75a9262d00f0"},"uri":"/v1.1/students/530e5962049e75a9262d00f0"},{"data":{"created":"2014-02-26T21:15:14.546Z","credentials":{"district_username":"evelyns17","district_password":"Ooph5eof"},"district":"4fd43cc56d11340000000005","dob":"6/24/2004","ell_status":"N","email":"evelyn_s@example.org","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.728Z","location":{"zip":"10010"},"name":{"first":"Evelyn","middle":"E","last":"Schmidt"},"race":"Two