clever-ruby 0.11.1 → 0.13.0

Sign up to get free protection for your applications and to get access to all the features.
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:50 GMT
33
- Etag:
34
- - ! '"1408105812"'
35
- Server:
36
- - nginx/1.4.7
32
+ - Sat, 26 Sep 2015 17:37:43 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
+ - '1198'
41
+ X-Ratelimit-Reset:
42
+ - '1443289122'
39
43
  Content-Length:
40
44
  - '1764'
41
45
  Connection:
42
46
  - keep-alive
43
47
  body:
44
- encoding: US-ASCII
45
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:14:56.662Z","district":"4fd43cc56d11340000000005","high_grade":"12","last_modified":"2014-02-26T21:14:56.665Z","location":{"address":"350
48
+ encoding: UTF-8
49
+ string: '{"data":[{"data":{"created":"2014-02-26T21:14:56.662Z","district":"4fd43cc56d11340000000005","high_grade":"12","last_modified":"2014-02-26T21:14:56.665Z","location":{"address":"350
46
50
  5th Avenue","city":"New York","state":"NY","zip":"10001"},"low_grade":"9","name":"Clever
47
51
  High School","nces_id":"360008000000","phone":"(212) 555-1212","principal":{"name":"Theodora
48
52
  Khan","email":"tdkhan@mailinator.com"},"school_number":"02M800","sis_id":"02M800","state_id":"712345","id":"530e595026403103360ff9fd"},"uri":"/v1.1/schools/530e595026403103360ff9fd"},{"data":{"created":"2014-02-26T21:14:56.668Z","district":"4fd43cc56d11340000000005","high_grade":"5","last_modified":"2014-02-26T21:14:56.670Z","location":{"address":"110
@@ -62,7 +66,7 @@ http_interactions:
62
66
  string: ''
63
67
  headers:
64
68
  Accept:
65
- - ! '*/*; q=0.5, application/xml'
69
+ - "*/*; q=0.5, application/xml"
66
70
  Accept-Encoding:
67
71
  - gzip, deflate
68
72
  Authorization:
@@ -79,22 +83,28 @@ http_interactions:
79
83
  Access-Control-Allow-Methods:
80
84
  - GET,PATCH,POST,DELETE
81
85
  Access-Control-Allow-Origin:
82
- - ! '*'
86
+ - "*"
83
87
  Content-Type:
84
88
  - application/json; charset=utf-8
85
89
  Date:
86
- - Sat, 13 Sep 2014 00:07:50 GMT
87
- Server:
88
- - nginx/1.4.7
90
+ - Sat, 26 Sep 2015 17:37:43 GMT
89
91
  X-Powered-By:
90
92
  - Express
93
+ X-Ratelimit-Bucket:
94
+ - bearer
95
+ X-Ratelimit-Limit:
96
+ - '1200'
97
+ X-Ratelimit-Remaining:
98
+ - '1197'
99
+ X-Ratelimit-Reset:
100
+ - '1443289122'
91
101
  Content-Length:
92
102
  - '932'
93
103
  Connection:
94
104
  - keep-alive
95
105
  body:
96
- encoding: US-ASCII
97
- string: ! '{"data":{"created":"2014-02-26T21:14:56.662Z","district":"4fd43cc56d11340000000005","high_grade":"12","last_modified":"2014-02-26T21:14:56.665Z","location":{"address":"350
106
+ encoding: UTF-8
107
+ string: '{"data":{"created":"2014-02-26T21:14:56.662Z","district":"4fd43cc56d11340000000005","high_grade":"12","last_modified":"2014-02-26T21:14:56.665Z","location":{"address":"350
98
108
  5th Avenue","city":"New York","state":"NY","zip":"10001"},"low_grade":"9","name":"Clever
99
109
  High School","nces_id":"360008000000","phone":"(212) 555-1212","principal":{"name":"Theodora
100
110
  Khan","email":"tdkhan@mailinator.com"},"school_number":"02M800","sis_id":"02M800","state_id":"712345","id":"530e595026403103360ff9fd"},"links":[{"rel":"self","uri":"/v1.1/schools/530e595026403103360ff9fd"},{"rel":"district","uri":"/v1.1/schools/530e595026403103360ff9fd/district"},{"rel":"teachers","uri":"/v1.1/schools/530e595026403103360ff9fd/teachers"},{"rel":"students","uri":"/v1.1/schools/530e595026403103360ff9fd/students"},{"rel":"sections","uri":"/v1.1/schools/530e595026403103360ff9fd/sections"},{"rel":"events","uri":"/v1.1/schools/530e595026403103360ff9fd/events"}]}'
@@ -108,7 +118,7 @@ http_interactions:
108
118
  string: ''
109
119
  headers:
110
120
  Accept:
111
- - ! '*/*; q=0.5, application/xml'
121
+ - "*/*; q=0.5, application/xml"
112
122
  Accept-Encoding:
113
123
  - gzip, deflate
114
124
  Authorization:
@@ -125,24 +135,30 @@ http_interactions:
125
135
  Access-Control-Allow-Methods:
126
136
  - GET,PATCH,POST,DELETE
127
137
  Access-Control-Allow-Origin:
128
- - ! '*'
138
+ - "*"
129
139
  Content-Type:
130
140
  - application/json; charset=utf-8
131
141
  Date:
132
- - Sat, 13 Sep 2014 00:07:51 GMT
142
+ - Sat, 26 Sep 2015 17:37:44 GMT
133
143
  Etag:
134
- - ! '"2001655923"'
135
- Server:
136
- - nginx/1.4.7
144
+ - '"-626288943"'
137
145
  X-Powered-By:
138
146
  - Express
147
+ X-Ratelimit-Bucket:
148
+ - bearer
149
+ X-Ratelimit-Limit:
150
+ - '1200'
151
+ X-Ratelimit-Remaining:
152
+ - '1196'
153
+ X-Ratelimit-Reset:
154
+ - '1443289122'
139
155
  Content-Length:
140
156
  - '121020'
141
157
  Connection:
142
158
  - keep-alive
143
159
  body:
144
- encoding: US-ASCII
145
- string: ! '{"data":[{"data":{"course_name":"Group Guidance","course_number":"101","created":"2014-02-26T21:15:37.927Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-08-11T18:35:06.714Z","name":"Group
160
+ encoding: UTF-8
161
+ string: '{"data":[{"data":{"course_name":"Group Guidance","course_number":"101","created":"2014-02-26T21:15:37.927Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-08-11T18:35:06.714Z","name":"Group
146
162
  Guidance - 101 - B. Greene (Section 1)","period":"0","school":"530e595026403103360ff9fd","sis_id":"581","students":["530e5961049e75a9262cffd9","530e5961049e75a9262d0010","530e5961049e75a9262d004e","530e5961049e75a9262d0080","530e5962049e75a9262d0156","530e5963049e75a9262d01b7","530e5963049e75a9262d0253","530e5966049e75a9262d0418","530e5966049e75a9262d0475","530e5966049e75a9262d04b4","530e5967049e75a9262d0503","530e5968049e75a9262d05e9","530e5968049e75a9262d061f","530e5968049e75a9262d0632","530e5968049e75a9262d0647"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c11","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e5979049e75a9262d0af2"},"uri":"/v1.1/sections/530e5979049e75a9262d0af2"},{"data":{"course_name":"Group
147
163
  Guidance","course_number":"102","created":"2014-02-26T21:15:37.934Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:37.936Z","name":"Group
148
164
  Guidance - 102 - T. Vaux (Section 2)","period":"0","school":"530e595026403103360ff9fd","sis_id":"582","students":["530e5960049e75a9262cff4f","530e5960049e75a9262cff95","530e5961049e75a9262cffe0","530e5961049e75a9262d0027","530e5961049e75a9262d008d","530e5963049e75a9262d0180","530e5964049e75a9262d0300","530e5964049e75a9262d0302","530e5964049e75a9262d0304","530e5965049e75a9262d039e","530e5965049e75a9262d03b6","530e5965049e75a9262d03e8","530e5966049e75a9262d040c","530e5966049e75a9262d04cc","530e5967049e75a9262d05c0","530e5968049e75a9262d062f"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c12","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e5979049e75a9262d0af3"},"uri":"/v1.1/sections/530e5979049e75a9262d0af3"},{"data":{"course_name":"Group
@@ -411,7 +427,7 @@ http_interactions:
411
427
  string: ''
412
428
  headers:
413
429
  Accept:
414
- - ! '*/*; q=0.5, application/xml'
430
+ - "*/*; q=0.5, application/xml"
415
431
  Accept-Encoding:
416
432
  - gzip, deflate
417
433
  Authorization:
@@ -428,24 +444,30 @@ http_interactions:
428
444
  Access-Control-Allow-Methods:
429
445
  - GET,PATCH,POST,DELETE
430
446
  Access-Control-Allow-Origin:
431
- - ! '*'
447
+ - "*"
432
448
  Content-Type:
433
449
  - application/json; charset=utf-8
434
450
  Date:
435
- - Sat, 13 Sep 2014 00:07:51 GMT
451
+ - Sat, 26 Sep 2015 17:37:44 GMT
436
452
  Etag:
437
- - ! '"850835071"'
438
- Server:
439
- - nginx/1.4.7
453
+ - '"-626288943"'
440
454
  X-Powered-By:
441
455
  - Express
456
+ X-Ratelimit-Bucket:
457
+ - bearer
458
+ X-Ratelimit-Limit:
459
+ - '1200'
460
+ X-Ratelimit-Remaining:
461
+ - '1195'
462
+ X-Ratelimit-Reset:
463
+ - '1443289122'
442
464
  Content-Length:
443
465
  - '100450'
444
466
  Connection:
445
467
  - keep-alive
446
468
  body:
447
- encoding: US-ASCII
448
- string: ! '{"data":[{"data":{"course_name":"Class 902, Homeroom","course_number":"902","created":"2014-02-26T21:15:38.627Z","district":"4fd43cc56d11340000000005","grade":"9","last_modified":"2014-02-26T21:15:38.631Z","name":"Class
469
+ encoding: UTF-8
470
+ string: '{"data":[{"data":{"course_name":"Class 902, Homeroom","course_number":"902","created":"2014-02-26T21:15:38.627Z","district":"4fd43cc56d11340000000005","grade":"9","last_modified":"2014-02-26T21:15:38.631Z","name":"Class
449
471
  902, Homeroom - 902 - C. Block (Section 2)","period":"0","school":"530e595026403103360ff9fd","sis_id":"745","students":["530e5960049e75a9262cff23","530e5960049e75a9262cff27","530e5960049e75a9262cff58","530e5960049e75a9262cff7a","530e5961049e75a9262d000c","530e5961049e75a9262d007d","530e5961049e75a9262d0085","530e5962049e75a9262d00e8","530e5962049e75a9262d00ff","530e5963049e75a9262d019f","530e5963049e75a9262d01a2","530e5963049e75a9262d01fb","530e5963049e75a9262d0203","530e5963049e75a9262d021b","530e5963049e75a9262d0229","530e5963049e75a9262d022f","530e5964049e75a9262d0276","530e5964049e75a9262d0299","530e5964049e75a9262d02c3","530e5965049e75a9262d038e","530e5965049e75a9262d038f","530e5965049e75a9262d03a2","530e5965049e75a9262d03a5","530e5966049e75a9262d03f8","530e5966049e75a9262d0468","530e5966049e75a9262d046c","530e5966049e75a9262d04a5","530e5967049e75a9262d052d","530e5967049e75a9262d0575","530e5967049e75a9262d05be","530e5968049e75a9262d05d1","530e5968049e75a9262d061c","530e5968049e75a9262d0646"],"subject":"homeroom/advisory","teacher":"50c89ff19ed67a1d3f1f50ca","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b95"},"uri":"/v1.1/sections/530e597a049e75a9262d0b95"},{"data":{"course_name":"Class
450
472
  903, Homeroom","course_number":"903","created":"2014-02-26T21:15:38.632Z","district":"4fd43cc56d11340000000005","grade":"9","last_modified":"2014-02-26T21:15:38.633Z","name":"Class
451
473
  903, Homeroom - 903 - J. Mertz (Section 3)","period":"0","school":"530e595026403103360ff9fd","sis_id":"746","students":["530e5960049e75a9262cff1e","530e5960049e75a9262cff42","530e5961049e75a9262cffcd","530e5961049e75a9262d001a","530e5961049e75a9262d0048","530e5961049e75a9262d005d","530e5961049e75a9262d0070","530e5961049e75a9262d007f","530e5962049e75a9262d00ba","530e5962049e75a9262d0127","530e5963049e75a9262d0181","530e5963049e75a9262d01a4","530e5963049e75a9262d0211","530e5963049e75a9262d0231","530e5964049e75a9262d02b6","530e5964049e75a9262d02f3","530e5964049e75a9262d0309","530e5965049e75a9262d0325","530e5965049e75a9262d033c","530e5965049e75a9262d033f","530e5966049e75a9262d03fc","530e5966049e75a9262d045e","530e5966049e75a9262d0471","530e5966049e75a9262d0496","530e5966049e75a9262d04d7","530e5967049e75a9262d0501","530e5967049e75a9262d057e","530e5967049e75a9262d0590","530e5967049e75a9262d05a8","530e5967049e75a9262d05b7","530e5968049e75a9262d05e2","530e5968049e75a9262d0614","530e5968049e75a9262d063a","530e5968049e75a9262d0640"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112bf5","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b96"},"uri":"/v1.1/sections/530e597a049e75a9262d0b96"},{"data":{"course_name":"Geometry","course_number":"201","created":"2014-02-26T21:15:38.648Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:38.650Z","name":"Geometry
@@ -655,8 +677,8 @@ http_interactions:
655
677
  Connection:
656
678
  - keep-alive
657
679
  body:
658
- encoding: US-ASCII
659
- string: ! '{"data":[{"data":{"course_name":"Group Guidance","course_number":"101","created":"2014-02-26T21:15:37.927Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-08-11T18:35:06.714Z","name":"Group
680
+ encoding: UTF-8
681
+ string: '{"data":[{"data":{"course_name":"Group Guidance","course_number":"101","created":"2014-02-26T21:15:37.927Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-08-11T18:35:06.714Z","name":"Group
660
682
  Guidance - 101 - B. Greene (Section 1)","period":"0","school":"530e595026403103360ff9fd","sis_id":"581","students":["530e5961049e75a9262cffd9","530e5961049e75a9262d0010","530e5961049e75a9262d004e","530e5961049e75a9262d0080","530e5962049e75a9262d0156","530e5963049e75a9262d01b7","530e5963049e75a9262d0253","530e5966049e75a9262d0418","530e5966049e75a9262d0475","530e5966049e75a9262d04b4","530e5967049e75a9262d0503","530e5968049e75a9262d05e9","530e5968049e75a9262d061f","530e5968049e75a9262d0632","530e5968049e75a9262d0647"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c11","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e5979049e75a9262d0af2"},"uri":"/v1.1/sections/530e5979049e75a9262d0af2"},{"data":{"course_name":"Group
661
683
  Guidance","course_number":"102","created":"2014-02-26T21:15:37.934Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:37.936Z","name":"Group
662
684
  Guidance - 102 - T. Vaux (Section 2)","period":"0","school":"530e595026403103360ff9fd","sis_id":"582","students":["530e5960049e75a9262cff4f","530e5960049e75a9262cff95","530e5961049e75a9262cffe0","530e5961049e75a9262d0027","530e5961049e75a9262d008d","530e5963049e75a9262d0180","530e5964049e75a9262d0300","530e5964049e75a9262d0302","530e5964049e75a9262d0304","530e5965049e75a9262d039e","530e5965049e75a9262d03b6","530e5965049e75a9262d03e8","530e5966049e75a9262d040c","530e5966049e75a9262d04cc","530e5967049e75a9262d05c0","530e5968049e75a9262d062f"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c12","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e5979049e75a9262d0af3"},"uri":"/v1.1/sections/530e5979049e75a9262d0af3"},{"data":{"course_name":"Group
@@ -958,8 +980,8 @@ http_interactions:
958
980
  Connection:
959
981
  - keep-alive
960
982
  body:
961
- encoding: US-ASCII
962
- string: ! '{"data":[{"data":{"course_name":"Class 902, Homeroom","course_number":"902","created":"2014-02-26T21:15:38.627Z","district":"4fd43cc56d11340000000005","grade":"9","last_modified":"2014-02-26T21:15:38.631Z","name":"Class
983
+ encoding: UTF-8
984
+ string: '{"data":[{"data":{"course_name":"Class 902, Homeroom","course_number":"902","created":"2014-02-26T21:15:38.627Z","district":"4fd43cc56d11340000000005","grade":"9","last_modified":"2014-02-26T21:15:38.631Z","name":"Class
963
985
  902, Homeroom - 902 - C. Block (Section 2)","period":"0","school":"530e595026403103360ff9fd","sis_id":"745","students":["530e5960049e75a9262cff23","530e5960049e75a9262cff27","530e5960049e75a9262cff58","530e5960049e75a9262cff7a","530e5961049e75a9262d000c","530e5961049e75a9262d007d","530e5961049e75a9262d0085","530e5962049e75a9262d00e8","530e5962049e75a9262d00ff","530e5963049e75a9262d019f","530e5963049e75a9262d01a2","530e5963049e75a9262d01fb","530e5963049e75a9262d0203","530e5963049e75a9262d021b","530e5963049e75a9262d0229","530e5963049e75a9262d022f","530e5964049e75a9262d0276","530e5964049e75a9262d0299","530e5964049e75a9262d02c3","530e5965049e75a9262d038e","530e5965049e75a9262d038f","530e5965049e75a9262d03a2","530e5965049e75a9262d03a5","530e5966049e75a9262d03f8","530e5966049e75a9262d0468","530e5966049e75a9262d046c","530e5966049e75a9262d04a5","530e5967049e75a9262d052d","530e5967049e75a9262d0575","530e5967049e75a9262d05be","530e5968049e75a9262d05d1","530e5968049e75a9262d061c","530e5968049e75a9262d0646"],"subject":"homeroom/advisory","teacher":"50c89ff19ed67a1d3f1f50ca","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b95"},"uri":"/v1.1/sections/530e597a049e75a9262d0b95"},{"data":{"course_name":"Class
964
986
  903, Homeroom","course_number":"903","created":"2014-02-26T21:15:38.632Z","district":"4fd43cc56d11340000000005","grade":"9","last_modified":"2014-02-26T21:15:38.633Z","name":"Class
965
987
  903, Homeroom - 903 - J. Mertz (Section 3)","period":"0","school":"530e595026403103360ff9fd","sis_id":"746","students":["530e5960049e75a9262cff1e","530e5960049e75a9262cff42","530e5961049e75a9262cffcd","530e5961049e75a9262d001a","530e5961049e75a9262d0048","530e5961049e75a9262d005d","530e5961049e75a9262d0070","530e5961049e75a9262d007f","530e5962049e75a9262d00ba","530e5962049e75a9262d0127","530e5963049e75a9262d0181","530e5963049e75a9262d01a4","530e5963049e75a9262d0211","530e5963049e75a9262d0231","530e5964049e75a9262d02b6","530e5964049e75a9262d02f3","530e5964049e75a9262d0309","530e5965049e75a9262d0325","530e5965049e75a9262d033c","530e5965049e75a9262d033f","530e5966049e75a9262d03fc","530e5966049e75a9262d045e","530e5966049e75a9262d0471","530e5966049e75a9262d0496","530e5966049e75a9262d04d7","530e5967049e75a9262d0501","530e5967049e75a9262d057e","530e5967049e75a9262d0590","530e5967049e75a9262d05a8","530e5967049e75a9262d05b7","530e5968049e75a9262d05e2","530e5968049e75a9262d0614","530e5968049e75a9262d063a","530e5968049e75a9262d0640"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112bf5","term":{"name":"Y1","start_date":"2012-08-01T00:00:00.000Z","end_date":"2013-06-01T00:00:00.000Z"},"id":"530e597a049e75a9262d0b96"},"uri":"/v1.1/sections/530e597a049e75a9262d0b96"},{"data":{"course_name":"Geometry","course_number":"201","created":"2014-02-26T21:15:38.648Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:38.650Z","name":"Geometry
@@ -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,7 +25,7 @@ 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:
@@ -36,13 +36,21 @@ http_interactions:
36
36
  - nginx/1.4.7
37
37
  X-Powered-By:
38
38
  - Express
39
+ X-Ratelimit-Bucket:
40
+ - bearer
41
+ X-Ratelimit-Limit:
42
+ - '1200'
43
+ X-Ratelimit-Remaining:
44
+ - '1190'
45
+ X-Ratelimit-Reset:
46
+ - '1443289122'
39
47
  Content-Length:
40
48
  - '1764'
41
49
  Connection:
42
50
  - keep-alive
43
51
  body:
44
- encoding: US-ASCII
45
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:14:56.662Z","district":"4fd43cc56d11340000000005","high_grade":"12","last_modified":"2014-02-26T21:14:56.665Z","location":{"address":"350
52
+ encoding: UTF-8
53
+ string: '{"data":[{"data":{"created":"2014-02-26T21:14:56.662Z","district":"4fd43cc56d11340000000005","high_grade":"12","last_modified":"2014-02-26T21:14:56.665Z","location":{"address":"350
46
54
  5th Avenue","city":"New York","state":"NY","zip":"10001"},"low_grade":"9","name":"Clever
47
55
  High School","nces_id":"360008000000","phone":"(212) 555-1212","principal":{"name":"Theodora
48
56
  Khan","email":"tdkhan@mailinator.com"},"school_number":"02M800","sis_id":"02M800","state_id":"712345","id":"530e595026403103360ff9fd"},"uri":"/v1.1/schools/530e595026403103360ff9fd"},{"data":{"created":"2014-02-26T21:14:56.668Z","district":"4fd43cc56d11340000000005","high_grade":"5","last_modified":"2014-02-26T21:14:56.670Z","location":{"address":"110
@@ -62,7 +70,7 @@ http_interactions:
62
70
  string: ''
63
71
  headers:
64
72
  Accept:
65
- - ! '*/*; q=0.5, application/xml'
73
+ - "*/*; q=0.5, application/xml"
66
74
  Accept-Encoding:
67
75
  - gzip, deflate
68
76
  Authorization:
@@ -93,8 +101,8 @@ http_interactions:
93
101
  Connection:
94
102
  - keep-alive
95
103
  body:
96
- encoding: US-ASCII
97
- string: ! '{"data":{"created":"2014-02-26T21:14:56.662Z","district":"4fd43cc56d11340000000005","high_grade":"12","last_modified":"2014-02-26T21:14:56.665Z","location":{"address":"350
104
+ encoding: UTF-8
105
+ string: '{"data":{"created":"2014-02-26T21:14:56.662Z","district":"4fd43cc56d11340000000005","high_grade":"12","last_modified":"2014-02-26T21:14:56.665Z","location":{"address":"350
98
106
  5th Avenue","city":"New York","state":"NY","zip":"10001"},"low_grade":"9","name":"Clever
99
107
  High School","nces_id":"360008000000","phone":"(212) 555-1212","principal":{"name":"Theodora
100
108
  Khan","email":"tdkhan@mailinator.com"},"school_number":"02M800","sis_id":"02M800","state_id":"712345","id":"530e595026403103360ff9fd"},"links":[{"rel":"self","uri":"/v1.1/schools/530e595026403103360ff9fd"},{"rel":"district","uri":"/v1.1/schools/530e595026403103360ff9fd/district"},{"rel":"teachers","uri":"/v1.1/schools/530e595026403103360ff9fd/teachers"},{"rel":"students","uri":"/v1.1/schools/530e595026403103360ff9fd/students"},{"rel":"sections","uri":"/v1.1/schools/530e595026403103360ff9fd/sections"},{"rel":"events","uri":"/v1.1/schools/530e595026403103360ff9fd/events"}]}'
@@ -108,7 +116,7 @@ http_interactions:
108
116
  string: ''
109
117
  headers:
110
118
  Accept:
111
- - ! '*/*; q=0.5, application/xml'
119
+ - "*/*; q=0.5, application/xml"
112
120
  Accept-Encoding:
113
121
  - gzip, deflate
114
122
  Authorization:
@@ -141,8 +149,8 @@ http_interactions:
141
149
  Connection:
142
150
  - keep-alive
143
151
  body:
144
- encoding: US-ASCII
145
- string: ! '{"data":[{"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
152
+ encoding: UTF-8
153
+ string: '{"data":[{"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
146
154
  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.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
147
155
  or African American","school":"530e595026403103360ff9fd","sis_id":"106867300","state_id":"863433981","student_number":"106867300","id":"530e5960049e75a9262cff21"},"uri":"/v1.1/students/530e5960049e75a9262cff21"},{"data":{"created":"2014-02-26T21:15:12.391Z","credentials":{"district_username":"juliar95","district_password":"bohTunaequ1oh"},"district":"4fd43cc56d11340000000005","dob":"1/29/1998","ell_status":"Y","email":"julia.r@example.org","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.679Z","location":{"zip":"11239"},"name":{"first":"Julia","middle":"B","last":"Runolfsdottir"},"race":"Black
148
156
  or African American","school":"530e595026403103360ff9fd","sis_id":"108028995","state_id":"339598426","student_number":"108028995","id":"530e5960049e75a9262cff23"},"uri":"/v1.1/students/530e5960049e75a9262cff23"},{"data":{"created":"2014-02-26T21:15:12.422Z","credentials":{"district_username":"yvettec36","district_password":"ya5piX9Oh"},"district":"4fd43cc56d11340000000005","dob":"5/18/1997","ell_status":"N","email":"c_yvette@example.org","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.694Z","location":{"zip":"11385"},"name":{"first":"Yvette","middle":"W","last":"Cummings"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"112258136","state_id":"373187439","student_number":"112258136","id":"530e5960049e75a9262cff26"},"uri":"/v1.1/students/530e5960049e75a9262cff26"},{"data":{"created":"2014-02-26T21:15:12.430Z","credentials":{"district_username":"geraldp09","district_password":"ieg6piLoc"},"district":"4fd43cc56d11340000000005","dob":"8/27/1998","ell_status":"Y","email":"p.gerald@example.com","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.698Z","location":{"zip":"11691"},"name":{"first":"Gerald","middle":"J","last":"Parisian"},"race":"Two
@@ -218,7 +226,7 @@ http_interactions:
218
226
  string: ''
219
227
  headers:
220
228
  Accept:
221
- - ! '*/*; q=0.5, application/xml'
229
+ - "*/*; q=0.5, application/xml"
222
230
  Accept-Encoding:
223
231
  - gzip, deflate
224
232
  Authorization:
@@ -235,24 +243,28 @@ http_interactions:
235
243
  Access-Control-Allow-Methods:
236
244
  - GET,PATCH,POST,DELETE
237
245
  Access-Control-Allow-Origin:
238
- - ! '*'
246
+ - "*"
239
247
  Content-Type:
240
248
  - application/json; charset=utf-8
241
249
  Date:
242
- - Sat, 13 Sep 2014 00:07:40 GMT
243
- Etag:
244
- - ! '"249757394"'
245
- Server:
246
- - nginx/1.4.7
250
+ - Sat, 26 Sep 2015 17:37:46 GMT
247
251
  X-Powered-By:
248
252
  - Express
253
+ X-Ratelimit-Bucket:
254
+ - bearer
255
+ X-Ratelimit-Limit:
256
+ - '1200'
257
+ X-Ratelimit-Remaining:
258
+ - '1189'
259
+ X-Ratelimit-Reset:
260
+ - '1443289122'
249
261
  Content-Length:
250
262
  - '66346'
251
263
  Connection:
252
264
  - keep-alive
253
265
  body:
254
- encoding: US-ASCII
255
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:14.440Z","credentials":{"district_username":"josepht59","district_password":"aije9Go0"},"district":"4fd43cc56d11340000000005","dob":"5/17/1997","ell_status":"N","email":"t_joseph@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.678Z","location":{"zip":"11695"},"name":{"first":"Joseph","middle":"B","last":"Thiel"},"race":"Black
266
+ encoding: UTF-8
267
+ string: '{"data":[{"data":{"created":"2014-02-26T21:15:14.440Z","credentials":{"district_username":"josepht59","district_password":"aije9Go0"},"district":"4fd43cc56d11340000000005","dob":"5/17/1997","ell_status":"N","email":"t_joseph@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.678Z","location":{"zip":"11695"},"name":{"first":"Joseph","middle":"B","last":"Thiel"},"race":"Black
256
268
  or African American","school":"530e595026403103360ff9fd","sis_id":"320437259","state_id":"183500753","student_number":"320437259","id":"530e5962049e75a9262d0102"},"uri":"/v1.1/students/530e5962049e75a9262d0102"},{"data":{"created":"2014-02-26T21:15:14.454Z","credentials":{"district_username":"nancyb33","district_password":"quiVu5aen"},"district":"4fd43cc56d11340000000005","dob":"9/26/1996","ell_status":"N","email":"b_nancy@example.org","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.684Z","location":{"zip":"10021"},"name":{"first":"Nancy","middle":"P","last":"Borer"},"race":"Two
257
269
  or More Races","school":"530e595026403103360ff9fd","sis_id":"321540033","state_id":"170613526","student_number":"321540033","id":"530e5962049e75a9262d0106"},"uri":"/v1.1/students/530e5962049e75a9262d0106"},{"data":{"created":"2014-02-26T21:15:14.514Z","credentials":{"district_username":"jeromea21","district_password":"idai0Xupoo"},"district":"4fd43cc56d11340000000005","dob":"1/6/1996","ell_status":"N","email":"a.jerome@example.org","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.717Z","location":{"zip":"10039"},"name":{"first":"Jerome","middle":"C","last":"Ankunding"},"race":"Black
258
270
  or African American","school":"530e595026403103360ff9fd","sis_id":"329898621","state_id":"258035113","student_number":"329898621","id":"530e5962049e75a9262d010e"},"uri":"/v1.1/students/530e5962049e75a9262d010e"},{"data":{"created":"2014-02-26T21:15:14.526Z","credentials":{"district_username":"judithl34","district_password":"eiwu9Quupah"},"district":"4fd43cc56d11340000000005","dob":"3/27/1998","ell_status":"N","email":"judith_l@example.net","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.722Z","location":{"zip":"11236"},"name":{"first":"Judith","middle":"K","last":"Lindgren"},"race":"Two
@@ -345,24 +357,30 @@ http_interactions:
345
357
  Access-Control-Allow-Methods:
346
358
  - GET,PATCH,POST,DELETE
347
359
  Access-Control-Allow-Origin:
348
- - ! '*'
360
+ - "*"
349
361
  Content-Type:
350
362
  - application/json; charset=utf-8
351
363
  Date:
352
- - Sat, 13 Sep 2014 00:07:40 GMT
364
+ - Sat, 26 Sep 2015 17:37:47 GMT
353
365
  Etag:
354
- - ! '"-1201581989"'
355
- Server:
356
- - nginx/1.4.7
366
+ - '"-1982196704"'
357
367
  X-Powered-By:
358
368
  - Express
369
+ X-Ratelimit-Bucket:
370
+ - bearer
371
+ X-Ratelimit-Limit:
372
+ - '1200'
373
+ X-Ratelimit-Remaining:
374
+ - '1188'
375
+ X-Ratelimit-Reset:
376
+ - '1443289122'
359
377
  Content-Length:
360
378
  - '66430'
361
379
  Connection:
362
380
  - keep-alive
363
381
  body:
364
- encoding: US-ASCII
365
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:16.632Z","credentials":{"district_username":"kimberlyk62","district_password":"nie6Ieb1"},"district":"4fd43cc56d11340000000005","dob":"12/28/1996","ell_status":"N","email":"k.kimberly@example.com","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.670Z","location":{"zip":"11691"},"name":{"first":"Kimberly","middle":"R","last":"Kutch"},"race":"Black
382
+ encoding: UTF-8
383
+ string: '{"data":[{"data":{"created":"2014-02-26T21:15:16.632Z","credentials":{"district_username":"kimberlyk62","district_password":"nie6Ieb1"},"district":"4fd43cc56d11340000000005","dob":"12/28/1996","ell_status":"N","email":"k.kimberly@example.com","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.670Z","location":{"zip":"11691"},"name":{"first":"Kimberly","middle":"R","last":"Kutch"},"race":"Black
366
384
  or African American","school":"530e595026403103360ff9fd","sis_id":"531248862","state_id":"879810915","student_number":"531248862","id":"530e5964049e75a9262d02d5"},"uri":"/v1.1/students/530e5964049e75a9262d02d5"},{"data":{"created":"2014-02-26T21:15:16.638Z","credentials":{"district_username":"lindac62","district_password":"ki7AhahyahF"},"district":"4fd43cc56d11340000000005","dob":"12/9/1996","ell_status":"N","email":"linda_c@example.com","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.675Z","location":{"zip":"10303"},"name":{"first":"Linda","middle":"J","last":"Christiansen"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"531293162","state_id":"138529274","student_number":"531293162","id":"530e5964049e75a9262d02d6"},"uri":"/v1.1/students/530e5964049e75a9262d02d6"},{"data":{"created":"2014-02-26T21:15:16.678Z","credentials":{"district_username":"keithw08","district_password":"ahboh2EeBeY"},"district":"4fd43cc56d11340000000005","dob":"8/22/1996","ell_status":"N","email":"w.keith@example.org","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.685Z","location":{"zip":"10309"},"name":{"first":"Keith","middle":"V","last":"Wintheiser"},"race":"Black
367
385
  or African American","school":"530e595026403103360ff9fd","sis_id":"534675808","state_id":"651155420","student_number":"534675808","id":"530e5964049e75a9262d02d9"},"uri":"/v1.1/students/530e5964049e75a9262d02d9"},{"data":{"created":"2014-02-26T21:15:16.740Z","credentials":{"district_username":"dianen73","district_password":"eel7Thohd"},"district":"4fd43cc56d11340000000005","dob":"6/16/1996","ell_status":"N","email":"n_diane@example.net","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.697Z","location":{"zip":"11691"},"name":{"first":"Diane","middle":"J","last":"Nader"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"541253373","state_id":"817987559","student_number":"541253373","id":"530e5964049e75a9262d02e7"},"uri":"/v1.1/students/530e5964049e75a9262d02e7"},{"data":{"created":"2014-02-26T21:15:16.755Z","credentials":{"district_username":"nolad22","district_password":"veL3queiNg4k"},"district":"4fd43cc56d11340000000005","dob":"8/1/1996","ell_status":"N","email":"nola_d@example.net","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.706Z","location":{"zip":"10011"},"name":{"first":"Nola","middle":"D","last":"Douglas"},"race":"Two
368
386
  or More Races","school":"530e595026403103360ff9fd","sis_id":"543793622","state_id":"634967954","student_number":"543793622","id":"530e5964049e75a9262d02eb"},"uri":"/v1.1/students/530e5964049e75a9262d02eb"},{"data":{"created":"2014-02-26T21:15:16.771Z","credentials":{"district_username":"weng93","district_password":"kiephee6Va"},"district":"4fd43cc56d11340000000005","dob":"2/11/1995","ell_status":"N","email":"wen_g@example.com","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.710Z","location":{"zip":"10020"},"name":{"first":"Wen","middle":"T","last":"Greenholt"},"race":"Two
@@ -456,24 +474,30 @@ http_interactions:
456
474
  Access-Control-Allow-Methods:
457
475
  - GET,PATCH,POST,DELETE
458
476
  Access-Control-Allow-Origin:
459
- - ! '*'
477
+ - "*"
460
478
  Content-Type:
461
479
  - application/json; charset=utf-8
462
480
  Date:
463
- - Sat, 13 Sep 2014 00:07:41 GMT
481
+ - Sat, 26 Sep 2015 17:37:47 GMT
464
482
  Etag:
465
- - ! '"1311321495"'
466
- Server:
467
- - nginx/1.4.7
483
+ - '"-1982196704"'
468
484
  X-Powered-By:
469
485
  - Express
486
+ X-Ratelimit-Bucket:
487
+ - bearer
488
+ X-Ratelimit-Limit:
489
+ - '1200'
490
+ X-Ratelimit-Remaining:
491
+ - '1187'
492
+ X-Ratelimit-Reset:
493
+ - '1443289122'
470
494
  Content-Length:
471
495
  - '66277'
472
496
  Connection:
473
497
  - keep-alive
474
498
  body:
475
- encoding: US-ASCII
476
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:19.133Z","credentials":{"district_username":"dustyl08","district_password":"heif7ieC"},"district":"4fd43cc56d11340000000005","dob":"4/7/1995","ell_status":"N","email":"dusty.l@example.org","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.777Z","location":{"zip":"11236"},"name":{"first":"Dusty","middle":"P","last":"Littel"},"race":"American
499
+ encoding: UTF-8
500
+ string: '{"data":[{"data":{"created":"2014-02-26T21:15:19.133Z","credentials":{"district_username":"dustyl08","district_password":"heif7ieC"},"district":"4fd43cc56d11340000000005","dob":"4/7/1995","ell_status":"N","email":"dusty.l@example.org","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.777Z","location":{"zip":"11236"},"name":{"first":"Dusty","middle":"P","last":"Littel"},"race":"American
477
501
  Indian","school":"530e595026403103360ff9fd","sis_id":"790090708","state_id":"369187842","student_number":"790090708","id":"530e5967049e75a9262d04fe"},"uri":"/v1.1/students/530e5967049e75a9262d04fe"},{"data":{"created":"2014-02-26T21:15:19.140Z","credentials":{"district_username":"justinw31","district_password":"suTa7Jizoo"},"district":"4fd43cc56d11340000000005","dob":"1/21/1996","ell_status":"N","email":"justin.w@example.net","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.781Z","location":{"zip":"10466"},"name":{"first":"Justin","middle":"J","last":"Wolff"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"792235731","state_id":"444026787","student_number":"792235731","id":"530e5967049e75a9262d04ff"},"uri":"/v1.1/students/530e5967049e75a9262d04ff"},{"data":{"created":"2014-02-26T21:15:19.147Z","credentials":{"district_username":"irisk36","district_password":"OhShui8Aitae"},"district":"4fd43cc56d11340000000005","dob":"4/29/1998","ell_status":"Y","email":"iris_k@example.net","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.783Z","location":{"zip":"10019"},"name":{"first":"Iris","middle":"J","last":"Kirlin"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"792374836","state_id":"493060769","student_number":"792374836","id":"530e5967049e75a9262d0501"},"uri":"/v1.1/students/530e5967049e75a9262d0501"},{"data":{"created":"2014-02-26T21:15:19.152Z","credentials":{"district_username":"williamh73","district_password":"roosh5Oo"},"district":"4fd43cc56d11340000000005","dob":"11/5/1997","ell_status":"Y","email":"william_h@example.com","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.787Z","location":{"zip":"10027"},"name":{"first":"William","middle":"M","last":"Hintz"},"race":"Black
478
502
  or African American","school":"530e595026403103360ff9fd","sis_id":"792381473","state_id":"614809725","student_number":"792381473","id":"530e5967049e75a9262d0503"},"uri":"/v1.1/students/530e5967049e75a9262d0503"},{"data":{"created":"2014-02-26T21:15:19.178Z","credentials":{"district_username":"ambers79","district_password":"daiWei8kaif"},"district":"4fd43cc56d11340000000005","dob":"8/13/1995","ell_status":"N","email":"s_amber@example.net","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.799Z","location":{"zip":"11210"},"name":{"first":"Amber","middle":"A","last":"Schmeler"},"race":"Black
479
503
  or African American","school":"530e595026403103360ff9fd","sis_id":"796330979","state_id":"359390982","student_number":"796330979","id":"530e5967049e75a9262d050c"},"uri":"/v1.1/students/530e5967049e75a9262d050c"},{"data":{"created":"2014-02-26T21:15:19.303Z","credentials":{"district_username":"davidd92","district_password":"ahNgaht2Oon"},"district":"4fd43cc56d11340000000005","dob":"5/14/1996","ell_status":"Y","email":"d_david@example.com","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.858Z","location":{"zip":"10003"},"name":{"first":"David","middle":"M","last":"Dietrich"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"805220192","state_id":"790114527","student_number":"805220192","id":"530e5967049e75a9262d0527"},"uri":"/v1.1/students/530e5967049e75a9262d0527"},{"data":{"created":"2014-02-26T21:15:19.318Z","credentials":{"district_username":"patriciac10","district_password":"Quahph3ch"},"district":"4fd43cc56d11340000000005","dob":"5/10/1998","ell_status":"Y","email":"patricia_c@example.org","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.863Z","location":{"zip":"10030"},"name":{"first":"Patricia","middle":"B","last":"Casper"},"race":"Two
@@ -573,8 +597,8 @@ http_interactions:
573
597
  Connection:
574
598
  - keep-alive
575
599
  body:
576
- encoding: US-ASCII
577
- string: ! '{"data":[],"links":[{"rel":"self","uri":"/v1.1/schools/530e595026403103360ff9fd/students?starting_after=530e5968049e75a9262d064b"},{"rel":"prev","uri":"/v1.1/schools/530e595026403103360ff9fd/students?ending_before=530e5968049e75a9262d064b"}]}'
600
+ encoding: UTF-8
601
+ string: '{"data":[],"links":[{"rel":"self","uri":"/v1.1/schools/530e595026403103360ff9fd/students?starting_after=530e5968049e75a9262d064b"},{"rel":"prev","uri":"/v1.1/schools/530e595026403103360ff9fd/students?ending_before=530e5968049e75a9262d064b"}]}'
578
602
  http_version:
579
603
  recorded_at: Sat, 13 Sep 2014 00:07:41 GMT
580
604
  - request:
@@ -618,8 +642,8 @@ http_interactions:
618
642
  Connection:
619
643
  - keep-alive
620
644
  body:
621
- encoding: US-ASCII
622
- string: ! '{"data":[{"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
645
+ encoding: UTF-8
646
+ string: '{"data":[{"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
623
647
  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.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
624
648
  or African American","school":"530e595026403103360ff9fd","sis_id":"106867300","state_id":"863433981","student_number":"106867300","id":"530e5960049e75a9262cff21"},"uri":"/v1.1/students/530e5960049e75a9262cff21"},{"data":{"created":"2014-02-26T21:15:12.391Z","credentials":{"district_username":"juliar95","district_password":"bohTunaequ1oh"},"district":"4fd43cc56d11340000000005","dob":"1/29/1998","ell_status":"Y","email":"julia.r@example.org","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.679Z","location":{"zip":"11239"},"name":{"first":"Julia","middle":"B","last":"Runolfsdottir"},"race":"Black
625
649
  or African American","school":"530e595026403103360ff9fd","sis_id":"108028995","state_id":"339598426","student_number":"108028995","id":"530e5960049e75a9262cff23"},"uri":"/v1.1/students/530e5960049e75a9262cff23"},{"data":{"created":"2014-02-26T21:15:12.422Z","credentials":{"district_username":"yvettec36","district_password":"ya5piX9Oh"},"district":"4fd43cc56d11340000000005","dob":"5/18/1997","ell_status":"N","email":"c_yvette@example.org","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.694Z","location":{"zip":"11385"},"name":{"first":"Yvette","middle":"W","last":"Cummings"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"112258136","state_id":"373187439","student_number":"112258136","id":"530e5960049e75a9262cff26"},"uri":"/v1.1/students/530e5960049e75a9262cff26"},{"data":{"created":"2014-02-26T21:15:12.430Z","credentials":{"district_username":"geraldp09","district_password":"ieg6piLoc"},"district":"4fd43cc56d11340000000005","dob":"8/27/1998","ell_status":"Y","email":"p.gerald@example.com","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.698Z","location":{"zip":"11691"},"name":{"first":"Gerald","middle":"J","last":"Parisian"},"race":"Two
@@ -728,8 +752,8 @@ http_interactions:
728
752
  Connection:
729
753
  - keep-alive
730
754
  body:
731
- encoding: US-ASCII
732
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:14.440Z","credentials":{"district_username":"josepht59","district_password":"aije9Go0"},"district":"4fd43cc56d11340000000005","dob":"5/17/1997","ell_status":"N","email":"t_joseph@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.678Z","location":{"zip":"11695"},"name":{"first":"Joseph","middle":"B","last":"Thiel"},"race":"Black
755
+ encoding: UTF-8
756
+ string: '{"data":[{"data":{"created":"2014-02-26T21:15:14.440Z","credentials":{"district_username":"josepht59","district_password":"aije9Go0"},"district":"4fd43cc56d11340000000005","dob":"5/17/1997","ell_status":"N","email":"t_joseph@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.678Z","location":{"zip":"11695"},"name":{"first":"Joseph","middle":"B","last":"Thiel"},"race":"Black
733
757
  or African American","school":"530e595026403103360ff9fd","sis_id":"320437259","state_id":"183500753","student_number":"320437259","id":"530e5962049e75a9262d0102"},"uri":"/v1.1/students/530e5962049e75a9262d0102"},{"data":{"created":"2014-02-26T21:15:14.454Z","credentials":{"district_username":"nancyb33","district_password":"quiVu5aen"},"district":"4fd43cc56d11340000000005","dob":"9/26/1996","ell_status":"N","email":"b_nancy@example.org","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.684Z","location":{"zip":"10021"},"name":{"first":"Nancy","middle":"P","last":"Borer"},"race":"Two
734
758
  or More Races","school":"530e595026403103360ff9fd","sis_id":"321540033","state_id":"170613526","student_number":"321540033","id":"530e5962049e75a9262d0106"},"uri":"/v1.1/students/530e5962049e75a9262d0106"},{"data":{"created":"2014-02-26T21:15:14.514Z","credentials":{"district_username":"jeromea21","district_password":"idai0Xupoo"},"district":"4fd43cc56d11340000000005","dob":"1/6/1996","ell_status":"N","email":"a.jerome@example.org","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.717Z","location":{"zip":"10039"},"name":{"first":"Jerome","middle":"C","last":"Ankunding"},"race":"Black
735
759
  or African American","school":"530e595026403103360ff9fd","sis_id":"329898621","state_id":"258035113","student_number":"329898621","id":"530e5962049e75a9262d010e"},"uri":"/v1.1/students/530e5962049e75a9262d010e"},{"data":{"created":"2014-02-26T21:15:14.526Z","credentials":{"district_username":"judithl34","district_password":"eiwu9Quupah"},"district":"4fd43cc56d11340000000005","dob":"3/27/1998","ell_status":"N","email":"judith_l@example.net","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.722Z","location":{"zip":"11236"},"name":{"first":"Judith","middle":"K","last":"Lindgren"},"race":"Two
@@ -838,8 +862,8 @@ http_interactions:
838
862
  Connection:
839
863
  - keep-alive
840
864
  body:
841
- encoding: US-ASCII
842
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:16.632Z","credentials":{"district_username":"kimberlyk62","district_password":"nie6Ieb1"},"district":"4fd43cc56d11340000000005","dob":"12/28/1996","ell_status":"N","email":"k.kimberly@example.com","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.670Z","location":{"zip":"11691"},"name":{"first":"Kimberly","middle":"R","last":"Kutch"},"race":"Black
865
+ encoding: UTF-8
866
+ string: '{"data":[{"data":{"created":"2014-02-26T21:15:16.632Z","credentials":{"district_username":"kimberlyk62","district_password":"nie6Ieb1"},"district":"4fd43cc56d11340000000005","dob":"12/28/1996","ell_status":"N","email":"k.kimberly@example.com","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.670Z","location":{"zip":"11691"},"name":{"first":"Kimberly","middle":"R","last":"Kutch"},"race":"Black
843
867
  or African American","school":"530e595026403103360ff9fd","sis_id":"531248862","state_id":"879810915","student_number":"531248862","id":"530e5964049e75a9262d02d5"},"uri":"/v1.1/students/530e5964049e75a9262d02d5"},{"data":{"created":"2014-02-26T21:15:16.638Z","credentials":{"district_username":"lindac62","district_password":"ki7AhahyahF"},"district":"4fd43cc56d11340000000005","dob":"12/9/1996","ell_status":"N","email":"linda_c@example.com","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.675Z","location":{"zip":"10303"},"name":{"first":"Linda","middle":"J","last":"Christiansen"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"531293162","state_id":"138529274","student_number":"531293162","id":"530e5964049e75a9262d02d6"},"uri":"/v1.1/students/530e5964049e75a9262d02d6"},{"data":{"created":"2014-02-26T21:15:16.678Z","credentials":{"district_username":"keithw08","district_password":"ahboh2EeBeY"},"district":"4fd43cc56d11340000000005","dob":"8/22/1996","ell_status":"N","email":"w.keith@example.org","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.685Z","location":{"zip":"10309"},"name":{"first":"Keith","middle":"V","last":"Wintheiser"},"race":"Black
844
868
  or African American","school":"530e595026403103360ff9fd","sis_id":"534675808","state_id":"651155420","student_number":"534675808","id":"530e5964049e75a9262d02d9"},"uri":"/v1.1/students/530e5964049e75a9262d02d9"},{"data":{"created":"2014-02-26T21:15:16.740Z","credentials":{"district_username":"dianen73","district_password":"eel7Thohd"},"district":"4fd43cc56d11340000000005","dob":"6/16/1996","ell_status":"N","email":"n_diane@example.net","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.697Z","location":{"zip":"11691"},"name":{"first":"Diane","middle":"J","last":"Nader"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"541253373","state_id":"817987559","student_number":"541253373","id":"530e5964049e75a9262d02e7"},"uri":"/v1.1/students/530e5964049e75a9262d02e7"},{"data":{"created":"2014-02-26T21:15:16.755Z","credentials":{"district_username":"nolad22","district_password":"veL3queiNg4k"},"district":"4fd43cc56d11340000000005","dob":"8/1/1996","ell_status":"N","email":"nola_d@example.net","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.706Z","location":{"zip":"10011"},"name":{"first":"Nola","middle":"D","last":"Douglas"},"race":"Two
845
869
  or More Races","school":"530e595026403103360ff9fd","sis_id":"543793622","state_id":"634967954","student_number":"543793622","id":"530e5964049e75a9262d02eb"},"uri":"/v1.1/students/530e5964049e75a9262d02eb"},{"data":{"created":"2014-02-26T21:15:16.771Z","credentials":{"district_username":"weng93","district_password":"kiephee6Va"},"district":"4fd43cc56d11340000000005","dob":"2/11/1995","ell_status":"N","email":"wen_g@example.com","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.710Z","location":{"zip":"10020"},"name":{"first":"Wen","middle":"T","last":"Greenholt"},"race":"Two
@@ -949,8 +973,8 @@ http_interactions:
949
973
  Connection:
950
974
  - keep-alive
951
975
  body:
952
- encoding: US-ASCII
953
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:19.133Z","credentials":{"district_username":"dustyl08","district_password":"heif7ieC"},"district":"4fd43cc56d11340000000005","dob":"4/7/1995","ell_status":"N","email":"dusty.l@example.org","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.777Z","location":{"zip":"11236"},"name":{"first":"Dusty","middle":"P","last":"Littel"},"race":"American
976
+ encoding: UTF-8
977
+ string: '{"data":[{"data":{"created":"2014-02-26T21:15:19.133Z","credentials":{"district_username":"dustyl08","district_password":"heif7ieC"},"district":"4fd43cc56d11340000000005","dob":"4/7/1995","ell_status":"N","email":"dusty.l@example.org","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.777Z","location":{"zip":"11236"},"name":{"first":"Dusty","middle":"P","last":"Littel"},"race":"American
954
978
  Indian","school":"530e595026403103360ff9fd","sis_id":"790090708","state_id":"369187842","student_number":"790090708","id":"530e5967049e75a9262d04fe"},"uri":"/v1.1/students/530e5967049e75a9262d04fe"},{"data":{"created":"2014-02-26T21:15:19.140Z","credentials":{"district_username":"justinw31","district_password":"suTa7Jizoo"},"district":"4fd43cc56d11340000000005","dob":"1/21/1996","ell_status":"N","email":"justin.w@example.net","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.781Z","location":{"zip":"10466"},"name":{"first":"Justin","middle":"J","last":"Wolff"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"792235731","state_id":"444026787","student_number":"792235731","id":"530e5967049e75a9262d04ff"},"uri":"/v1.1/students/530e5967049e75a9262d04ff"},{"data":{"created":"2014-02-26T21:15:19.147Z","credentials":{"district_username":"irisk36","district_password":"OhShui8Aitae"},"district":"4fd43cc56d11340000000005","dob":"4/29/1998","ell_status":"Y","email":"iris_k@example.net","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.783Z","location":{"zip":"10019"},"name":{"first":"Iris","middle":"J","last":"Kirlin"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"792374836","state_id":"493060769","student_number":"792374836","id":"530e5967049e75a9262d0501"},"uri":"/v1.1/students/530e5967049e75a9262d0501"},{"data":{"created":"2014-02-26T21:15:19.152Z","credentials":{"district_username":"williamh73","district_password":"roosh5Oo"},"district":"4fd43cc56d11340000000005","dob":"11/5/1997","ell_status":"Y","email":"william_h@example.com","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.787Z","location":{"zip":"10027"},"name":{"first":"William","middle":"M","last":"Hintz"},"race":"Black
955
979
  or African American","school":"530e595026403103360ff9fd","sis_id":"792381473","state_id":"614809725","student_number":"792381473","id":"530e5967049e75a9262d0503"},"uri":"/v1.1/students/530e5967049e75a9262d0503"},{"data":{"created":"2014-02-26T21:15:19.178Z","credentials":{"district_username":"ambers79","district_password":"daiWei8kaif"},"district":"4fd43cc56d11340000000005","dob":"8/13/1995","ell_status":"N","email":"s_amber@example.net","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.799Z","location":{"zip":"11210"},"name":{"first":"Amber","middle":"A","last":"Schmeler"},"race":"Black
956
980
  or African American","school":"530e595026403103360ff9fd","sis_id":"796330979","state_id":"359390982","student_number":"796330979","id":"530e5967049e75a9262d050c"},"uri":"/v1.1/students/530e5967049e75a9262d050c"},{"data":{"created":"2014-02-26T21:15:19.303Z","credentials":{"district_username":"davidd92","district_password":"ahNgaht2Oon"},"district":"4fd43cc56d11340000000005","dob":"5/14/1996","ell_status":"Y","email":"d_david@example.com","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.858Z","location":{"zip":"10003"},"name":{"first":"David","middle":"M","last":"Dietrich"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"805220192","state_id":"790114527","student_number":"805220192","id":"530e5967049e75a9262d0527"},"uri":"/v1.1/students/530e5967049e75a9262d0527"},{"data":{"created":"2014-02-26T21:15:19.318Z","credentials":{"district_username":"patriciac10","district_password":"Quahph3ch"},"district":"4fd43cc56d11340000000005","dob":"5/10/1998","ell_status":"Y","email":"patricia_c@example.org","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.863Z","location":{"zip":"10030"},"name":{"first":"Patricia","middle":"B","last":"Casper"},"race":"Two
@@ -1050,8 +1074,8 @@ http_interactions:
1050
1074
  Connection:
1051
1075
  - keep-alive
1052
1076
  body:
1053
- encoding: US-ASCII
1054
- string: ! '{"data":[],"links":[{"rel":"self","uri":"/v1.1/schools/530e595026403103360ff9fd/students?starting_after=530e5968049e75a9262d064b"},{"rel":"prev","uri":"/v1.1/schools/530e595026403103360ff9fd/students?ending_before=530e5968049e75a9262d064b"}]}'
1077
+ encoding: UTF-8
1078
+ string: '{"data":[],"links":[{"rel":"self","uri":"/v1.1/schools/530e595026403103360ff9fd/students?starting_after=530e5968049e75a9262d064b"},{"rel":"prev","uri":"/v1.1/schools/530e595026403103360ff9fd/students?ending_before=530e5968049e75a9262d064b"}]}'
1055
1079
  http_version:
1056
1080
  recorded_at: Sat, 13 Sep 2014 00:07:43 GMT
1057
1081
  recorded_with: VCR 2.9.3