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:04:54 GMT
33
- Etag:
34
- - ! '"1408105812"'
35
- Server:
36
- - nginx/1.4.7
32
+ - Sat, 26 Sep 2015 17:41:23 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
+ - '1126'
41
+ X-Ratelimit-Reset:
42
+ - '1443289303'
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
@@ -53,7 +57,7 @@ http_interactions:
53
57
  Middle School","nces_id":"360001000000","phone":"(718) 555-8989","principal":{"name":"Leonard
54
58
  Springsteen","email":"lspringsteen@mailinator.com"},"school_number":"27Q321","sis_id":"27Q321","state_id":"412","id":"530e595026403103360ff9ff"},"uri":"/v1.1/schools/530e595026403103360ff9ff"}],"paging":{"current":1,"total":1,"count":3},"links":[{"rel":"self","uri":"/v1.1/schools"}]}'
55
59
  http_version:
56
- recorded_at: Sat, 13 Sep 2014 00:04:54 GMT
60
+ recorded_at: Sat, 26 Sep 2015 17:41:23 GMT
57
61
  - request:
58
62
  method: get
59
63
  uri: https://api.clever.com/v1.1/schools?count=true
@@ -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:04:54 GMT
87
- Server:
88
- - nginx/1.4.7
90
+ - Sat, 26 Sep 2015 17:41:23 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
+ - '1125'
99
+ X-Ratelimit-Reset:
100
+ - '1443289303'
91
101
  Content-Length:
92
102
  - '69'
93
103
  Connection:
94
104
  - keep-alive
95
105
  body:
96
- encoding: US-ASCII
97
- string: ! '{"count":3,"links":[{"rel":"self","uri":"/v1.1/schools?count=true"}]}'
106
+ encoding: UTF-8
107
+ string: '{"count":3,"links":[{"rel":"self","uri":"/v1.1/schools?count=true"}]}'
98
108
  http_version:
99
- recorded_at: Sat, 13 Sep 2014 00:04:54 GMT
109
+ recorded_at: Sat, 26 Sep 2015 17:41:23 GMT
100
110
  recorded_with: VCR 2.9.3
@@ -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:05:04 GMT
33
- Etag:
34
- - ! '"275883657"'
35
- Server:
36
- - nginx/1.4.7
32
+ - Sat, 26 Sep 2015 17:40:29 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
+ - '1084'
41
+ X-Ratelimit-Reset:
42
+ - '1443289242'
39
43
  Content-Length:
40
44
  - '1773'
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
@@ -53,7 +57,7 @@ http_interactions:
53
57
  Middle School","nces_id":"360001000000","phone":"(718) 555-8989","principal":{"name":"Leonard
54
58
  Springsteen","email":"lspringsteen@mailinator.com"},"school_number":"27Q321","sis_id":"27Q321","state_id":"412","id":"530e595026403103360ff9ff"},"uri":"/v1.1/schools/530e595026403103360ff9ff"}],"paging":{"current":1,"total":1,"count":3},"links":[{"rel":"self","uri":"/v1.1/schools?limit=20"}]}'
55
59
  http_version:
56
- recorded_at: Sat, 13 Sep 2014 00:05:04 GMT
60
+ recorded_at: Sat, 26 Sep 2015 17:40:29 GMT
57
61
  - request:
58
62
  method: get
59
63
  uri: https://api.clever.com/v1.1/schools?where=%7B%22_id%22:%7B%22$in%22:%5B%22530e595026403103360ff9fd%22,%22530e595026403103360ff9ff%22%5D%7D%7D
@@ -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,24 +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:05:05 GMT
87
- Etag:
88
- - ! '"-1879088916"'
89
- Server:
90
- - nginx/1.4.7
90
+ - Sat, 26 Sep 2015 17:40:29 GMT
91
91
  X-Powered-By:
92
92
  - Express
93
+ X-Ratelimit-Bucket:
94
+ - bearer
95
+ X-Ratelimit-Limit:
96
+ - '1200'
97
+ X-Ratelimit-Remaining:
98
+ - '1083'
99
+ X-Ratelimit-Reset:
100
+ - '1443289242'
93
101
  Content-Length:
94
102
  - '1303'
95
103
  Connection:
96
104
  - keep-alive
97
105
  body:
98
- encoding: US-ASCII
99
- 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
106
+ encoding: UTF-8
107
+ 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
100
108
  5th Avenue","city":"New York","state":"NY","zip":"10001"},"low_grade":"9","name":"Clever
101
109
  High School","nces_id":"360008000000","phone":"(212) 555-1212","principal":{"name":"Theodora
102
110
  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.671Z","district":"4fd43cc56d11340000000005","high_grade":"8","last_modified":"2014-02-26T21:14:56.673Z","location":{"address":"322
@@ -104,5 +112,5 @@ http_interactions:
104
112
  Middle School","nces_id":"360001000000","phone":"(718) 555-8989","principal":{"name":"Leonard
105
113
  Springsteen","email":"lspringsteen@mailinator.com"},"school_number":"27Q321","sis_id":"27Q321","state_id":"412","id":"530e595026403103360ff9ff"},"uri":"/v1.1/schools/530e595026403103360ff9ff"}],"paging":{"current":1,"total":1,"count":2},"links":[{"rel":"self","uri":"/v1.1/schools?where=%7B%22_id%22:%7B%22$in%22:[%22530e595026403103360ff9fd%22,%22530e595026403103360ff9ff%22]%7D%7D"}]}'
106
114
  http_version:
107
- recorded_at: Sat, 13 Sep 2014 00:05:05 GMT
115
+ recorded_at: Sat, 26 Sep 2015 17:40:29 GMT
108
116
  recorded_with: VCR 2.9.3
@@ -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,30 @@ 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:05:02 GMT
32
+ - Sat, 26 Sep 2015 17:41:23 GMT
33
33
  Etag:
34
- - ! '"1525695678"'
35
- Server:
36
- - nginx/1.4.7
34
+ - '"-682802249"'
37
35
  X-Powered-By:
38
36
  - Express
37
+ X-Ratelimit-Bucket:
38
+ - bearer
39
+ X-Ratelimit-Limit:
40
+ - '1200'
41
+ X-Ratelimit-Remaining:
42
+ - '1124'
43
+ X-Ratelimit-Reset:
44
+ - '1443289303'
39
45
  Content-Length:
40
46
  - '113738'
41
47
  Connection:
42
48
  - keep-alive
43
49
  body:
44
- encoding: US-ASCII
45
- 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
50
+ encoding: UTF-8
51
+ 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
46
52
  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-01","end_date":"2013-06-01"},"id":"530e5979049e75a9262d0af2"},"uri":"/v1.1/sections/530e5979049e75a9262d0af2"},{"data":{"course_name":"Group
47
53
  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
48
54
  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-01","end_date":"2013-06-01"},"id":"530e5979049e75a9262d0af3"},"uri":"/v1.1/sections/530e5979049e75a9262d0af3"},{"data":{"course_name":"Group
@@ -315,7 +321,7 @@ http_interactions:
315
321
  string: ''
316
322
  headers:
317
323
  Accept:
318
- - ! '*/*; q=0.5, application/xml'
324
+ - "*/*; q=0.5, application/xml"
319
325
  Accept-Encoding:
320
326
  - gzip, deflate
321
327
  Authorization:
@@ -348,8 +354,8 @@ http_interactions:
348
354
  Connection:
349
355
  - keep-alive
350
356
  body:
351
- encoding: US-ASCII
352
- string: ! '{"data":[{"data":{"course_name":"Health","course_number":"201","created":"2014-02-26T21:15:38.358Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:38.359Z","name":"Health
357
+ encoding: UTF-8
358
+ string: '{"data":[{"data":{"course_name":"Health","course_number":"201","created":"2014-02-26T21:15:38.358Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:38.359Z","name":"Health
353
359
  - 201 - P. McCartney (Section 1)","period":"1","school":"530e595026403103360ff9fd","sis_id":"682","students":["530e5960049e75a9262cff26","530e5960049e75a9262cff39","530e5960049e75a9262cff48","530e5960049e75a9262cff4f","530e5960049e75a9262cff96","530e5961049e75a9262d0027","530e5961049e75a9262d0035","530e5961049e75a9262d0080","530e5961049e75a9262d0082","530e5962049e75a9262d00b5","530e5962049e75a9262d00b9","530e5962049e75a9262d00e3","530e5962049e75a9262d0102","530e5962049e75a9262d012e","530e5962049e75a9262d0156","530e5963049e75a9262d0207","530e5963049e75a9262d0240","530e5964049e75a9262d0262","530e5964049e75a9262d026c","530e5964049e75a9262d0288","530e5964049e75a9262d0297","530e5964049e75a9262d0304","530e5965049e75a9262d031b","530e5965049e75a9262d0381","530e5966049e75a9262d03f5","530e5966049e75a9262d043c","530e5966049e75a9262d04b4","530e5967049e75a9262d0544","530e5967049e75a9262d0549","530e5968049e75a9262d05d5","530e5968049e75a9262d05e8","530e5968049e75a9262d05fc","530e5968049e75a9262d061f"],"subject":"PE
354
360
  and health","teacher":"530e5955d50c310f36112c07","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e597a049e75a9262d0b56"},"uri":"/v1.1/sections/530e597a049e75a9262d0b56"},{"data":{"course_name":"Health","course_number":"202","created":"2014-02-26T21:15:38.362Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:38.364Z","name":"Health
355
361
  - 202 - P. McCartney (Section 2)","period":"1","school":"530e595026403103360ff9fd","sis_id":"683","students":["530e5960049e75a9262cff7b","530e5961049e75a9262cffd9","530e5961049e75a9262cffe0","530e5961049e75a9262d0010","530e5961049e75a9262d0037","530e5961049e75a9262d008d","530e5962049e75a9262d00a5","530e5962049e75a9262d00f4","530e5962049e75a9262d012b","530e5962049e75a9262d0133","530e5963049e75a9262d017f","530e5963049e75a9262d0180","530e5963049e75a9262d01f5","530e5963049e75a9262d01ff","530e5963049e75a9262d0202","530e5964049e75a9262d0282","530e5964049e75a9262d0286","530e5964049e75a9262d028e","530e5964049e75a9262d02aa","530e5964049e75a9262d0300","530e5965049e75a9262d0383","530e5965049e75a9262d03b6","530e5965049e75a9262d03d2","530e5966049e75a9262d0455","530e5966049e75a9262d04ba","530e5966049e75a9262d04cc","530e5967049e75a9262d0586","530e5967049e75a9262d058b","530e5967049e75a9262d05b3","530e5967049e75a9262d05b9","530e5968049e75a9262d05f7","530e5968049e75a9262d0632","530e5968049e75a9262d0647"],"subject":"PE
@@ -609,8 +615,8 @@ http_interactions:
609
615
  Connection:
610
616
  - keep-alive
611
617
  body:
612
- encoding: US-ASCII
613
- string: ! '{"data":[{"data":{"course_name":"Mathematics, Class 603","course_number":"603","created":"2014-02-26T21:15:38.786Z","district":"4fd43cc56d11340000000005","grade":"6","last_modified":"2014-04-03T20:59:10.945Z","name":"Mathematics,
618
+ encoding: UTF-8
619
+ string: '{"data":[{"data":{"course_name":"Mathematics, Class 603","course_number":"603","created":"2014-02-26T21:15:38.786Z","district":"4fd43cc56d11340000000005","grade":"6","last_modified":"2014-04-03T20:59:10.945Z","name":"Mathematics,
614
620
  Class 603 - 603 - B. Goldner","period":"3","school":"530e595026403103360ff9ff","sis_id":"782","students":["530e5960049e75a9262cff64","530e5961049e75a9262cffd7","530e5961049e75a9262cffe6","530e5961049e75a9262cffe7","530e5962049e75a9262d00b1","530e5962049e75a9262d00da","530e5962049e75a9262d00e0","530e5962049e75a9262d0132","530e5962049e75a9262d013b","530e5962049e75a9262d0168","530e5965049e75a9262d03b7","530e5966049e75a9262d03fa","530e5966049e75a9262d0433","530e5966049e75a9262d0497","530e5966049e75a9262d04c1","530e5967049e75a9262d04df","530e5967049e75a9262d051d","530e5967049e75a9262d058f","530e5967049e75a9262d05b8","530e5968049e75a9262d05cf","530e5968049e75a9262d0626","530e5968049e75a9262d062d","530e5968049e75a9262d062e","530e5968049e75a9262d0641","530e5968049e75a9262d064a"],"subject":"math","teacher":"530e5955d50c310f36112be0","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e597a049e75a9262d0bba"},"uri":"/v1.1/sections/530e597a049e75a9262d0bba"},{"data":{"course_name":"Mathematics,
615
621
  Class 701","course_number":"701","created":"2014-02-26T21:15:38.790Z","district":"4fd43cc56d11340000000005","grade":"7","last_modified":"2014-02-26T21:15:38.792Z","name":"Mathematics,
616
622
  Class 701 - 701 - S. Connelly","period":"5","school":"530e595026403103360ff9ff","sis_id":"783","students":["530e5961049e75a9262cffcb","530e5961049e75a9262cffe2","530e5961049e75a9262cffeb","530e5961049e75a9262cfffd","530e5961049e75a9262d0023","530e5961049e75a9262d0060","530e5961049e75a9262d008b","530e5962049e75a9262d00e4","530e5962049e75a9262d0157","530e5963049e75a9262d01a3","530e5963049e75a9262d01a8","530e5963049e75a9262d01f2","530e5963049e75a9262d0234","530e5964049e75a9262d0314","530e5965049e75a9262d0323","530e5965049e75a9262d03bc","530e5965049e75a9262d03d8","530e5965049e75a9262d03dd","530e5966049e75a9262d0417","530e5966049e75a9262d041f","530e5967049e75a9262d04e9","530e5967049e75a9262d056d","530e5967049e75a9262d059b","530e5967049e75a9262d05b0","530e5968049e75a9262d05ee","530e5968049e75a9262d060d"],"subject":"math","teacher":"530e5955d50c310f36112be1","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e597a049e75a9262d0bbb"},"uri":"/v1.1/sections/530e597a049e75a9262d0bbb"},{"data":{"course_name":"Mathematics,
@@ -912,8 +918,8 @@ http_interactions:
912
918
  Connection:
913
919
  - keep-alive
914
920
  body:
915
- encoding: US-ASCII
916
- string: ! '{"data":[{"data":{"course_name":"Environmental Science","course_number":"400","created":"2014-02-26T21:15:39.244Z","district":"4fd43cc56d11340000000005","grade":"12","last_modified":"2014-02-26T21:15:39.245Z","name":"Environmental
921
+ encoding: UTF-8
922
+ string: '{"data":[{"data":{"course_name":"Environmental Science","course_number":"400","created":"2014-02-26T21:15:39.244Z","district":"4fd43cc56d11340000000005","grade":"12","last_modified":"2014-02-26T21:15:39.245Z","name":"Environmental
917
923
  Science - 400 - S. Ogden (Section 4)","period":"3","school":"530e595026403103360ff9fd","sis_id":"882","students":["530e5960049e75a9262cff9f","530e5960049e75a9262cffa6","530e5961049e75a9262cffef","530e5961049e75a9262cfff7","530e5961049e75a9262d0002","530e5963049e75a9262d01c7","530e5963049e75a9262d020b","530e5963049e75a9262d0227","530e5964049e75a9262d0278","530e5964049e75a9262d02fe","530e5965049e75a9262d0363","530e5965049e75a9262d037f","530e5965049e75a9262d03cd","530e5966049e75a9262d044c","530e5967049e75a9262d04fe","530e5967049e75a9262d0584","530e5968049e75a9262d05ec","530e5968049e75a9262d060c","530e5968049e75a9262d062a","530e5968049e75a9262d063f"],"subject":"science","teacher":"50ba1c0c4eda5d94372227eb","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e597b049e75a9262d0c1e"},"uri":"/v1.1/sections/530e597b049e75a9262d0c1e"},{"data":{"course_name":"Physics","course_number":"403","created":"2014-02-26T21:15:39.247Z","district":"4fd43cc56d11340000000005","grade":"12","last_modified":"2014-02-26T21:15:39.248Z","name":"Physics
918
924
  - 403 - S. Madison (Section 5)","period":"3","school":"530e595026403103360ff9fd","sis_id":"883","students":["530e5961049e75a9262d007b","530e5962049e75a9262d00ec","530e5962049e75a9262d0159","530e5963049e75a9262d01a6","530e5963049e75a9262d021d","530e5964049e75a9262d027f","530e5964049e75a9262d02ac","530e5964049e75a9262d02b5","530e5964049e75a9262d02bc","530e5964049e75a9262d02d4","530e5966049e75a9262d03f3","530e5966049e75a9262d0492","530e5966049e75a9262d04a0","530e5966049e75a9262d04b8","530e5967049e75a9262d0569","530e5967049e75a9262d05b2","530e5968049e75a9262d05c5","530e5968049e75a9262d05c8","530e5968049e75a9262d05fa","530e5968049e75a9262d0602"],"subject":"science","teacher":"530e5955d50c310f36112c0e","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e597b049e75a9262d0c1f"},"uri":"/v1.1/sections/530e597b049e75a9262d0c1f"},{"data":{"course_name":"Science
919
925
  Remediation, Grade 12","course_number":"405","created":"2014-02-26T21:15:39.249Z","district":"4fd43cc56d11340000000005","grade":"12","last_modified":"2014-02-26T21:15:39.251Z","name":"Science
@@ -1135,22 +1141,28 @@ http_interactions:
1135
1141
  Access-Control-Allow-Methods:
1136
1142
  - GET,PATCH,POST,DELETE
1137
1143
  Access-Control-Allow-Origin:
1138
- - ! '*'
1144
+ - "*"
1139
1145
  Content-Type:
1140
1146
  - application/json; charset=utf-8
1141
1147
  Date:
1142
- - Sat, 13 Sep 2014 00:05:04 GMT
1143
- Server:
1144
- - nginx/1.4.7
1148
+ - Sat, 26 Sep 2015 17:41:24 GMT
1145
1149
  X-Powered-By:
1146
1150
  - Express
1151
+ X-Ratelimit-Bucket:
1152
+ - bearer
1153
+ X-Ratelimit-Limit:
1154
+ - '1200'
1155
+ X-Ratelimit-Remaining:
1156
+ - '1123'
1157
+ X-Ratelimit-Reset:
1158
+ - '1443289303'
1147
1159
  Content-Length:
1148
1160
  - '72'
1149
1161
  Connection:
1150
1162
  - keep-alive
1151
1163
  body:
1152
- encoding: US-ASCII
1153
- string: ! '{"count":379,"links":[{"rel":"self","uri":"/v1.1/sections?count=true"}]}'
1164
+ encoding: UTF-8
1165
+ string: '{"count":379,"links":[{"rel":"self","uri":"/v1.1/sections?count=true"}]}'
1154
1166
  http_version:
1155
- recorded_at: Sat, 13 Sep 2014 00:05:04 GMT
1167
+ recorded_at: Sat, 26 Sep 2015 17:41:24 GMT
1156
1168
  recorded_with: VCR 2.9.3
@@ -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,30 @@ 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:02:46 GMT
32
+ - Sat, 26 Sep 2015 17:41:26 GMT
33
33
  Etag:
34
- - ! '"-1690172883"'
35
- Server:
36
- - nginx/1.4.7
34
+ - '"305945234"'
37
35
  X-Powered-By:
38
36
  - Express
37
+ X-Ratelimit-Bucket:
38
+ - bearer
39
+ X-Ratelimit-Limit:
40
+ - '1200'
41
+ X-Ratelimit-Remaining:
42
+ - '1119'
43
+ X-Ratelimit-Reset:
44
+ - '1443289303'
39
45
  Content-Length:
40
46
  - '22346'
41
47
  Connection:
42
48
  - keep-alive
43
49
  body:
44
- encoding: US-ASCII
45
- 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
50
+ encoding: UTF-8
51
+ 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
46
52
  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-01","end_date":"2013-06-01"},"id":"530e5979049e75a9262d0af2"},"uri":"/v1.1/sections/530e5979049e75a9262d0af2"},{"data":{"course_name":"Group
47
53
  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
48
54
  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-01","end_date":"2013-06-01"},"id":"530e5979049e75a9262d0af3"},"uri":"/v1.1/sections/530e5979049e75a9262d0af3"},{"data":{"course_name":"Group
@@ -83,7 +89,7 @@ http_interactions:
83
89
  Guidance","course_number":"905","created":"2014-02-26T21:15:38.011Z","district":"4fd43cc56d11340000000005","grade":"9","last_modified":"2014-02-26T21:15:38.013Z","name":"Group
84
90
  Guidance - 905 - J. Cummings (Section 5)","period":"0","school":"530e595026403103360ff9fd","sis_id":"600","students":["530e5960049e75a9262cff1e","530e5960049e75a9262cff27","530e5960049e75a9262cff5b","530e5961049e75a9262cfffb","530e5961049e75a9262d0038","530e5961049e75a9262d0089","530e5962049e75a9262d00ba","530e5962049e75a9262d00e6","530e5963049e75a9262d0181","530e5963049e75a9262d020f","530e5963049e75a9262d021b","530e5964049e75a9262d02d3","530e5965049e75a9262d033c","530e5966049e75a9262d045e","530e5966049e75a9262d0496","530e5966049e75a9262d04a5","530e5968049e75a9262d063c"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c16","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e597a049e75a9262d0b05"},"uri":"/v1.1/sections/530e597a049e75a9262d0b05"}],"paging":{"current":1,"total":19,"count":379},"links":[{"rel":"self","uri":"/v1.1/sections?limit=20"},{"rel":"next","uri":"/v1.1/sections?limit=20&starting_after=530e597a049e75a9262d0b05"}]}'
85
91
  http_version:
86
- recorded_at: Sat, 13 Sep 2014 00:02:46 GMT
92
+ recorded_at: Sat, 26 Sep 2015 17:41:26 GMT
87
93
  - request:
88
94
  method: get
89
95
  uri: https://api.clever.com/v1.1/sections?where=%7B%22_id%22:%7B%22$in%22:%5B%22530e5979049e75a9262d0af2%22,%22530e5979049e75a9262d0af4%22,%22530e5979049e75a9262d0af6%22,%22530e5979049e75a9262d0af8%22,%22530e5979049e75a9262d0afa%22,%22530e5979049e75a9262d0afc%22,%22530e5979049e75a9262d0afe%22,%22530e5979049e75a9262d0b00%22,%22530e5979049e75a9262d0b02%22,%22530e597a049e75a9262d0b04%22%5D%7D%7D
@@ -92,7 +98,7 @@ http_interactions:
92
98
  string: ''
93
99
  headers:
94
100
  Accept:
95
- - ! '*/*; q=0.5, application/xml'
101
+ - "*/*; q=0.5, application/xml"
96
102
  Accept-Encoding:
97
103
  - gzip, deflate
98
104
  Authorization:
@@ -109,24 +115,30 @@ http_interactions:
109
115
  Access-Control-Allow-Methods:
110
116
  - GET,PATCH,POST,DELETE
111
117
  Access-Control-Allow-Origin:
112
- - ! '*'
118
+ - "*"
113
119
  Content-Type:
114
120
  - application/json; charset=utf-8
115
121
  Date:
116
- - Sat, 13 Sep 2014 00:02:47 GMT
122
+ - Sat, 26 Sep 2015 17:41:26 GMT
117
123
  Etag:
118
- - ! '"-1277459956"'
119
- Server:
120
- - nginx/1.4.7
124
+ - '"-1689358430"'
121
125
  X-Powered-By:
122
126
  - Express
127
+ X-Ratelimit-Bucket:
128
+ - bearer
129
+ X-Ratelimit-Limit:
130
+ - '1200'
131
+ X-Ratelimit-Remaining:
132
+ - '1118'
133
+ X-Ratelimit-Reset:
134
+ - '1443289303'
123
135
  Content-Length:
124
136
  - '11633'
125
137
  Connection:
126
138
  - keep-alive
127
139
  body:
128
- encoding: US-ASCII
129
- 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
140
+ encoding: UTF-8
141
+ 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
130
142
  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-01","end_date":"2013-06-01"},"id":"530e5979049e75a9262d0af2"},"uri":"/v1.1/sections/530e5979049e75a9262d0af2"},{"data":{"course_name":"Group
131
143
  Guidance","course_number":"103","created":"2014-02-26T21:15:37.938Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:37.940Z","name":"Group
132
144
  Guidance - 103 - E. Britcher (Section 3)","period":"0","school":"530e595026403103360ff9fd","sis_id":"583","students":["530e5960049e75a9262cff26","530e5961049e75a9262d0020","530e5961049e75a9262d0035","530e5962049e75a9262d00a5","530e5962049e75a9262d00f4","530e5962049e75a9262d0158","530e5964049e75a9262d026c","530e5964049e75a9262d0288","530e5964049e75a9262d02aa","530e5966049e75a9262d03f5","530e5967049e75a9262d0596","530e5967049e75a9262d05b3","530e5967049e75a9262d05bf","530e5968049e75a9262d05d5","530e5968049e75a9262d05f7","530e5968049e75a9262d05fc","530e5968049e75a9262d0603"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c13","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e5979049e75a9262d0af4"},"uri":"/v1.1/sections/530e5979049e75a9262d0af4"},{"data":{"course_name":"Group
@@ -147,5 +159,5 @@ http_interactions:
147
159
  Guidance","course_number":"904","created":"2014-02-26T21:15:38.006Z","district":"4fd43cc56d11340000000005","grade":"9","last_modified":"2014-02-26T21:15:38.008Z","name":"Group
148
160
  Guidance - 904 - J. Isaacs (Section 4)","period":"0","school":"530e595026403103360ff9fd","sis_id":"599","students":["530e5960049e75a9262cff23","530e5960049e75a9262cff3c","530e5961049e75a9262d007d","530e5962049e75a9262d0127","530e5962049e75a9262d0174","530e5963049e75a9262d019f","530e5963049e75a9262d01fb","530e5963049e75a9262d0231","530e5964049e75a9262d02a9","530e5965049e75a9262d0325","530e5965049e75a9262d03a5","530e5966049e75a9262d042b","530e5966049e75a9262d048d","530e5967049e75a9262d05b5","530e5967049e75a9262d05be","530e5968049e75a9262d0605","530e5968049e75a9262d0646"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c14","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e597a049e75a9262d0b04"},"uri":"/v1.1/sections/530e597a049e75a9262d0b04"}],"paging":{"current":1,"total":1,"count":10},"links":[{"rel":"self","uri":"/v1.1/sections?where=%7B%22_id%22:%7B%22$in%22:[%22530e5979049e75a9262d0af2%22,%22530e5979049e75a9262d0af4%22,%22530e5979049e75a9262d0af6%22,%22530e5979049e75a9262d0af8%22,%22530e5979049e75a9262d0afa%22,%22530e5979049e75a9262d0afc%22,%22530e5979049e75a9262d0afe%22,%22530e5979049e75a9262d0b00%22,%22530e5979049e75a9262d0b02%22,%22530e597a049e75a9262d0b04%22]%7D%7D"}]}'
149
161
  http_version:
150
- recorded_at: Sat, 13 Sep 2014 00:02:47 GMT
162
+ recorded_at: Sat, 26 Sep 2015 17:41:26 GMT
151
163
  recorded_with: VCR 2.9.3
@@ -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,30 @@ 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:03:49 GMT
32
+ - Sat, 26 Sep 2015 17:41:04 GMT
33
33
  Etag:
34
- - ! '"-1704869160"'
35
- Server:
36
- - nginx/1.4.7
34
+ - '"-1672977800"'
37
35
  X-Powered-By:
38
36
  - Express
37
+ X-Ratelimit-Bucket:
38
+ - bearer
39
+ X-Ratelimit-Limit:
40
+ - '1200'
41
+ X-Ratelimit-Remaining:
42
+ - '1155'
43
+ X-Ratelimit-Reset:
44
+ - '1443289303'
39
45
  Content-Length:
40
46
  - '66289'
41
47
  Connection:
42
48
  - keep-alive
43
49
  body:
44
- encoding: US-ASCII
45
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:12.346Z","credentials":{"district_username":"stevez33","district_password":"auyik3tiTieL"},"district":"4fd43cc56d11340000000005","dob":"2/11/2007","ell_status":"N","email":"z.steve@example.net","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.656Z","location":{"zip":"10459"},"name":{"first":"Steve","middle":"G","last":"Ziemann"},"race":"Black
50
+ encoding: UTF-8
51
+ string: '{"data":[{"data":{"created":"2014-02-26T21:15:12.346Z","credentials":{"district_username":"stevez33","district_password":"auyik3tiTieL"},"district":"4fd43cc56d11340000000005","dob":"2/11/2007","ell_status":"N","email":"z.steve@example.net","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.656Z","location":{"zip":"10459"},"name":{"first":"Steve","middle":"G","last":"Ziemann"},"race":"Black
46
52
  or African American","school":"530e595026403103360ff9fe","sis_id":"100095233","state_id":"231786324","student_number":"100095233","id":"530e5960049e75a9262cff1d"},"uri":"/v1.1/students/530e5960049e75a9262cff1d"},{"data":{"created":"2014-02-26T21:15:12.358Z","credentials":{"district_username":"douglasw58","district_password":"ahFii2nae"},"district":"4fd43cc56d11340000000005","dob":"6/18/1998","ell_status":"Y","email":"w_douglas@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.661Z","location":{"zip":"11004"},"name":{"first":"Douglas","middle":"S","last":"Wisoky"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"101565758","state_id":"498006597","student_number":"101565758","id":"530e5960049e75a9262cff1e"},"uri":"/v1.1/students/530e5960049e75a9262cff1e"},{"data":{"created":"2014-02-26T21:15:12.368Z","credentials":{"district_username":"joel42","district_password":"CaaDie0eboo"},"district":"4fd43cc56d11340000000005","dob":"7/4/1997","ell_status":"Y","email":"l.joe@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.664Z","location":{"zip":"10473"},"name":{"first":"Joe","middle":"S","last":"Lakin"},"race":"Black
47
53
  or African American","school":"530e595026403103360ff9fd","sis_id":"106078142","state_id":"635493722","student_number":"106078142","id":"530e5960049e75a9262cff1f"},"uri":"/v1.1/students/530e5960049e75a9262cff1f"},{"data":{"created":"2014-02-26T21:15:12.374Z","credentials":{"district_username":"evalynb40","district_password":"ooXahwook2"},"district":"4fd43cc56d11340000000005","dob":"8/10/2006","ell_status":"N","email":"b_evalyn@example.org","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.668Z","location":{"zip":"10029"},"name":{"first":"Evalyn","middle":"J","last":"Bradtke"},"race":"Black
48
54
  or African American","school":"530e595026403103360ff9fe","sis_id":"106091540","state_id":"552729322","student_number":"106091540","id":"530e5960049e75a9262cff20"},"uri":"/v1.1/students/530e5960049e75a9262cff20"},{"data":{"created":"2014-02-26T21:15:12.382Z","credentials":{"district_username":"coryt00","district_password":"ahW1taesao5"},"district":"4fd43cc56d11340000000005","dob":"7/21/1997","ell_status":"Y","email":"cory_t@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.673Z","location":{"zip":"10038"},"name":{"first":"Cory","middle":"V","last":"Thompson"},"race":"Black
@@ -124,7 +130,7 @@ http_interactions:
124
130
  string: ''
125
131
  headers:
126
132
  Accept:
127
- - ! '*/*; q=0.5, application/xml'
133
+ - "*/*; q=0.5, application/xml"
128
134
  Accept-Encoding:
129
135
  - gzip, deflate
130
136
  Authorization:
@@ -157,8 +163,8 @@ http_interactions:
157
163
  Connection:
158
164
  - keep-alive
159
165
  body:
160
- encoding: US-ASCII
161
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:13.212Z","credentials":{"district_username":"amandaj51","district_password":"roh1Feiphah"},"district":"4fd43cc56d11340000000005","dob":"10/18/1999","ell_status":"Y","email":"amanda_j@example.org","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.077Z","location":{"zip":"11435"},"name":{"first":"Amanda","middle":"G","last":"Jewess"},"race":"Black
166
+ encoding: UTF-8
167
+ string: '{"data":[{"data":{"created":"2014-02-26T21:15:13.212Z","credentials":{"district_username":"amandaj51","district_password":"roh1Feiphah"},"district":"4fd43cc56d11340000000005","dob":"10/18/1999","ell_status":"Y","email":"amanda_j@example.org","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.077Z","location":{"zip":"11435"},"name":{"first":"Amanda","middle":"G","last":"Jewess"},"race":"Black
162
168
  or African American","school":"530e595026403103360ff9ff","sis_id":"189563051","state_id":"652845522","student_number":"189563051","id":"530e5961049e75a9262cffe5"},"uri":"/v1.1/students/530e5961049e75a9262cffe5"},{"data":{"created":"2014-02-26T21:15:13.222Z","credentials":{"district_username":"dennise32","district_password":"do4iuS3aib"},"district":"4fd43cc56d11340000000005","dob":"10/27/2001","ell_status":"Y","email":"dennis.e@example.net","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.082Z","location":{"zip":"11434"},"name":{"first":"Dennis","middle":"S","last":"Ebert"},"race":"Two
163
169
  or More Races","school":"530e595026403103360ff9ff","sis_id":"191990532","state_id":"863066778","student_number":"191990532","id":"530e5961049e75a9262cffe6"},"uri":"/v1.1/students/530e5961049e75a9262cffe6"},{"data":{"created":"2014-02-26T21:15:13.228Z","credentials":{"district_username":"anab65","district_password":"rieM4thub0e"},"district":"4fd43cc56d11340000000005","dob":"8/16/2001","ell_status":"N","email":"b_ana@example.org","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.086Z","location":{"zip":"11211"},"name":{"first":"Ana","middle":"J","last":"Barton"},"race":"Two
164
170
  or More Races","school":"530e595026403103360ff9ff","sis_id":"192513965","state_id":"961608338","student_number":"192513965","id":"530e5961049e75a9262cffe7"},"uri":"/v1.1/students/530e5961049e75a9262cffe7"},{"data":{"created":"2014-02-26T21:15:13.232Z","credentials":{"district_username":"emilyr17","district_password":"aiCheeke3qu"},"district":"4fd43cc56d11340000000005","dob":"9/22/2002","ell_status":"N","email":"emily_r@example.com","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.098Z","location":{"zip":"11220"},"name":{"first":"Emily","middle":"C","last":"Raynor"},"race":"Black
@@ -266,8 +272,8 @@ http_interactions:
266
272
  Connection:
267
273
  - keep-alive
268
274
  body:
269
- encoding: US-ASCII
270
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:14.068Z","credentials":{"district_username":"lanaw95","district_password":"aeghiaH0no"},"district":"4fd43cc56d11340000000005","dob":"8/30/2002","ell_status":"Y","email":"lana_w@example.com","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.489Z","location":{"zip":"10004"},"name":{"first":"Lana","middle":"A","last":"Wisozk"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"283689395","state_id":"658074450","student_number":"283689395","id":"530e5962049e75a9262d00ac"},"uri":"/v1.1/students/530e5962049e75a9262d00ac"},{"data":{"created":"2014-02-26T21:15:14.073Z","credentials":{"district_username":"shannonk65","district_password":"Ahnae6eich"},"district":"4fd43cc56d11340000000005","dob":"9/14/1996","ell_status":"Y","email":"shannon_k@example.org","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.492Z","location":{"zip":"11206"},"name":{"first":"Shannon","middle":"C","last":"Kunde"},"race":"Two
275
+ encoding: UTF-8
276
+ string: '{"data":[{"data":{"created":"2014-02-26T21:15:14.068Z","credentials":{"district_username":"lanaw95","district_password":"aeghiaH0no"},"district":"4fd43cc56d11340000000005","dob":"8/30/2002","ell_status":"Y","email":"lana_w@example.com","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.489Z","location":{"zip":"10004"},"name":{"first":"Lana","middle":"A","last":"Wisozk"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"283689395","state_id":"658074450","student_number":"283689395","id":"530e5962049e75a9262d00ac"},"uri":"/v1.1/students/530e5962049e75a9262d00ac"},{"data":{"created":"2014-02-26T21:15:14.073Z","credentials":{"district_username":"shannonk65","district_password":"Ahnae6eich"},"district":"4fd43cc56d11340000000005","dob":"9/14/1996","ell_status":"Y","email":"shannon_k@example.org","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.492Z","location":{"zip":"11206"},"name":{"first":"Shannon","middle":"C","last":"Kunde"},"race":"Two
271
277
  or More Races","school":"530e595026403103360ff9fd","sis_id":"283755065","state_id":"535830084","student_number":"283755065","id":"530e5962049e75a9262d00ae"},"uri":"/v1.1/students/530e5962049e75a9262d00ae"},{"data":{"created":"2014-02-26T21:15:14.078Z","credentials":{"district_username":"williamn86","district_password":"unauMe0sh"},"district":"4fd43cc56d11340000000005","dob":"9/9/2002","ell_status":"Y","email":"n_william@example.net","frl_status":"Paid","gender":"M","grade":"5","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.497Z","location":{"zip":"11423"},"name":{"first":"William","middle":"C","last":"Nicolas"},"race":"American
272
278
  Indian","school":"530e595026403103360ff9fe","sis_id":"283813686","state_id":"243049132","student_number":"283813686","id":"530e5962049e75a9262d00af"},"uri":"/v1.1/students/530e5962049e75a9262d00af"},{"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
273
279
  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.086Z","credentials":{"district_username":"jeffl04","district_password":"eghu2aij6Oh"},"district":"4fd43cc56d11340000000005","dob":"5/1/2001","ell_status":"N","email":"jeff.l@example.com","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.504Z","location":{"zip":"10473"},"name":{"first":"Jeff","middle":"K","last":"Labadie"},"race":"Two
@@ -379,8 +385,8 @@ http_interactions:
379
385
  Connection:
380
386
  - keep-alive
381
387
  body:
382
- encoding: US-ASCII
383
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:14.874Z","credentials":{"district_username":"daneh67","district_password":"ahNap8Th"},"district":"4fd43cc56d11340000000005","dob":"8/24/2005","ell_status":"N","email":"h.dane@example.org","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.891Z","location":{"zip":"11356"},"name":{"first":"Dane","middle":"D","last":"Hackett"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"366931967","state_id":"450640906","student_number":"366931967","id":"530e5962049e75a9262d0161"},"uri":"/v1.1/students/530e5962049e75a9262d0161"},{"data":{"created":"2014-02-26T21:15:14.879Z","credentials":{"district_username":"paulk00","district_password":"uNgeh4Aeph"},"district":"4fd43cc56d11340000000005","dob":"10/24/2007","ell_status":"N","email":"paul_k@example.com","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.894Z","location":{"zip":"10456"},"name":{"first":"Paul","middle":"B","last":"Kuvalis"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"367181500","state_id":"261028079","student_number":"367181500","id":"530e5962049e75a9262d0162"},"uri":"/v1.1/students/530e5962049e75a9262d0162"},{"data":{"created":"2014-02-26T21:15:14.887Z","credentials":{"district_username":"michaels05","district_password":"teez9Aegaij"},"district":"4fd43cc56d11340000000005","dob":"2/11/2000","ell_status":"Y","email":"michael_s@example.org","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.899Z","location":{"zip":"10467"},"name":{"first":"Michael","middle":"R","last":"Schroeder"},"race":"Black
388
+ encoding: UTF-8
389
+ string: '{"data":[{"data":{"created":"2014-02-26T21:15:14.874Z","credentials":{"district_username":"daneh67","district_password":"ahNap8Th"},"district":"4fd43cc56d11340000000005","dob":"8/24/2005","ell_status":"N","email":"h.dane@example.org","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.891Z","location":{"zip":"11356"},"name":{"first":"Dane","middle":"D","last":"Hackett"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"366931967","state_id":"450640906","student_number":"366931967","id":"530e5962049e75a9262d0161"},"uri":"/v1.1/students/530e5962049e75a9262d0161"},{"data":{"created":"2014-02-26T21:15:14.879Z","credentials":{"district_username":"paulk00","district_password":"uNgeh4Aeph"},"district":"4fd43cc56d11340000000005","dob":"10/24/2007","ell_status":"N","email":"paul_k@example.com","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.894Z","location":{"zip":"10456"},"name":{"first":"Paul","middle":"B","last":"Kuvalis"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"367181500","state_id":"261028079","student_number":"367181500","id":"530e5962049e75a9262d0162"},"uri":"/v1.1/students/530e5962049e75a9262d0162"},{"data":{"created":"2014-02-26T21:15:14.887Z","credentials":{"district_username":"michaels05","district_password":"teez9Aegaij"},"district":"4fd43cc56d11340000000005","dob":"2/11/2000","ell_status":"Y","email":"michael_s@example.org","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.899Z","location":{"zip":"10467"},"name":{"first":"Michael","middle":"R","last":"Schroeder"},"race":"Black
384
390
  or African American","school":"530e595026403103360ff9ff","sis_id":"367842305","state_id":"703845011","student_number":"367842305","id":"530e5962049e75a9262d0164"},"uri":"/v1.1/students/530e5962049e75a9262d0164"},{"data":{"created":"2014-02-26T21:15:14.898Z","credentials":{"district_username":"raymondk80","district_password":"Fuzae9tee"},"district":"4fd43cc56d11340000000005","dob":"5/17/2001","ell_status":"Y","email":"raymond_k@example.net","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.903Z","location":{"zip":"11366"},"name":{"first":"Raymond","middle":"J","last":"Koelpin"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"368203180","state_id":"697001925","student_number":"368203180","id":"530e5962049e75a9262d0168"},"uri":"/v1.1/students/530e5962049e75a9262d0168"},{"data":{"created":"2014-02-26T21:15:14.904Z","credentials":{"district_username":"catherined47","district_password":"liezae4aeRei"},"district":"4fd43cc56d11340000000005","dob":"12/26/2005","ell_status":"N","email":"d.catherine@example.org","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.906Z","location":{"zip":"11377"},"name":{"first":"Catherine","middle":"J","last":"Dicki"},"race":"Black
385
391
  or African American","school":"530e595026403103360ff9fe","sis_id":"368912647","state_id":"246138918","student_number":"368912647","id":"530e5962049e75a9262d016a"},"uri":"/v1.1/students/530e5962049e75a9262d016a"},{"data":{"created":"2014-02-26T21:15:14.932Z","credentials":{"district_username":"danielp37","district_password":"aing5Shohqu"},"district":"4fd43cc56d11340000000005","dob":"8/25/1997","ell_status":"N","email":"p.daniel@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.910Z","location":{"zip":"11420"},"name":{"first":"Daniel","middle":"R","last":"Parisian"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"371718137","state_id":"842682232","student_number":"371718137","id":"530e5962049e75a9262d0172"},"uri":"/v1.1/students/530e5962049e75a9262d0172"},{"data":{"created":"2014-02-26T21:15:14.937Z","credentials":{"district_username":"marcusr72","district_password":"ooTutheul9ch"},"district":"4fd43cc56d11340000000005","dob":"8/7/1998","ell_status":"N","email":"marcus_r@example.org","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.915Z","location":{"zip":"10040"},"name":{"first":"Marcus","middle":"A","last":"Rohan"},"race":"Two
386
392
  or More Races","school":"530e595026403103360ff9fd","sis_id":"371916672","state_id":"698928572","student_number":"371916672","id":"530e5962049e75a9262d0174"},"uri":"/v1.1/students/530e5962049e75a9262d0174"},{"data":{"created":"2014-02-26T21:15:14.943Z","credentials":{"district_username":"patriciab28","district_password":"see4Voosh3m"},"district":"4fd43cc56d11340000000005","dob":"7/13/1996","ell_status":"N","email":"patricia_b@example.com","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.919Z","location":{"zip":"11225"},"name":{"first":"Patricia","middle":"A","last":"Blick"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"373009928","state_id":"701151126","student_number":"373009928","id":"530e5962049e75a9262d0176"},"uri":"/v1.1/students/530e5962049e75a9262d0176"},{"data":{"created":"2014-02-26T21:15:14.967Z","credentials":{"district_username":"donnaw12","district_password":"xueb4Usaen"},"district":"4fd43cc56d11340000000005","dob":"1/10/1999","ell_status":"N","email":"donna_w@example.com","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.921Z","location":{"zip":"11367"},"name":{"first":"Donna","middle":"M","last":"Waelchi"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"375683812","state_id":"579726835","student_number":"375683812","id":"530e5962049e75a9262d017c"},"uri":"/v1.1/students/530e5962049e75a9262d017c"},{"data":{"created":"2014-02-26T21:15:14.989Z","credentials":{"district_username":"lisak17","district_password":"Nei5AhvieXee"},"district":"4fd43cc56d11340000000005","dob":"7/7/2002","ell_status":"N","email":"k.lisa@example.com","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.925Z","location":{"zip":"11413"},"name":{"first":"Lisa","middle":"B","last":"Kovacek"},"race":"Black
@@ -493,8 +499,8 @@ http_interactions:
493
499
  Connection:
494
500
  - keep-alive
495
501
  body:
496
- encoding: US-ASCII
497
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:15.702Z","credentials":{"district_username":"williamc73","district_password":"zoo3wohX4oh"},"district":"4fd43cc56d11340000000005","dob":"7/9/1998","ell_status":"N","email":"c_william@example.com","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.299Z","location":{"zip":"10457"},"name":{"first":"William","middle":"S","last":"Collier"},"race":"Black
502
+ encoding: UTF-8
503
+ string: '{"data":[{"data":{"created":"2014-02-26T21:15:15.702Z","credentials":{"district_username":"williamc73","district_password":"zoo3wohX4oh"},"district":"4fd43cc56d11340000000005","dob":"7/9/1998","ell_status":"N","email":"c_william@example.com","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.299Z","location":{"zip":"10457"},"name":{"first":"William","middle":"S","last":"Collier"},"race":"Black
498
504
  or African American","school":"530e595026403103360ff9fd","sis_id":"451126673","state_id":"926832658","student_number":"451126673","id":"530e5963049e75a9262d0229"},"uri":"/v1.1/students/530e5963049e75a9262d0229"},{"data":{"created":"2014-02-26T21:15:15.711Z","credentials":{"district_username":"paulm67","district_password":"ay8Oow9s"},"district":"4fd43cc56d11340000000005","dob":"3/11/2005","ell_status":"N","email":"paul.m@example.net","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.303Z","location":{"zip":"11230"},"name":{"first":"Paul","middle":"S","last":"Mante"},"race":"Black
499
505
  or African American","school":"530e595026403103360ff9fe","sis_id":"452145667","state_id":"525742133","student_number":"452145667","id":"530e5963049e75a9262d022a"},"uri":"/v1.1/students/530e5963049e75a9262d022a"},{"data":{"created":"2014-02-26T21:15:15.716Z","credentials":{"district_username":"julieb31","district_password":"kouVeiy3ie"},"district":"4fd43cc56d11340000000005","dob":"9/3/2002","ell_status":"N","email":"b.julie@example.net","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.308Z","location":{"zip":"11436"},"name":{"first":"Julie","middle":"B","last":"Bauch"},"race":"Black
500
506
  or African American","school":"530e595026403103360ff9fe","sis_id":"452734331","state_id":"253238572","student_number":"452734331","id":"530e5963049e75a9262d022b"},"uri":"/v1.1/students/530e5963049e75a9262d022b"},{"data":{"created":"2014-02-26T21:15:15.721Z","credentials":{"district_username":"theresak22","district_password":"rohNgoGe2"},"district":"4fd43cc56d11340000000005","dob":"3/6/1996","ell_status":"N","email":"theresa.k@example.com","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.312Z","location":{"zip":"10040"},"name":{"first":"Theresa","middle":"G","last":"Koch"},"race":"Black
@@ -604,8 +610,8 @@ http_interactions:
604
610
  Connection:
605
611
  - keep-alive
606
612
  body:
607
- encoding: US-ASCII
608
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:16.748Z","credentials":{"district_username":"alishal22","district_password":"oW6zahweMa"},"district":"4fd43cc56d11340000000005","dob":"8/10/2000","ell_status":"Y","email":"l_alisha@example.org","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.701Z","location":{"zip":"11211"},"name":{"first":"Alisha","middle":"M","last":"Lebsack"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"541697322","state_id":"163505690","student_number":"541697322","id":"530e5964049e75a9262d02e9"},"uri":"/v1.1/students/530e5964049e75a9262d02e9"},{"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
613
+ encoding: UTF-8
614
+ string: '{"data":[{"data":{"created":"2014-02-26T21:15:16.748Z","credentials":{"district_username":"alishal22","district_password":"oW6zahweMa"},"district":"4fd43cc56d11340000000005","dob":"8/10/2000","ell_status":"Y","email":"l_alisha@example.org","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.701Z","location":{"zip":"11211"},"name":{"first":"Alisha","middle":"M","last":"Lebsack"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"541697322","state_id":"163505690","student_number":"541697322","id":"530e5964049e75a9262d02e9"},"uri":"/v1.1/students/530e5964049e75a9262d02e9"},{"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
609
615
  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
610
616
  or More Races","school":"530e595026403103360ff9fd","sis_id":"544765793","state_id":"771260413","student_number":"544765793","id":"530e5964049e75a9262d02ee"},"uri":"/v1.1/students/530e5964049e75a9262d02ee"},{"data":{"created":"2014-02-26T21:15:16.785Z","credentials":{"district_username":"kevinj39","district_password":"OoCo1oodoo"},"district":"4fd43cc56d11340000000005","dob":"3/5/2004","ell_status":"N","email":"j_kevin@example.net","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.712Z","location":{"zip":"11416"},"name":{"first":"Kevin","middle":"B","last":"Jast"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"545439039","state_id":"875008902","student_number":"545439039","id":"530e5964049e75a9262d02f1"},"uri":"/v1.1/students/530e5964049e75a9262d02f1"},{"data":{"created":"2014-02-26T21:15:16.794Z","credentials":{"district_username":"edithr77","district_password":"VoK1eBodoequ"},"district":"4fd43cc56d11340000000005","dob":"6/19/1998","ell_status":"N","email":"edith.r@example.net","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.716Z","location":{"zip":"10464"},"name":{"first":"Edith","middle":"D","last":"Rippin"},"race":"Two
611
617
  or More Races","school":"530e595026403103360ff9fd","sis_id":"545463377","state_id":"460250108","student_number":"545463377","id":"530e5964049e75a9262d02f3"},"uri":"/v1.1/students/530e5964049e75a9262d02f3"},{"data":{"created":"2014-02-26T21:15:16.804Z","credentials":{"district_username":"patriciaf90","district_password":"Quahph3ch"},"district":"4fd43cc56d11340000000005","dob":"10/9/2001","ell_status":"N","email":"f_patricia@example.net","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.721Z","location":{"zip":"10017"},"name":{"first":"Patricia","middle":"B","last":"Fisher"},"race":"Two
@@ -711,8 +717,8 @@ http_interactions:
711
717
  Connection:
712
718
  - keep-alive
713
719
  body:
714
- encoding: US-ASCII
715
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:17.772Z","credentials":{"district_username":"angelob49","district_password":"Ohch1ohz"},"district":"4fd43cc56d11340000000005","dob":"9/21/2007","ell_status":"N","email":"b_angelo@example.org","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.102Z","location":{"zip":"11420"},"name":{"first":"Angelo","middle":"S","last":"Bahringer"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"637540249","state_id":"365082598","student_number":"637540249","id":"530e5965049e75a9262d03b9"},"uri":"/v1.1/students/530e5965049e75a9262d03b9"},{"data":{"created":"2014-02-26T21:15:17.777Z","credentials":{"district_username":"melanier81","district_password":"Kah9oc3ai"},"district":"4fd43cc56d11340000000005","dob":"9/7/2006","ell_status":"Y","email":"melanie.r@example.org","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.106Z","location":{"zip":"10456"},"name":{"first":"Melanie","middle":"A","last":"Ratke"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"638030981","state_id":"881624059","student_number":"638030981","id":"530e5965049e75a9262d03ba"},"uri":"/v1.1/students/530e5965049e75a9262d03ba"},{"data":{"created":"2014-02-26T21:15:17.781Z","credentials":{"district_username":"loish46","district_password":"Oa4beichoo"},"district":"4fd43cc56d11340000000005","dob":"4/25/1999","ell_status":"N","email":"lois.h@example.net","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.111Z","location":{"zip":"10452"},"name":{"first":"Lois","middle":"J","last":"Hilll"},"race":"Black
720
+ encoding: UTF-8
721
+ string: '{"data":[{"data":{"created":"2014-02-26T21:15:17.772Z","credentials":{"district_username":"angelob49","district_password":"Ohch1ohz"},"district":"4fd43cc56d11340000000005","dob":"9/21/2007","ell_status":"N","email":"b_angelo@example.org","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.102Z","location":{"zip":"11420"},"name":{"first":"Angelo","middle":"S","last":"Bahringer"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"637540249","state_id":"365082598","student_number":"637540249","id":"530e5965049e75a9262d03b9"},"uri":"/v1.1/students/530e5965049e75a9262d03b9"},{"data":{"created":"2014-02-26T21:15:17.777Z","credentials":{"district_username":"melanier81","district_password":"Kah9oc3ai"},"district":"4fd43cc56d11340000000005","dob":"9/7/2006","ell_status":"Y","email":"melanie.r@example.org","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.106Z","location":{"zip":"10456"},"name":{"first":"Melanie","middle":"A","last":"Ratke"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"638030981","state_id":"881624059","student_number":"638030981","id":"530e5965049e75a9262d03ba"},"uri":"/v1.1/students/530e5965049e75a9262d03ba"},{"data":{"created":"2014-02-26T21:15:17.781Z","credentials":{"district_username":"loish46","district_password":"Oa4beichoo"},"district":"4fd43cc56d11340000000005","dob":"4/25/1999","ell_status":"N","email":"lois.h@example.net","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.111Z","location":{"zip":"10452"},"name":{"first":"Lois","middle":"J","last":"Hilll"},"race":"Black
716
722
  or African American","school":"530e595026403103360ff9ff","sis_id":"638408446","state_id":"629208860","student_number":"638408446","id":"530e5965049e75a9262d03bb"},"uri":"/v1.1/students/530e5965049e75a9262d03bb"},{"data":{"created":"2014-02-26T21:15:17.789Z","credentials":{"district_username":"margarett11","district_password":"Ovaeh6iequei"},"district":"4fd43cc56d11340000000005","dob":"5/20/2000","ell_status":"Y","email":"t.margaret@example.com","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.115Z","location":{"zip":"11362"},"name":{"first":"Margaret","middle":"D","last":"Thompson"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"640506711","state_id":"351526569","student_number":"640506711","id":"530e5965049e75a9262d03bc"},"uri":"/v1.1/students/530e5965049e75a9262d03bc"},{"data":{"created":"2014-02-26T21:15:17.793Z","credentials":{"district_username":"harrym02","district_password":"aecohPai6ie"},"district":"4fd43cc56d11340000000005","dob":"1/15/2006","ell_status":"Y","email":"harry.m@example.org","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.118Z","location":{"zip":"11426"},"name":{"first":"Harry","middle":"C","last":"McKenzie"},"race":"Black
717
723
  or African American","school":"530e595026403103360ff9fe","sis_id":"640604402","state_id":"559167066","student_number":"640604402","id":"530e5965049e75a9262d03bd"},"uri":"/v1.1/students/530e5965049e75a9262d03bd"},{"data":{"created":"2014-02-26T21:15:17.797Z","credentials":{"district_username":"steveng14","district_password":"Aidoov5th"},"district":"4fd43cc56d11340000000005","dob":"7/6/2006","ell_status":"N","email":"steven_g@example.org","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.122Z","location":{"zip":"10030"},"name":{"first":"Steven","middle":"R","last":"Gorczany"},"race":"Black
718
724
  or African American","school":"530e595026403103360ff9fe","sis_id":"640688514","state_id":"794746208","student_number":"640688514","id":"530e5965049e75a9262d03be"},"uri":"/v1.1/students/530e5965049e75a9262d03be"},{"data":{"created":"2014-02-26T21:15:17.801Z","credentials":{"district_username":"margaretg13","district_password":"Ovaeh6iequei"},"district":"4fd43cc56d11340000000005","dob":"7/16/2007","ell_status":"N","email":"margaret_g@example.net","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.127Z","location":{"zip":"10035"},"name":{"first":"Margaret","middle":"D","last":"Grant"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"641257513","state_id":"840132452","student_number":"641257513","id":"530e5965049e75a9262d03bf"},"uri":"/v1.1/students/530e5965049e75a9262d03bf"},{"data":{"created":"2014-02-26T21:15:17.806Z","credentials":{"district_username":"williamp97","district_password":"howueSh7"},"district":"4fd43cc56d11340000000005","dob":"11/26/2007","ell_status":"N","email":"p_william@example.net","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.131Z","location":{"zip":"11104"},"name":{"first":"William","middle":"A","last":"Padberg"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"641458497","state_id":"859240327","student_number":"641458497","id":"530e5965049e75a9262d03c0"},"uri":"/v1.1/students/530e5965049e75a9262d03c0"},{"data":{"created":"2014-02-26T21:15:17.810Z","credentials":{"district_username":"brucel93","district_password":"IPh0gea9moh"},"district":"4fd43cc56d11340000000005","dob":"6/2/2004","ell_status":"Y","email":"l_bruce@example.net","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.134Z","location":{"zip":"11357"},"name":{"first":"Bruce","middle":"D","last":"Langworth"},"race":"Black
@@ -818,8 +824,8 @@ http_interactions:
818
824
  Connection:
819
825
  - keep-alive
820
826
  body:
821
- encoding: US-ASCII
822
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:18.516Z","credentials":{"district_username":"jeano59","district_password":"Eties4aechei"},"district":"4fd43cc56d11340000000005","dob":"7/2/2000","ell_status":"N","email":"o_jean@example.org","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.517Z","location":{"zip":"10461"},"name":{"first":"Jean","middle":"D","last":"Orn"},"race":"Black
827
+ encoding: UTF-8
828
+ string: '{"data":[{"data":{"created":"2014-02-26T21:15:18.516Z","credentials":{"district_username":"jeano59","district_password":"Eties4aechei"},"district":"4fd43cc56d11340000000005","dob":"7/2/2000","ell_status":"N","email":"o_jean@example.org","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.517Z","location":{"zip":"10461"},"name":{"first":"Jean","middle":"D","last":"Orn"},"race":"Black
823
829
  or African American","school":"530e595026403103360ff9ff","sis_id":"728480959","state_id":"908755769","student_number":"728480959","id":"530e5966049e75a9262d046d"},"uri":"/v1.1/students/530e5966049e75a9262d046d"},{"data":{"created":"2014-02-26T21:15:18.522Z","credentials":{"district_username":"douglask74","district_password":"ahFii2nae"},"district":"4fd43cc56d11340000000005","dob":"6/21/1996","ell_status":"N","email":"douglas.k@example.com","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.519Z","location":{"zip":"11233"},"name":{"first":"Douglas","middle":"S","last":"Kessler"},"race":"Black
824
830
  or African American","school":"530e595026403103360ff9fd","sis_id":"728614874","state_id":"810223648","student_number":"728614874","id":"530e5966049e75a9262d046e"},"uri":"/v1.1/students/530e5966049e75a9262d046e"},{"data":{"created":"2014-02-26T21:15:18.527Z","credentials":{"district_username":"michaels98","district_password":"xi9Vu1qu"},"district":"4fd43cc56d11340000000005","dob":"9/16/2006","ell_status":"N","email":"s.michael@example.com","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.523Z","location":{"zip":"10474"},"name":{"first":"Michael","middle":"B","last":"Stamm"},"race":"Two
825
831
  or More Races","school":"530e595026403103360ff9fe","sis_id":"729561298","state_id":"517970964","student_number":"729561298","id":"530e5966049e75a9262d046f"},"uri":"/v1.1/students/530e5966049e75a9262d046f"},{"data":{"created":"2014-02-26T21:15:18.544Z","credentials":{"district_username":"laceyl96","district_password":"Ebae9aihai"},"district":"4fd43cc56d11340000000005","dob":"10/18/2002","ell_status":"N","email":"lacey_l@example.org","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.528Z","location":{"zip":"10128"},"name":{"first":"Lacey","middle":"S","last":"Ledner"},"race":"Black
@@ -931,8 +937,8 @@ http_interactions:
931
937
  Connection:
932
938
  - keep-alive
933
939
  body:
934
- encoding: US-ASCII
935
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:19.491Z","credentials":{"district_username":"reginad73","district_password":"PieDe8ae"},"district":"4fd43cc56d11340000000005","dob":"1/12/2003","ell_status":"Y","email":"regina.d@example.com","frl_status":"Paid","gender":"F","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.933Z","location":{"zip":"11433"},"name":{"first":"Regina","middle":"E","last":"Dietrich"},"race":"Two
940
+ encoding: UTF-8
941
+ string: '{"data":[{"data":{"created":"2014-02-26T21:15:19.491Z","credentials":{"district_username":"reginad73","district_password":"PieDe8ae"},"district":"4fd43cc56d11340000000005","dob":"1/12/2003","ell_status":"Y","email":"regina.d@example.com","frl_status":"Paid","gender":"F","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.933Z","location":{"zip":"11433"},"name":{"first":"Regina","middle":"E","last":"Dietrich"},"race":"Two
936
942
  or More Races","school":"530e595026403103360ff9fe","sis_id":"822907373","state_id":"717470447","student_number":"822907373","id":"530e5967049e75a9262d0559"},"uri":"/v1.1/students/530e5967049e75a9262d0559"},{"data":{"created":"2014-02-26T21:15:19.496Z","credentials":{"district_username":"cheriek67","district_password":"ahToh2ahngi"},"district":"4fd43cc56d11340000000005","dob":"11/8/2001","ell_status":"N","email":"k.cherie@example.com","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.938Z","location":{"zip":"10472"},"name":{"first":"Cherie","middle":"C","last":"Kohler"},"race":"Black
937
943
  or African American","school":"530e595026403103360ff9ff","sis_id":"824912367","state_id":"602405063","student_number":"824912367","id":"530e5967049e75a9262d055b"},"uri":"/v1.1/students/530e5967049e75a9262d055b"},{"data":{"created":"2014-02-26T21:15:19.502Z","credentials":{"district_username":"bettya04","district_password":"xu3zooLai"},"district":"4fd43cc56d11340000000005","dob":"9/3/2002","ell_status":"Y","email":"a.betty@example.com","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.942Z","location":{"zip":"11693"},"name":{"first":"Betty","middle":"R","last":"Abshire"},"race":"Black
938
944
  or African American","school":"530e595026403103360ff9fe","sis_id":"825221604","state_id":"903008252","student_number":"825221604","id":"530e5967049e75a9262d055d"},"uri":"/v1.1/students/530e5967049e75a9262d055d"},{"data":{"created":"2014-02-26T21:15:19.511Z","credentials":{"district_username":"freddief21","district_password":"juu1eiXae"},"district":"4fd43cc56d11340000000005","dob":"9/11/2000","ell_status":"N","email":"f.freddie@example.net","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.945Z","location":{"zip":"10004"},"name":{"first":"Freddie","middle":"J","last":"Funk"},"race":"Black
@@ -1040,8 +1046,8 @@ http_interactions:
1040
1046
  Connection:
1041
1047
  - keep-alive
1042
1048
  body:
1043
- encoding: US-ASCII
1044
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:20.176Z","credentials":{"district_username":"juliak13","district_password":"Hoofo8he"},"district":"4fd43cc56d11340000000005","dob":"1/11/2007","ell_status":"N","email":"k_julia@example.org","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.341Z","location":{"zip":"10016"},"name":{"first":"Julia","middle":"E","last":"Kovacek"},"race":"Black
1049
+ encoding: UTF-8
1050
+ string: '{"data":[{"data":{"created":"2014-02-26T21:15:20.176Z","credentials":{"district_username":"juliak13","district_password":"Hoofo8he"},"district":"4fd43cc56d11340000000005","dob":"1/11/2007","ell_status":"N","email":"k_julia@example.org","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.341Z","location":{"zip":"10016"},"name":{"first":"Julia","middle":"E","last":"Kovacek"},"race":"Black
1045
1051
  or African American","school":"530e595026403103360ff9fe","sis_id":"914907413","state_id":"716386163","student_number":"914907413","id":"530e5968049e75a9262d05e4"},"uri":"/v1.1/students/530e5968049e75a9262d05e4"},{"data":{"created":"2014-02-26T21:15:20.182Z","credentials":{"district_username":"beverleya37","district_password":"Bie8ohlie0ie"},"district":"4fd43cc56d11340000000005","dob":"3/3/2002","ell_status":"N","email":"beverley.a@example.org","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.345Z","location":{"zip":"11214"},"name":{"first":"Beverley","middle":"R","last":"Auer"},"race":"Two
1046
1052
  or More Races","school":"530e595026403103360ff9fe","sis_id":"915925737","state_id":"774928906","student_number":"915925737","id":"530e5968049e75a9262d05e5"},"uri":"/v1.1/students/530e5968049e75a9262d05e5"},{"data":{"created":"2014-02-26T21:15:20.186Z","credentials":{"district_username":"sarab69","district_password":"ohra2ooP1"},"district":"4fd43cc56d11340000000005","dob":"6/13/2002","ell_status":"Y","email":"sara_b@example.net","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.347Z","location":{"zip":"10032"},"name":{"first":"Sara","middle":"J","last":"Bosco"},"race":"American
1047
1053
  Indian","school":"530e595026403103360ff9fe","sis_id":"916709069","state_id":"392490841","student_number":"916709069","id":"530e5968049e75a9262d05e6"},"uri":"/v1.1/students/530e5968049e75a9262d05e6"},{"data":{"created":"2014-02-26T21:15:20.189Z","credentials":{"district_username":"christined97","district_password":"iu4Aem3eix"},"district":"4fd43cc56d11340000000005","dob":"4/1/2004","ell_status":"Y","email":"christine_d@example.org","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.351Z","location":{"zip":"11433"},"name":{"first":"Christine","middle":"D","last":"Douglas"},"race":"Black
@@ -1142,8 +1148,8 @@ http_interactions:
1142
1148
  Connection:
1143
1149
  - keep-alive
1144
1150
  body:
1145
- encoding: US-ASCII
1146
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:20.614Z","credentials":{"district_username":"juliar75","district_password":"ohzae9eeR9y"},"district":"4fd43cc56d11340000000005","dob":"2/20/1995","ell_status":"N","email":"julia_r@example.com","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.740Z","location":{"zip":"10455"},"name":{"first":"Julia","middle":"R","last":"Reinger"},"race":"Black
1151
+ encoding: UTF-8
1152
+ string: '{"data":[{"data":{"created":"2014-02-26T21:15:20.614Z","credentials":{"district_username":"juliar75","district_password":"ohzae9eeR9y"},"district":"4fd43cc56d11340000000005","dob":"2/20/1995","ell_status":"N","email":"julia_r@example.com","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.740Z","location":{"zip":"10455"},"name":{"first":"Julia","middle":"R","last":"Reinger"},"race":"Black
1147
1153
  or African American","school":"530e595026403103360ff9fd","sis_id":"994416375","state_id":"273880394","student_number":"994416375","id":"530e5968049e75a9262d0648"},"uri":"/v1.1/students/530e5968049e75a9262d0648"},{"data":{"created":"2014-02-26T21:15:20.617Z","credentials":{"district_username":"kateg20","district_password":"eipieYeiz4"},"district":"4fd43cc56d11340000000005","dob":"9/2/1996","ell_status":"Y","email":"g.kate@example.com","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.743Z","location":{"zip":"11239"},"name":{"first":"Kate","middle":"J","last":"Gutmann"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"995477320","state_id":"866850842","student_number":"995477320","id":"530e5968049e75a9262d0649"},"uri":"/v1.1/students/530e5968049e75a9262d0649"},{"data":{"created":"2014-02-26T21:15:20.620Z","credentials":{"district_username":"ritaq35","district_password":"riv4Ahqu4o"},"district":"4fd43cc56d11340000000005","dob":"6/3/2001","ell_status":"N","email":"q.rita@example.org","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.747Z","location":{"zip":"10022"},"name":{"first":"Rita","middle":"C","last":"Quigley"},"race":"Black
1148
1154
  or African American","school":"530e595026403103360ff9ff","sis_id":"998414435","state_id":"134063200","student_number":"998414435","id":"530e5968049e75a9262d064a"},"uri":"/v1.1/students/530e5968049e75a9262d064a"},{"data":{"created":"2014-02-26T21:15:20.623Z","credentials":{"district_username":"markr17","district_password":"yo0ohYo6ro"},"district":"4fd43cc56d11340000000005","dob":"8/24/1996","ell_status":"N","email":"r_mark@example.com","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.750Z","location":{"zip":"10034"},"name":{"first":"Mark","middle":"S","last":"Reilly"},"race":"American
1149
1155
  Indian","school":"530e595026403103360ff9fd","sis_id":"999447617","state_id":"651135073","student_number":"999447617","id":"530e5968049e75a9262d064b"},"uri":"/v1.1/students/530e5968049e75a9262d064b"}],"links":[{"rel":"self","uri":"/v1.1/students?starting_after=530e5968049e75a9262d0647"},{"rel":"prev","uri":"/v1.1/students?ending_before=530e5968049e75a9262d0648"}]}'
@@ -1174,22 +1180,28 @@ http_interactions:
1174
1180
  Access-Control-Allow-Methods:
1175
1181
  - GET,PATCH,POST,DELETE
1176
1182
  Access-Control-Allow-Origin:
1177
- - ! '*'
1183
+ - "*"
1178
1184
  Content-Type:
1179
1185
  - application/json; charset=utf-8
1180
1186
  Date:
1181
- - Sat, 13 Sep 2014 00:04:53 GMT
1182
- Server:
1183
- - nginx/1.4.7
1187
+ - Sat, 26 Sep 2015 17:41:04 GMT
1184
1188
  X-Powered-By:
1185
1189
  - Express
1190
+ X-Ratelimit-Bucket:
1191
+ - bearer
1192
+ X-Ratelimit-Limit:
1193
+ - '1200'
1194
+ X-Ratelimit-Remaining:
1195
+ - '1154'
1196
+ X-Ratelimit-Reset:
1197
+ - '1443289303'
1186
1198
  Content-Length:
1187
1199
  - '73'
1188
1200
  Connection:
1189
1201
  - keep-alive
1190
1202
  body:
1191
- encoding: US-ASCII
1192
- string: ! '{"count":1004,"links":[{"rel":"self","uri":"/v1.1/students?count=true"}]}'
1203
+ encoding: UTF-8
1204
+ string: '{"count":1004,"links":[{"rel":"self","uri":"/v1.1/students?count=true"}]}'
1193
1205
  http_version:
1194
- recorded_at: Sat, 13 Sep 2014 00:04:53 GMT
1206
+ recorded_at: Sat, 26 Sep 2015 17:41:05 GMT
1195
1207
  recorded_with: VCR 2.9.3