clever-ruby 0.14.0 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (297) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -0
  3. data/Gemfile +4 -1
  4. data/Makefile +10 -0
  5. data/README.md +175 -68
  6. data/Rakefile +6 -36
  7. data/circle.yml +1 -1
  8. data/clever-ruby.gemspec +43 -33
  9. data/docs/BadRequest.md +8 -0
  10. data/docs/DataApi.md +2144 -0
  11. data/docs/District.md +10 -0
  12. data/docs/DistrictAdmin.md +12 -0
  13. data/docs/DistrictAdminResponse.md +8 -0
  14. data/docs/DistrictAdminsResponse.md +8 -0
  15. data/docs/DistrictObject.md +8 -0
  16. data/docs/DistrictResponse.md +8 -0
  17. data/docs/DistrictStatus.md +15 -0
  18. data/docs/DistrictStatusResponse.md +8 -0
  19. data/docs/DistrictsCreated.md +10 -0
  20. data/docs/DistrictsDeleted.md +10 -0
  21. data/docs/DistrictsResponse.md +8 -0
  22. data/docs/DistrictsUpdated.md +10 -0
  23. data/docs/Event.md +9 -0
  24. data/docs/EventResponse.md +8 -0
  25. data/docs/EventsApi.md +424 -0
  26. data/docs/EventsResponse.md +8 -0
  27. data/docs/GradeLevelsResponse.md +8 -0
  28. data/docs/InternalError.md +8 -0
  29. data/docs/Location.md +13 -0
  30. data/docs/Name.md +10 -0
  31. data/docs/NotFound.md +8 -0
  32. data/docs/Principal.md +9 -0
  33. data/docs/School.md +22 -0
  34. data/docs/SchoolAdmin.md +14 -0
  35. data/docs/SchoolAdminObject.md +8 -0
  36. data/docs/SchoolAdminResponse.md +8 -0
  37. data/docs/SchoolAdminsResponse.md +8 -0
  38. data/docs/SchoolObject.md +8 -0
  39. data/docs/SchoolResponse.md +8 -0
  40. data/docs/SchooladminsCreated.md +10 -0
  41. data/docs/SchooladminsDeleted.md +10 -0
  42. data/docs/SchooladminsUpdated.md +10 -0
  43. data/docs/SchoolsCreated.md +10 -0
  44. data/docs/SchoolsDeleted.md +10 -0
  45. data/docs/SchoolsResponse.md +8 -0
  46. data/docs/SchoolsUpdated.md +10 -0
  47. data/docs/Section.md +25 -0
  48. data/docs/SectionObject.md +8 -0
  49. data/docs/SectionResponse.md +8 -0
  50. data/docs/SectionsCreated.md +10 -0
  51. data/docs/SectionsDeleted.md +10 -0
  52. data/docs/SectionsResponse.md +8 -0
  53. data/docs/SectionsUpdated.md +10 -0
  54. data/docs/Student.md +27 -0
  55. data/docs/StudentContact.md +16 -0
  56. data/docs/StudentContactObject.md +8 -0
  57. data/docs/StudentContactResponse.md +8 -0
  58. data/docs/StudentContactsResponse.md +8 -0
  59. data/docs/StudentObject.md +8 -0
  60. data/docs/StudentResponse.md +8 -0
  61. data/docs/StudentcontactsCreated.md +10 -0
  62. data/docs/StudentcontactsDeleted.md +10 -0
  63. data/docs/StudentcontactsUpdated.md +10 -0
  64. data/docs/StudentsCreated.md +10 -0
  65. data/docs/StudentsDeleted.md +10 -0
  66. data/docs/StudentsResponse.md +8 -0
  67. data/docs/StudentsUpdated.md +10 -0
  68. data/docs/Teacher.md +19 -0
  69. data/docs/TeacherObject.md +8 -0
  70. data/docs/TeacherResponse.md +8 -0
  71. data/docs/TeachersCreated.md +10 -0
  72. data/docs/TeachersDeleted.md +10 -0
  73. data/docs/TeachersResponse.md +8 -0
  74. data/docs/TeachersUpdated.md +10 -0
  75. data/docs/Term.md +10 -0
  76. data/git_push.sh +55 -0
  77. data/instructions.md +12 -0
  78. data/lib/clever-ruby.rb +89 -318
  79. data/lib/clever-ruby/api/data_api.rb +2090 -0
  80. data/lib/clever-ruby/api/events_api.rb +429 -0
  81. data/lib/clever-ruby/api_client.rb +401 -0
  82. data/lib/clever-ruby/api_error.rb +37 -0
  83. data/lib/clever-ruby/configuration.rb +187 -25
  84. data/lib/clever-ruby/models/bad_request.rb +187 -0
  85. data/lib/clever-ruby/models/district.rb +205 -0
  86. data/lib/clever-ruby/models/district_admin.rb +223 -0
  87. data/lib/clever-ruby/models/district_admin_response.rb +187 -0
  88. data/lib/clever-ruby/models/district_admins_response.rb +189 -0
  89. data/lib/clever-ruby/models/district_object.rb +187 -0
  90. data/lib/clever-ruby/models/district_response.rb +187 -0
  91. data/lib/clever-ruby/models/district_status.rb +250 -0
  92. data/lib/clever-ruby/models/district_status_response.rb +187 -0
  93. data/lib/clever-ruby/models/districts_created.rb +206 -0
  94. data/lib/clever-ruby/models/districts_deleted.rb +207 -0
  95. data/lib/clever-ruby/models/districts_response.rb +189 -0
  96. data/lib/clever-ruby/models/districts_updated.rb +207 -0
  97. data/lib/clever-ruby/models/event.rb +201 -0
  98. data/lib/clever-ruby/models/event_response.rb +187 -0
  99. data/lib/clever-ruby/models/events_response.rb +189 -0
  100. data/lib/clever-ruby/models/grade_levels_response.rb +189 -0
  101. data/lib/clever-ruby/models/internal_error.rb +187 -0
  102. data/lib/clever-ruby/models/location.rb +232 -0
  103. data/lib/clever-ruby/models/name.rb +205 -0
  104. data/lib/clever-ruby/models/not_found.rb +187 -0
  105. data/lib/clever-ruby/models/principal.rb +196 -0
  106. data/lib/clever-ruby/models/school.rb +313 -0
  107. data/lib/clever-ruby/models/school_admin.rb +243 -0
  108. data/lib/clever-ruby/models/school_admin_object.rb +187 -0
  109. data/lib/clever-ruby/models/school_admin_response.rb +187 -0
  110. data/lib/clever-ruby/models/school_admins_response.rb +189 -0
  111. data/lib/clever-ruby/models/school_object.rb +187 -0
  112. data/lib/clever-ruby/models/school_response.rb +187 -0
  113. data/lib/clever-ruby/models/schooladmins_created.rb +207 -0
  114. data/lib/clever-ruby/models/schooladmins_deleted.rb +207 -0
  115. data/lib/clever-ruby/models/schooladmins_updated.rb +207 -0
  116. data/lib/clever-ruby/models/schools_created.rb +207 -0
  117. data/lib/clever-ruby/models/schools_deleted.rb +207 -0
  118. data/lib/clever-ruby/models/schools_response.rb +189 -0
  119. data/lib/clever-ruby/models/schools_updated.rb +207 -0
  120. data/lib/clever-ruby/models/section.rb +344 -0
  121. data/lib/clever-ruby/models/section_object.rb +187 -0
  122. data/lib/clever-ruby/models/section_response.rb +187 -0
  123. data/lib/clever-ruby/models/sections_created.rb +207 -0
  124. data/lib/clever-ruby/models/sections_deleted.rb +207 -0
  125. data/lib/clever-ruby/models/sections_response.rb +189 -0
  126. data/lib/clever-ruby/models/sections_updated.rb +207 -0
  127. data/lib/clever-ruby/models/student.rb +360 -0
  128. data/lib/clever-ruby/models/student_contact.rb +259 -0
  129. data/lib/clever-ruby/models/student_contact_object.rb +187 -0
  130. data/lib/clever-ruby/models/student_contact_response.rb +187 -0
  131. data/lib/clever-ruby/models/student_contacts_response.rb +189 -0
  132. data/lib/clever-ruby/models/student_object.rb +187 -0
  133. data/lib/clever-ruby/models/student_response.rb +187 -0
  134. data/lib/clever-ruby/models/studentcontacts_created.rb +207 -0
  135. data/lib/clever-ruby/models/studentcontacts_deleted.rb +207 -0
  136. data/lib/clever-ruby/models/studentcontacts_updated.rb +207 -0
  137. data/lib/clever-ruby/models/students_created.rb +196 -0
  138. data/lib/clever-ruby/models/students_deleted.rb +206 -0
  139. data/lib/clever-ruby/models/students_response.rb +189 -0
  140. data/lib/clever-ruby/models/students_updated.rb +207 -0
  141. data/lib/clever-ruby/models/teacher.rb +288 -0
  142. data/lib/clever-ruby/models/teacher_object.rb +187 -0
  143. data/lib/clever-ruby/models/teacher_response.rb +187 -0
  144. data/lib/clever-ruby/models/teachers_created.rb +207 -0
  145. data/lib/clever-ruby/models/teachers_deleted.rb +207 -0
  146. data/lib/clever-ruby/models/teachers_response.rb +189 -0
  147. data/lib/clever-ruby/models/teachers_updated.rb +207 -0
  148. data/lib/clever-ruby/models/term.rb +205 -0
  149. data/lib/clever-ruby/version.rb +12 -4
  150. data/override/api_client.rb +401 -0
  151. data/override/config.json +5 -0
  152. data/override/models/districts_created.rb +206 -0
  153. data/override/models/districts_deleted.rb +207 -0
  154. data/override/models/districts_updated.rb +207 -0
  155. data/override/models/schooladmins_created.rb +207 -0
  156. data/override/models/schooladmins_deleted.rb +207 -0
  157. data/override/models/schooladmins_updated.rb +207 -0
  158. data/override/models/schools_created.rb +207 -0
  159. data/override/models/schools_deleted.rb +207 -0
  160. data/override/models/schools_updated.rb +207 -0
  161. data/override/models/sections_created.rb +207 -0
  162. data/override/models/sections_deleted.rb +207 -0
  163. data/override/models/sections_updated.rb +207 -0
  164. data/override/models/studentcontacts_created.rb +207 -0
  165. data/override/models/studentcontacts_deleted.rb +207 -0
  166. data/override/models/studentcontacts_updated.rb +207 -0
  167. data/override/models/students_created.rb +196 -0
  168. data/override/models/students_deleted.rb +206 -0
  169. data/override/models/students_updated.rb +207 -0
  170. data/override/models/teachers_created.rb +207 -0
  171. data/override/models/teachers_deleted.rb +207 -0
  172. data/override/models/teachers_updated.rb +207 -0
  173. data/override/override.sh +9 -0
  174. data/sample/sample.rb +16 -0
  175. metadata +252 -293
  176. data/.document +0 -5
  177. data/.gitignore +0 -22
  178. data/.rubocop.yml +0 -4
  179. data/.yardopts +0 -2
  180. data/LICENSE.txt +0 -20
  181. data/lib/clever-ruby/api_operations/list.rb +0 -130
  182. data/lib/clever-ruby/api_operations/nested_list.rb +0 -95
  183. data/lib/clever-ruby/api_operations/page.rb +0 -71
  184. data/lib/clever-ruby/api_operations/pagelist.rb +0 -43
  185. data/lib/clever-ruby/api_operations/results_list.rb +0 -31
  186. data/lib/clever-ruby/api_resource.rb +0 -174
  187. data/lib/clever-ruby/clever_object.rb +0 -246
  188. data/lib/clever-ruby/district.rb +0 -75
  189. data/lib/clever-ruby/district_admin.rb +0 -45
  190. data/lib/clever-ruby/errors/api_connection_error.rb +0 -5
  191. data/lib/clever-ruby/errors/api_error.rb +0 -5
  192. data/lib/clever-ruby/errors/authentication_error.rb +0 -5
  193. data/lib/clever-ruby/errors/clever_error.rb +0 -52
  194. data/lib/clever-ruby/errors/invalid_request_error.rb +0 -17
  195. data/lib/clever-ruby/event.rb +0 -61
  196. data/lib/clever-ruby/json.rb +0 -34
  197. data/lib/clever-ruby/nested_resource.rb +0 -41
  198. data/lib/clever-ruby/school.rb +0 -17
  199. data/lib/clever-ruby/school_admin.rb +0 -19
  200. data/lib/clever-ruby/section.rb +0 -17
  201. data/lib/clever-ruby/student.rb +0 -30
  202. data/lib/clever-ruby/teacher.rb +0 -17
  203. data/lib/clever-ruby/util.rb +0 -108
  204. data/test/data/vcr_cassettes/Clever_APIOperations_List/counts_district_properly.yml +0 -52
  205. data/test/data/vcr_cassettes/Clever_APIOperations_List/counts_event_properly.yml +0 -52
  206. data/test/data/vcr_cassettes/Clever_APIOperations_List/counts_school_admin_properly.yml +0 -52
  207. data/test/data/vcr_cassettes/Clever_APIOperations_List/counts_school_properly.yml +0 -52
  208. data/test/data/vcr_cassettes/Clever_APIOperations_List/counts_section_properly.yml +0 -52
  209. data/test/data/vcr_cassettes/Clever_APIOperations_List/counts_student_properly.yml +0 -52
  210. data/test/data/vcr_cassettes/Clever_APIOperations_List/counts_teacher_properly.yml +0 -52
  211. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_a_single_district.yml +0 -101
  212. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_a_single_district_admin.yml +0 -90
  213. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_a_single_event.yml +0 -124
  214. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_a_single_school.yml +0 -113
  215. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_a_single_school_admin.yml +0 -101
  216. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_a_single_section.yml +0 -368
  217. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_a_single_student.yml +0 -176
  218. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_a_single_teacher.yml +0 -191
  219. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_districts_by_page.yml +0 -101
  220. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_districts_with_multiple_ids.yml +0 -101
  221. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_events_by_page.yml +0 -122
  222. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_events_with_multiple_ids.yml +0 -131
  223. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_school_admins_by_page.yml +0 -101
  224. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_school_admins_with_multiple_ids.yml +0 -101
  225. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_schools_by_page.yml +0 -110
  226. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_schools_with_multiple_ids.yml +0 -116
  227. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_sections_by_page.yml +0 -1168
  228. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_sections_with_multiple_ids.yml +0 -163
  229. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_students_by_page.yml +0 -1207
  230. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_students_with_multiple_ids.yml +0 -127
  231. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_teachers_by_page.yml +0 -190
  232. data/test/data/vcr_cassettes/Clever_APIOperations_List/finds_teachers_with_multiple_ids.yml +0 -131
  233. data/test/data/vcr_cassettes/Clever_APIOperations_List/retrieves_all_district.yml +0 -101
  234. data/test/data/vcr_cassettes/Clever_APIOperations_List/retrieves_all_event.yml +0 -122
  235. data/test/data/vcr_cassettes/Clever_APIOperations_List/retrieves_all_school.yml +0 -110
  236. data/test/data/vcr_cassettes/Clever_APIOperations_List/retrieves_all_school_admin.yml +0 -101
  237. data/test/data/vcr_cassettes/Clever_APIOperations_List/retrieves_all_section.yml +0 -1168
  238. data/test/data/vcr_cassettes/Clever_APIOperations_List/retrieves_all_student.yml +0 -1207
  239. data/test/data/vcr_cassettes/Clever_APIOperations_List/retrieves_all_teacher.yml +0 -190
  240. data/test/data/vcr_cassettes/Clever_District/pages_methods/pages_a_district_s_events.yml +0 -526
  241. data/test/data/vcr_cassettes/Clever_District/pages_methods/pages_a_district_s_schools.yml +0 -240
  242. data/test/data/vcr_cassettes/Clever_District/pages_methods/pages_a_district_s_sections.yml +0 -3674
  243. data/test/data/vcr_cassettes/Clever_District/pages_methods/pages_a_district_s_students.yml +0 -2387
  244. data/test/data/vcr_cassettes/Clever_District/pages_methods/pages_a_district_s_teachers.yml +0 -717
  245. data/test/data/vcr_cassettes/Clever_District_without_global_token/pages_methods/pages_a_district_s_events.yml +0 -152
  246. data/test/data/vcr_cassettes/Clever_District_without_global_token/pages_methods/pages_a_district_s_schools.yml +0 -211
  247. data/test/data/vcr_cassettes/Clever_District_without_global_token/pages_methods/pages_a_district_s_sections.yml +0 -3649
  248. data/test/data/vcr_cassettes/Clever_District_without_global_token/pages_methods/pages_a_district_s_students.yml +0 -2362
  249. data/test/data/vcr_cassettes/Clever_District_without_global_token/pages_methods/pages_a_district_s_teachers.yml +0 -688
  250. data/test/data/vcr_cassettes/Clever_District_without_global_token/retrieves_a_district_s_events.yml +0 -89
  251. data/test/data/vcr_cassettes/Clever_District_without_global_token/retrieves_a_district_s_school_admins.yml +0 -101
  252. data/test/data/vcr_cassettes/Clever_District_without_global_token/retrieves_a_district_s_schools.yml +0 -164
  253. data/test/data/vcr_cassettes/Clever_District_without_global_token/retrieves_a_district_s_sections.yml +0 -1168
  254. data/test/data/vcr_cassettes/Clever_District_without_global_token/retrieves_a_district_s_students.yml +0 -1207
  255. data/test/data/vcr_cassettes/Clever_District_without_global_token/retrieves_a_district_s_teachers.yml +0 -324
  256. data/test/data/vcr_cassettes/Clever_NestedResource/must_include_auth_token_in_linked_resources.yml +0 -197
  257. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_district_s_events.yml +0 -237
  258. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_district_s_schools.yml +0 -217
  259. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_district_s_sections.yml +0 -2333
  260. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_district_s_students.yml +0 -2411
  261. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_district_s_teachers.yml +0 -377
  262. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_school_admin_s_schools.yml +0 -205
  263. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_school_s_district.yml +0 -162
  264. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_school_s_events.yml +0 -215
  265. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_school_s_sections.yml +0 -1153
  266. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_school_s_students.yml +0 -1081
  267. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_school_s_teachers.yml +0 -283
  268. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_section_s_district.yml +0 -417
  269. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_section_s_events.yml +0 -470
  270. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_section_s_school.yml +0 -420
  271. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_section_s_students.yml +0 -482
  272. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_section_s_teacher.yml +0 -418
  273. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_student_s_district.yml +0 -226
  274. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_student_s_events.yml +0 -279
  275. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_student_s_school.yml +0 -229
  276. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_student_s_sections.yml +0 -301
  277. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_student_s_teachers.yml +0 -277
  278. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_teacher_s_district.yml +0 -240
  279. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_teacher_s_events.yml +0 -293
  280. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_teacher_s_school.yml +0 -243
  281. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_teacher_s_sections.yml +0 -321
  282. data/test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_teacher_s_students.yml +0 -323
  283. data/test/data/vcr_cassettes/Error_handling/raises_an_InvalidRequestError_when_given_a_bad_created_since.yml +0 -151
  284. data/test/data/vcr_cassettes/Optional_attributes/has_the_expected_value_for_an_optional_attribute_that_is_present.yml +0 -55
  285. data/test/data/vcr_cassettes/last_method/page/has_working_first_and_last_methods.yml +0 -800
  286. data/test/integration/api_operations/list_test.rb +0 -117
  287. data/test/integration/district_test.rb +0 -53
  288. data/test/integration/district_with_non_global_token_test.rb +0 -88
  289. data/test/integration/error_handling_test.rb +0 -17
  290. data/test/integration/last_test.rb +0 -56
  291. data/test/integration/nested_resource_test.rb +0 -31
  292. data/test/test_helper.rb +0 -18
  293. data/test/unit/api_resource_test.rb +0 -48
  294. data/test/unit/clever_test.rb +0 -65
  295. data/test/unit/configuration_test.rb +0 -37
  296. data/test/unit/event_test.rb +0 -57
  297. data/test/unit/optional_attributes_test.rb +0 -27
@@ -1,163 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: https://api.clever.com/v1.1/sections?limit=20
6
- body:
7
- encoding: US-ASCII
8
- string: ''
9
- headers:
10
- Accept:
11
- - "*/*; q=0.5, application/xml"
12
- Accept-Encoding:
13
- - gzip, deflate
14
- Authorization:
15
- - Bearer DEMO_TOKEN
16
- User-Agent:
17
- - Ruby
18
- response:
19
- status:
20
- code: 200
21
- message: OK
22
- headers:
23
- Access-Control-Allow-Headers:
24
- - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
25
- Access-Control-Allow-Methods:
26
- - GET,PATCH,POST,DELETE
27
- Access-Control-Allow-Origin:
28
- - "*"
29
- Content-Type:
30
- - application/json; charset=utf-8
31
- Date:
32
- - Sat, 26 Sep 2015 17:41:26 GMT
33
- Etag:
34
- - '"305945234"'
35
- X-Powered-By:
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'
45
- Content-Length:
46
- - '22346'
47
- Connection:
48
- - keep-alive
49
- body:
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
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
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
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
55
- 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
56
- 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
57
- Guidance","course_number":"104","created":"2014-02-26T21:15:37.942Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:37.945Z","name":"Group
58
- Guidance - 104 - J. Isaacs (Section 4)","period":"0","school":"530e595026403103360ff9fd","sis_id":"584","students":["530e5960049e75a9262cff39","530e5960049e75a9262cff48","530e5961049e75a9262d0056","530e5961049e75a9262d0082","530e5962049e75a9262d00b9","530e5962049e75a9262d00e3","530e5962049e75a9262d012e","530e5963049e75a9262d01ff","530e5963049e75a9262d0207","530e5964049e75a9262d0262","530e5964049e75a9262d0282","530e5965049e75a9262d031b","530e5965049e75a9262d0383","530e5965049e75a9262d03cf","530e5966049e75a9262d041c","530e5967049e75a9262d058b","530e5967049e75a9262d0594"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c14","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e5979049e75a9262d0af5"},"uri":"/v1.1/sections/530e5979049e75a9262d0af5"},{"data":{"course_name":"Group
59
- Guidance","course_number":"105","created":"2014-02-26T21:15:37.946Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:37.948Z","name":"Group
60
- Guidance - 105 - J. Cummings (Section 5)","period":"0","school":"530e595026403103360ff9fd","sis_id":"585","students":["530e5962049e75a9262d00b5","530e5962049e75a9262d00b6","530e5962049e75a9262d0102","530e5962049e75a9262d012b","530e5963049e75a9262d01cc","530e5963049e75a9262d0202","530e5964049e75a9262d028e","530e5964049e75a9262d0297","530e5965049e75a9262d0381","530e5965049e75a9262d03d2","530e5966049e75a9262d043c","530e5967049e75a9262d0549","530e5967049e75a9262d0577","530e5967049e75a9262d0586","530e5967049e75a9262d059e","530e5967049e75a9262d05b9","530e5968049e75a9262d060e"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c16","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e5979049e75a9262d0af6"},"uri":"/v1.1/sections/530e5979049e75a9262d0af6"},{"data":{"course_name":"Group
61
- Guidance","course_number":"106","created":"2014-02-26T21:15:37.950Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:37.952Z","name":"Group
62
- Guidance - 106 - M. Nagle (Section 6)","period":"0","school":"530e595026403103360ff9fd","sis_id":"586","students":["530e5960049e75a9262cff1f","530e5960049e75a9262cff21","530e5960049e75a9262cff7b","530e5960049e75a9262cff96","530e5961049e75a9262d0037","530e5962049e75a9262d0133","530e5962049e75a9262d0172","530e5963049e75a9262d017f","530e5963049e75a9262d01f5","530e5963049e75a9262d0240","530e5964049e75a9262d0286","530e5966049e75a9262d0455","530e5967049e75a9262d0544","530e5968049e75a9262d05e8","530e5968049e75a9262d0608","530e5968049e75a9262d0617","530e5968049e75a9262d0645"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c17","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e5979049e75a9262d0af7"},"uri":"/v1.1/sections/530e5979049e75a9262d0af7"},{"data":{"course_name":"Sixth
63
- Grade Advisory","course_number":"601","created":"2014-02-26T21:15:37.954Z","district":"4fd43cc56d11340000000005","grade":"6","last_modified":"2014-02-26T21:15:37.957Z","name":"Sixth
64
- Grade Advisory - 601 - S. Madison","period":"4","school":"530e595026403103360ff9ff","sis_id":"587","students":["530e5960049e75a9262cff4e","530e5960049e75a9262cff86","530e5961049e75a9262cffb4","530e5961049e75a9262cffe6","530e5961049e75a9262d000f","530e5964049e75a9262d0266","530e5964049e75a9262d02b3","530e5964049e75a9262d02b8","530e5964049e75a9262d02f6","530e5965049e75a9262d034c","530e5965049e75a9262d0389","530e5966049e75a9262d03fa","530e5966049e75a9262d0433","530e5966049e75a9262d0494","530e5966049e75a9262d0497","530e5966049e75a9262d04af","530e5967049e75a9262d051d","530e5967049e75a9262d058f","530e5967049e75a9262d05ae","530e5967049e75a9262d05b8","530e5968049e75a9262d05d7","530e5968049e75a9262d05d9","530e5968049e75a9262d060f","530e5968049e75a9262d062e","530e5968049e75a9262d0641","530e5968049e75a9262d064a"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c0e","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e5979049e75a9262d0af8"},"uri":"/v1.1/sections/530e5979049e75a9262d0af8"},{"data":{"course_name":"Sixth
65
- Grade Advisory","course_number":"602","created":"2014-02-26T21:15:37.959Z","district":"4fd43cc56d11340000000005","grade":"6","last_modified":"2014-02-26T21:15:37.961Z","name":"Sixth
66
- Grade Advisory - 602 - R. Monroe (Section 2)","period":"4","school":"530e595026403103360ff9ff","sis_id":"588","students":["530e5960049e75a9262cff61","530e5960049e75a9262cff64","530e5961049e75a9262cffe7","530e5961049e75a9262cffed","530e5961049e75a9262cfff5","530e5961049e75a9262d005e","530e5962049e75a9262d0098","530e5962049e75a9262d00da","530e5962049e75a9262d0125","530e5962049e75a9262d0129","530e5962049e75a9262d013b","530e5963049e75a9262d0220","530e5963049e75a9262d025e","530e5963049e75a9262d0260","530e5964049e75a9262d027d","530e5964049e75a9262d02b2","530e5965049e75a9262d03c3","530e5965049e75a9262d03c5","530e5966049e75a9262d041e","530e5966049e75a9262d0460","530e5967049e75a9262d04df","530e5967049e75a9262d055b","530e5968049e75a9262d05d6","530e5968049e75a9262d05ff","530e5968049e75a9262d060b","530e5968049e75a9262d0626"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c0f","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e5979049e75a9262d0af9"},"uri":"/v1.1/sections/530e5979049e75a9262d0af9"},{"data":{"course_name":"Sixth
67
- Grade Advisory","course_number":"603","created":"2014-02-26T21:15:37.963Z","district":"4fd43cc56d11340000000005","grade":"6","last_modified":"2014-02-26T21:15:37.966Z","name":"Sixth
68
- Grade Advisory - 603 - K. Hudson (Section 3)","period":"4","school":"530e595026403103360ff9ff","sis_id":"589","students":["530e5960049e75a9262cff25","530e5960049e75a9262cff49","530e5960049e75a9262cff50","530e5961049e75a9262cffd7","530e5961049e75a9262d0009","530e5961049e75a9262d0083","530e5962049e75a9262d00a0","530e5962049e75a9262d00b1","530e5962049e75a9262d00d4","530e5962049e75a9262d00e0","530e5962049e75a9262d010b","530e5962049e75a9262d0132","530e5962049e75a9262d0168","530e5963049e75a9262d0204","530e5965049e75a9262d036b","530e5965049e75a9262d03b7","530e5966049e75a9262d041a","530e5966049e75a9262d0472","530e5966049e75a9262d04c1","530e5967049e75a9262d0522","530e5967049e75a9262d0589","530e5967049e75a9262d05c4","530e5968049e75a9262d05cf","530e5968049e75a9262d05df","530e5968049e75a9262d05f3","530e5968049e75a9262d062d"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c10","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e5979049e75a9262d0afa"},"uri":"/v1.1/sections/530e5979049e75a9262d0afa"},{"data":{"course_name":"Seventh
69
- Grade Advisory","course_number":"701","created":"2014-02-26T21:15:37.967Z","district":"4fd43cc56d11340000000005","grade":"7","last_modified":"2014-02-26T21:15:37.970Z","name":"Seventh
70
- Grade Advisory - 701 - S. Madison","period":"1","school":"530e595026403103360ff9ff","sis_id":"590","students":["530e5960049e75a9262cff44","530e5960049e75a9262cff9a","530e5961049e75a9262cffc0","530e5961049e75a9262cffd5","530e5961049e75a9262cffe2","530e5961049e75a9262cffe3","530e5961049e75a9262d0015","530e5961049e75a9262d008a","530e5962049e75a9262d0155","530e5962049e75a9262d015e","530e5963049e75a9262d01a3","530e5963049e75a9262d01f2","530e5963049e75a9262d0233","530e5964049e75a9262d0275","530e5964049e75a9262d029f","530e5964049e75a9262d02c0","530e5965049e75a9262d0323","530e5965049e75a9262d034a","530e5965049e75a9262d0354","530e5966049e75a9262d046d","530e5966049e75a9262d0489","530e5966049e75a9262d04bc","530e5966049e75a9262d04d9","530e5967049e75a9262d056d","530e5967049e75a9262d05bb","530e5968049e75a9262d0621"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c0e","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e5979049e75a9262d0afb"},"uri":"/v1.1/sections/530e5979049e75a9262d0afb"},{"data":{"course_name":"Seventh
71
- Grade Advisory","course_number":"702","created":"2014-02-26T21:15:37.971Z","district":"4fd43cc56d11340000000005","grade":"7","last_modified":"2014-02-26T21:15:37.973Z","name":"Seventh
72
- Grade Advisory - 702 - R. Monroe","period":"1","school":"530e595026403103360ff9ff","sis_id":"591","students":["530e5961049e75a9262cffcb","530e5961049e75a9262d001c","530e5961049e75a9262d006e","530e5961049e75a9262d008b","530e5962049e75a9262d00b2","530e5962049e75a9262d00e4","530e5962049e75a9262d0144","530e5962049e75a9262d0164","530e5963049e75a9262d01a8","530e5964049e75a9262d029b","530e5964049e75a9262d02e9","530e5965049e75a9262d036e","530e5965049e75a9262d03aa","530e5965049e75a9262d03bc","530e5965049e75a9262d03c7","530e5965049e75a9262d03dd","530e5966049e75a9262d041f","530e5967049e75a9262d04e9","530e5967049e75a9262d0523","530e5967049e75a9262d0536","530e5967049e75a9262d0560","530e5967049e75a9262d05b0","530e5967049e75a9262d05b4","530e5968049e75a9262d060d","530e5968049e75a9262d0620","530e5968049e75a9262d0637"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c0f","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e5979049e75a9262d0afc"},"uri":"/v1.1/sections/530e5979049e75a9262d0afc"},{"data":{"course_name":"Seventh
73
- Grade Advisory","course_number":"703","created":"2014-02-26T21:15:37.977Z","district":"4fd43cc56d11340000000005","grade":"7","last_modified":"2014-02-26T21:15:37.978Z","name":"Seventh
74
- Grade Advisory - 703 - K. Hudson","period":"1","school":"530e595026403103360ff9ff","sis_id":"592","students":["530e5960049e75a9262cff59","530e5960049e75a9262cff99","530e5961049e75a9262cffea","530e5961049e75a9262cffeb","530e5961049e75a9262cfffd","530e5961049e75a9262d0023","530e5961049e75a9262d0060","530e5962049e75a9262d010c","530e5962049e75a9262d0157","530e5963049e75a9262d0200","530e5963049e75a9262d0206","530e5963049e75a9262d022d","530e5963049e75a9262d0234","530e5963049e75a9262d023a","530e5964049e75a9262d0269","530e5964049e75a9262d02de","530e5964049e75a9262d02fb","530e5964049e75a9262d0314","530e5965049e75a9262d0347","530e5965049e75a9262d03d8","530e5965049e75a9262d03df","530e5966049e75a9262d0417","530e5966049e75a9262d0419","530e5966049e75a9262d04db","530e5967049e75a9262d059b","530e5968049e75a9262d05ee"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c10","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e5979049e75a9262d0afd"},"uri":"/v1.1/sections/530e5979049e75a9262d0afd"},{"data":{"course_name":"Eighth
75
- Grade Advisory","course_number":"801","created":"2014-02-26T21:15:37.980Z","district":"4fd43cc56d11340000000005","grade":"8","last_modified":"2014-02-26T21:15:37.983Z","name":"Eighth
76
- Grade Advisory - 801 - S. Madison","period":"4","school":"530e595026403103360ff9ff","sis_id":"593","students":["530e5960049e75a9262cff29","530e5960049e75a9262cff37","530e5960049e75a9262cff57","530e5960049e75a9262cff79","530e5960049e75a9262cff9e","530e5961049e75a9262cffec","530e5961049e75a9262d0061","530e5962049e75a9262d00c7","530e5962049e75a9262d00e5","530e5962049e75a9262d0108","530e5963049e75a9262d01d1","530e5963049e75a9262d01e4","530e5963049e75a9262d01ed","530e5963049e75a9262d0252","530e5965049e75a9262d038c","530e5965049e75a9262d0396","530e5965049e75a9262d03a0","530e5965049e75a9262d03bb","530e5966049e75a9262d03f0","530e5966049e75a9262d0421","530e5966049e75a9262d049c","530e5967049e75a9262d04e6","530e5967049e75a9262d0542","530e5967049e75a9262d0592","530e5968049e75a9262d061a","530e5968049e75a9262d0629"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c0e","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e5979049e75a9262d0afe"},"uri":"/v1.1/sections/530e5979049e75a9262d0afe"},{"data":{"course_name":"Eighth
77
- Grade Advisory","course_number":"802","created":"2014-02-26T21:15:37.985Z","district":"4fd43cc56d11340000000005","grade":"8","last_modified":"2014-02-26T21:15:37.989Z","name":"Eighth
78
- Grade Advisory - 802 - R. Monroe","period":"4","school":"530e595026403103360ff9ff","sis_id":"594","students":["530e5961049e75a9262d000e","530e5961049e75a9262d0013","530e5962049e75a9262d009c","530e5962049e75a9262d00b4","530e5962049e75a9262d00df","530e5963049e75a9262d01ca","530e5963049e75a9262d01d0","530e5963049e75a9262d01d8","530e5963049e75a9262d01dc","530e5963049e75a9262d0254","530e5964049e75a9262d02cb","530e5965049e75a9262d0356","530e5965049e75a9262d0393","530e5965049e75a9262d0395","530e5965049e75a9262d039c","530e5965049e75a9262d03b8","530e5965049e75a9262d03c2","530e5966049e75a9262d0414","530e5966049e75a9262d0429","530e5966049e75a9262d0446","530e5967049e75a9262d0543","530e5968049e75a9262d05ca","530e5968049e75a9262d0619","530e5968049e75a9262d061b","530e5968049e75a9262d061d","530e5968049e75a9262d0628"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c0f","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e5979049e75a9262d0aff"},"uri":"/v1.1/sections/530e5979049e75a9262d0aff"},{"data":{"course_name":"Eighth
79
- Grade Advisory","course_number":"803","created":"2014-02-26T21:15:37.990Z","district":"4fd43cc56d11340000000005","grade":"8","last_modified":"2014-02-26T21:15:37.993Z","name":"Eighth
80
- Grade Advisory - 803 - K. Hudson","period":"4","school":"530e595026403103360ff9ff","sis_id":"595","students":["530e5960049e75a9262cff22","530e5960049e75a9262cffa4","530e5961049e75a9262cffe5","530e5961049e75a9262d0011","530e5961049e75a9262d0014","530e5962049e75a9262d00e1","530e5962049e75a9262d013d","530e5962049e75a9262d0148","530e5962049e75a9262d017c","530e5963049e75a9262d0199","530e5963049e75a9262d0228","530e5963049e75a9262d022e","530e5964049e75a9262d0291","530e5965049e75a9262d031d","530e5965049e75a9262d0321","530e5965049e75a9262d03d5","530e5965049e75a9262d03ea","530e5966049e75a9262d041b","530e5967049e75a9262d04eb","530e5967049e75a9262d04fd","530e5967049e75a9262d0515","530e5967049e75a9262d053e","530e5967049e75a9262d05aa","530e5967049e75a9262d05af","530e5968049e75a9262d05d8","530e5968049e75a9262d05da"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c10","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e5979049e75a9262d0b00"},"uri":"/v1.1/sections/530e5979049e75a9262d0b00"},{"data":{"course_name":"Group
81
- Guidance","course_number":"901","created":"2014-02-26T21:15:37.994Z","district":"4fd43cc56d11340000000005","grade":"9","last_modified":"2014-08-11T18:35:06.772Z","name":"Group
82
- Guidance - 901 - B. Greene (Section 1)","period":"0","school":"530e595026403103360ff9fd","sis_id":"596","students":["530e5961049e75a9262d001a","530e5961049e75a9262d0034","530e5962049e75a9262d0110","530e5963049e75a9262d01db","530e5963049e75a9262d022f","530e5964049e75a9262d0284","530e5964049e75a9262d0309","530e5965049e75a9262d038e","530e5965049e75a9262d038f","530e5966049e75a9262d046c","530e5966049e75a9262d0471","530e5966049e75a9262d04b4","530e5967049e75a9262d057e","530e5968049e75a9262d0614","530e5968049e75a9262d061c","530e5968049e75a9262d0640"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c11","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e5979049e75a9262d0b01"},"uri":"/v1.1/sections/530e5979049e75a9262d0b01"},{"data":{"course_name":"Group
83
- Guidance","course_number":"902","created":"2014-02-26T21:15:37.998Z","district":"4fd43cc56d11340000000005","grade":"9","last_modified":"2014-02-26T21:15:38.000Z","name":"Group
84
- Guidance - 902 - T. Vaux (Section 2)","period":"0","school":"530e595026403103360ff9fd","sis_id":"597","students":["530e5960049e75a9262cffa2","530e5961049e75a9262cffcd","530e5961049e75a9262d0048","530e5961049e75a9262d0070","530e5961049e75a9262d0085","530e5962049e75a9262d00b7","530e5963049e75a9262d01f8","530e5963049e75a9262d0203","530e5964049e75a9262d0299","530e5964049e75a9262d02f3","530e5966049e75a9262d03fc","530e5967049e75a9262d0501","530e5967049e75a9262d0575","530e5967049e75a9262d05a8","530e5968049e75a9262d05cb","530e5968049e75a9262d05d1"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c12","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e5979049e75a9262d0b02"},"uri":"/v1.1/sections/530e5979049e75a9262d0b02"},{"data":{"course_name":"Group
85
- Guidance","course_number":"903","created":"2014-02-26T21:15:38.002Z","district":"4fd43cc56d11340000000005","grade":"9","last_modified":"2014-02-26T21:15:38.003Z","name":"Group
86
- Guidance - 903 - E. Britcher (Section 3)","period":"0","school":"530e595026403103360ff9fd","sis_id":"598","students":["530e5960049e75a9262cff4b","530e5961049e75a9262d000c","530e5961049e75a9262d005d","530e5961049e75a9262d008f","530e5963049e75a9262d01a2","530e5963049e75a9262d01a4","530e5964049e75a9262d0276","530e5964049e75a9262d02b6","530e5965049e75a9262d033f","530e5965049e75a9262d034f","530e5965049e75a9262d03a2","530e5966049e75a9262d046a","530e5966049e75a9262d0495","530e5966049e75a9262d04d7","530e5967049e75a9262d0590","530e5968049e75a9262d05d4","530e5968049e75a9262d05e2"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c13","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e597a049e75a9262d0b03"},"uri":"/v1.1/sections/530e597a049e75a9262d0b03"},{"data":{"course_name":"Group
87
- 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
88
- 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"},{"data":{"course_name":"Group
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
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"}]}'
91
- http_version:
92
- recorded_at: Sat, 26 Sep 2015 17:41:26 GMT
93
- - request:
94
- method: get
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
96
- body:
97
- encoding: US-ASCII
98
- string: ''
99
- headers:
100
- Accept:
101
- - "*/*; q=0.5, application/xml"
102
- Accept-Encoding:
103
- - gzip, deflate
104
- Authorization:
105
- - Bearer DEMO_TOKEN
106
- User-Agent:
107
- - Ruby
108
- response:
109
- status:
110
- code: 200
111
- message: OK
112
- headers:
113
- Access-Control-Allow-Headers:
114
- - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
115
- Access-Control-Allow-Methods:
116
- - GET,PATCH,POST,DELETE
117
- Access-Control-Allow-Origin:
118
- - "*"
119
- Content-Type:
120
- - application/json; charset=utf-8
121
- Date:
122
- - Sat, 26 Sep 2015 17:41:26 GMT
123
- Etag:
124
- - '"-1689358430"'
125
- X-Powered-By:
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'
135
- Content-Length:
136
- - '11633'
137
- Connection:
138
- - keep-alive
139
- body:
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
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
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
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
145
- Guidance","course_number":"105","created":"2014-02-26T21:15:37.946Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:37.948Z","name":"Group
146
- Guidance - 105 - J. Cummings (Section 5)","period":"0","school":"530e595026403103360ff9fd","sis_id":"585","students":["530e5962049e75a9262d00b5","530e5962049e75a9262d00b6","530e5962049e75a9262d0102","530e5962049e75a9262d012b","530e5963049e75a9262d01cc","530e5963049e75a9262d0202","530e5964049e75a9262d028e","530e5964049e75a9262d0297","530e5965049e75a9262d0381","530e5965049e75a9262d03d2","530e5966049e75a9262d043c","530e5967049e75a9262d0549","530e5967049e75a9262d0577","530e5967049e75a9262d0586","530e5967049e75a9262d059e","530e5967049e75a9262d05b9","530e5968049e75a9262d060e"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c16","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e5979049e75a9262d0af6"},"uri":"/v1.1/sections/530e5979049e75a9262d0af6"},{"data":{"course_name":"Sixth
147
- Grade Advisory","course_number":"601","created":"2014-02-26T21:15:37.954Z","district":"4fd43cc56d11340000000005","grade":"6","last_modified":"2014-02-26T21:15:37.957Z","name":"Sixth
148
- Grade Advisory - 601 - S. Madison","period":"4","school":"530e595026403103360ff9ff","sis_id":"587","students":["530e5960049e75a9262cff4e","530e5960049e75a9262cff86","530e5961049e75a9262cffb4","530e5961049e75a9262cffe6","530e5961049e75a9262d000f","530e5964049e75a9262d0266","530e5964049e75a9262d02b3","530e5964049e75a9262d02b8","530e5964049e75a9262d02f6","530e5965049e75a9262d034c","530e5965049e75a9262d0389","530e5966049e75a9262d03fa","530e5966049e75a9262d0433","530e5966049e75a9262d0494","530e5966049e75a9262d0497","530e5966049e75a9262d04af","530e5967049e75a9262d051d","530e5967049e75a9262d058f","530e5967049e75a9262d05ae","530e5967049e75a9262d05b8","530e5968049e75a9262d05d7","530e5968049e75a9262d05d9","530e5968049e75a9262d060f","530e5968049e75a9262d062e","530e5968049e75a9262d0641","530e5968049e75a9262d064a"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c0e","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e5979049e75a9262d0af8"},"uri":"/v1.1/sections/530e5979049e75a9262d0af8"},{"data":{"course_name":"Sixth
149
- Grade Advisory","course_number":"603","created":"2014-02-26T21:15:37.963Z","district":"4fd43cc56d11340000000005","grade":"6","last_modified":"2014-02-26T21:15:37.966Z","name":"Sixth
150
- Grade Advisory - 603 - K. Hudson (Section 3)","period":"4","school":"530e595026403103360ff9ff","sis_id":"589","students":["530e5960049e75a9262cff25","530e5960049e75a9262cff49","530e5960049e75a9262cff50","530e5961049e75a9262cffd7","530e5961049e75a9262d0009","530e5961049e75a9262d0083","530e5962049e75a9262d00a0","530e5962049e75a9262d00b1","530e5962049e75a9262d00d4","530e5962049e75a9262d00e0","530e5962049e75a9262d010b","530e5962049e75a9262d0132","530e5962049e75a9262d0168","530e5963049e75a9262d0204","530e5965049e75a9262d036b","530e5965049e75a9262d03b7","530e5966049e75a9262d041a","530e5966049e75a9262d0472","530e5966049e75a9262d04c1","530e5967049e75a9262d0522","530e5967049e75a9262d0589","530e5967049e75a9262d05c4","530e5968049e75a9262d05cf","530e5968049e75a9262d05df","530e5968049e75a9262d05f3","530e5968049e75a9262d062d"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c10","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e5979049e75a9262d0afa"},"uri":"/v1.1/sections/530e5979049e75a9262d0afa"},{"data":{"course_name":"Seventh
151
- Grade Advisory","course_number":"702","created":"2014-02-26T21:15:37.971Z","district":"4fd43cc56d11340000000005","grade":"7","last_modified":"2014-02-26T21:15:37.973Z","name":"Seventh
152
- Grade Advisory - 702 - R. Monroe","period":"1","school":"530e595026403103360ff9ff","sis_id":"591","students":["530e5961049e75a9262cffcb","530e5961049e75a9262d001c","530e5961049e75a9262d006e","530e5961049e75a9262d008b","530e5962049e75a9262d00b2","530e5962049e75a9262d00e4","530e5962049e75a9262d0144","530e5962049e75a9262d0164","530e5963049e75a9262d01a8","530e5964049e75a9262d029b","530e5964049e75a9262d02e9","530e5965049e75a9262d036e","530e5965049e75a9262d03aa","530e5965049e75a9262d03bc","530e5965049e75a9262d03c7","530e5965049e75a9262d03dd","530e5966049e75a9262d041f","530e5967049e75a9262d04e9","530e5967049e75a9262d0523","530e5967049e75a9262d0536","530e5967049e75a9262d0560","530e5967049e75a9262d05b0","530e5967049e75a9262d05b4","530e5968049e75a9262d060d","530e5968049e75a9262d0620","530e5968049e75a9262d0637"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c0f","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e5979049e75a9262d0afc"},"uri":"/v1.1/sections/530e5979049e75a9262d0afc"},{"data":{"course_name":"Eighth
153
- Grade Advisory","course_number":"801","created":"2014-02-26T21:15:37.980Z","district":"4fd43cc56d11340000000005","grade":"8","last_modified":"2014-02-26T21:15:37.983Z","name":"Eighth
154
- Grade Advisory - 801 - S. Madison","period":"4","school":"530e595026403103360ff9ff","sis_id":"593","students":["530e5960049e75a9262cff29","530e5960049e75a9262cff37","530e5960049e75a9262cff57","530e5960049e75a9262cff79","530e5960049e75a9262cff9e","530e5961049e75a9262cffec","530e5961049e75a9262d0061","530e5962049e75a9262d00c7","530e5962049e75a9262d00e5","530e5962049e75a9262d0108","530e5963049e75a9262d01d1","530e5963049e75a9262d01e4","530e5963049e75a9262d01ed","530e5963049e75a9262d0252","530e5965049e75a9262d038c","530e5965049e75a9262d0396","530e5965049e75a9262d03a0","530e5965049e75a9262d03bb","530e5966049e75a9262d03f0","530e5966049e75a9262d0421","530e5966049e75a9262d049c","530e5967049e75a9262d04e6","530e5967049e75a9262d0542","530e5967049e75a9262d0592","530e5968049e75a9262d061a","530e5968049e75a9262d0629"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c0e","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e5979049e75a9262d0afe"},"uri":"/v1.1/sections/530e5979049e75a9262d0afe"},{"data":{"course_name":"Eighth
155
- Grade Advisory","course_number":"803","created":"2014-02-26T21:15:37.990Z","district":"4fd43cc56d11340000000005","grade":"8","last_modified":"2014-02-26T21:15:37.993Z","name":"Eighth
156
- Grade Advisory - 803 - K. Hudson","period":"4","school":"530e595026403103360ff9ff","sis_id":"595","students":["530e5960049e75a9262cff22","530e5960049e75a9262cffa4","530e5961049e75a9262cffe5","530e5961049e75a9262d0011","530e5961049e75a9262d0014","530e5962049e75a9262d00e1","530e5962049e75a9262d013d","530e5962049e75a9262d0148","530e5962049e75a9262d017c","530e5963049e75a9262d0199","530e5963049e75a9262d0228","530e5963049e75a9262d022e","530e5964049e75a9262d0291","530e5965049e75a9262d031d","530e5965049e75a9262d0321","530e5965049e75a9262d03d5","530e5965049e75a9262d03ea","530e5966049e75a9262d041b","530e5967049e75a9262d04eb","530e5967049e75a9262d04fd","530e5967049e75a9262d0515","530e5967049e75a9262d053e","530e5967049e75a9262d05aa","530e5967049e75a9262d05af","530e5968049e75a9262d05d8","530e5968049e75a9262d05da"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c10","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e5979049e75a9262d0b00"},"uri":"/v1.1/sections/530e5979049e75a9262d0b00"},{"data":{"course_name":"Group
157
- Guidance","course_number":"902","created":"2014-02-26T21:15:37.998Z","district":"4fd43cc56d11340000000005","grade":"9","last_modified":"2014-02-26T21:15:38.000Z","name":"Group
158
- Guidance - 902 - T. Vaux (Section 2)","period":"0","school":"530e595026403103360ff9fd","sis_id":"597","students":["530e5960049e75a9262cffa2","530e5961049e75a9262cffcd","530e5961049e75a9262d0048","530e5961049e75a9262d0070","530e5961049e75a9262d0085","530e5962049e75a9262d00b7","530e5963049e75a9262d01f8","530e5963049e75a9262d0203","530e5964049e75a9262d0299","530e5964049e75a9262d02f3","530e5966049e75a9262d03fc","530e5967049e75a9262d0501","530e5967049e75a9262d0575","530e5967049e75a9262d05a8","530e5968049e75a9262d05cb","530e5968049e75a9262d05d1"],"subject":"homeroom/advisory","teacher":"530e5955d50c310f36112c12","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e5979049e75a9262d0b02"},"uri":"/v1.1/sections/530e5979049e75a9262d0b02"},{"data":{"course_name":"Group
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
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"}]}'
161
- http_version:
162
- recorded_at: Sat, 26 Sep 2015 17:41:26 GMT
163
- recorded_with: VCR 2.9.3
@@ -1,1207 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: https://api.clever.com/v1.1/students
6
- body:
7
- encoding: US-ASCII
8
- string: ''
9
- headers:
10
- Accept:
11
- - "*/*; q=0.5, application/xml"
12
- Accept-Encoding:
13
- - gzip, deflate
14
- Authorization:
15
- - Bearer DEMO_TOKEN
16
- User-Agent:
17
- - Ruby
18
- response:
19
- status:
20
- code: 200
21
- message: OK
22
- headers:
23
- Access-Control-Allow-Headers:
24
- - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
25
- Access-Control-Allow-Methods:
26
- - GET,PATCH,POST,DELETE
27
- Access-Control-Allow-Origin:
28
- - "*"
29
- Content-Type:
30
- - application/json; charset=utf-8
31
- Date:
32
- - Sat, 26 Sep 2015 17:41:04 GMT
33
- Etag:
34
- - '"-1672977800"'
35
- X-Powered-By:
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'
45
- Content-Length:
46
- - '66289'
47
- Connection:
48
- - keep-alive
49
- body:
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
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
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
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
55
- or African American","school":"530e595026403103360ff9fd","sis_id":"106867300","state_id":"863433981","student_number":"106867300","id":"530e5960049e75a9262cff21"},"uri":"/v1.1/students/530e5960049e75a9262cff21"},{"data":{"created":"2014-02-26T21:15:12.386Z","credentials":{"district_username":"sandrar91","district_password":"en1wae4AT"},"district":"4fd43cc56d11340000000005","dob":"6/26/1999","ell_status":"N","email":"r.sandra@example.net","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.677Z","location":{"zip":"10474"},"name":{"first":"Sandra","middle":"S","last":"Ritchie"},"race":"Black
56
- or African American","school":"530e595026403103360ff9ff","sis_id":"107368591","state_id":"989845610","student_number":"107368591","id":"530e5960049e75a9262cff22"},"uri":"/v1.1/students/530e5960049e75a9262cff22"},{"data":{"created":"2014-02-26T21:15:12.391Z","credentials":{"district_username":"juliar95","district_password":"bohTunaequ1oh"},"district":"4fd43cc56d11340000000005","dob":"1/29/1998","ell_status":"Y","email":"julia.r@example.org","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.679Z","location":{"zip":"11239"},"name":{"first":"Julia","middle":"B","last":"Runolfsdottir"},"race":"Black
57
- or African American","school":"530e595026403103360ff9fd","sis_id":"108028995","state_id":"339598426","student_number":"108028995","id":"530e5960049e75a9262cff23"},"uri":"/v1.1/students/530e5960049e75a9262cff23"},{"data":{"created":"2014-02-26T21:15:12.400Z","credentials":{"district_username":"nancyh91","district_password":"teiPah1kao"},"district":"4fd43cc56d11340000000005","dob":"12/23/2003","ell_status":"N","email":"h.nancy@example.com","frl_status":"Paid","gender":"F","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.684Z","location":{"zip":"11236"},"name":{"first":"Nancy","middle":"Z","last":"Heller"},"race":"Black
58
- or African American","school":"530e595026403103360ff9fe","sis_id":"109071891","state_id":"985627386","student_number":"109071891","id":"530e5960049e75a9262cff24"},"uri":"/v1.1/students/530e5960049e75a9262cff24"},{"data":{"created":"2014-02-26T21:15:12.410Z","credentials":{"district_username":"debrab27","district_password":"EShah6quoh2qu"},"district":"4fd43cc56d11340000000005","dob":"10/21/2001","ell_status":"Y","email":"debra.b@example.net","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.690Z","location":{"zip":"10302"},"name":{"first":"Debra","middle":"F","last":"Boyle"},"race":"Two
59
- or More Races","school":"530e595026403103360ff9ff","sis_id":"109999627","state_id":"393918489","student_number":"109999627","id":"530e5960049e75a9262cff25"},"uri":"/v1.1/students/530e5960049e75a9262cff25"},{"data":{"created":"2014-02-26T21:15:12.422Z","credentials":{"district_username":"yvettec36","district_password":"ya5piX9Oh"},"district":"4fd43cc56d11340000000005","dob":"5/18/1997","ell_status":"N","email":"c_yvette@example.org","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.694Z","location":{"zip":"11385"},"name":{"first":"Yvette","middle":"W","last":"Cummings"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"112258136","state_id":"373187439","student_number":"112258136","id":"530e5960049e75a9262cff26"},"uri":"/v1.1/students/530e5960049e75a9262cff26"},{"data":{"created":"2014-02-26T21:15:12.430Z","credentials":{"district_username":"geraldp09","district_password":"ieg6piLoc"},"district":"4fd43cc56d11340000000005","dob":"8/27/1998","ell_status":"Y","email":"p.gerald@example.com","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.698Z","location":{"zip":"11691"},"name":{"first":"Gerald","middle":"J","last":"Parisian"},"race":"Two
60
- or More Races","school":"530e595026403103360ff9fd","sis_id":"114061609","state_id":"363863262","student_number":"114061609","id":"530e5960049e75a9262cff27"},"uri":"/v1.1/students/530e5960049e75a9262cff27"},{"data":{"created":"2014-02-26T21:15:12.437Z","credentials":{"district_username":"nancyh13","district_password":"jiNgu0foewo1"},"district":"4fd43cc56d11340000000005","dob":"10/17/2004","ell_status":"N","email":"nancy.h@example.com","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.702Z","location":{"zip":"10040"},"name":{"first":"Nancy","middle":"M","last":"Hodkiewicz"},"race":"Two
61
- or More Races","school":"530e595026403103360ff9fe","sis_id":"114188213","state_id":"485519977","student_number":"114188213","id":"530e5960049e75a9262cff28"},"uri":"/v1.1/students/530e5960049e75a9262cff28"},{"data":{"created":"2014-02-26T21:15:12.443Z","credentials":{"district_username":"maen58","district_password":"faeR9buF"},"district":"4fd43cc56d11340000000005","dob":"5/22/1999","ell_status":"Y","email":"n_mae@example.com","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.707Z","location":{"zip":"10014"},"name":{"first":"Mae","middle":"L","last":"Nitzsche"},"race":"Black
62
- or African American","school":"530e595026403103360ff9ff","sis_id":"114766758","state_id":"361263052","student_number":"114766758","id":"530e5960049e75a9262cff29"},"uri":"/v1.1/students/530e5960049e75a9262cff29"},{"data":{"created":"2014-02-26T21:15:12.449Z","credentials":{"district_username":"deborahs94","district_password":"Thei2nai4"},"district":"4fd43cc56d11340000000005","dob":"3/17/2006","ell_status":"N","email":"s_deborah@example.com","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.712Z","location":{"zip":"11693"},"name":{"first":"Deborah","middle":"J","last":"Stracke"},"race":"Black
63
- or African American","school":"530e595026403103360ff9fe","sis_id":"114877594","state_id":"494975662","student_number":"114877594","id":"530e5960049e75a9262cff2b"},"uri":"/v1.1/students/530e5960049e75a9262cff2b"},{"data":{"created":"2014-02-26T21:15:12.454Z","credentials":{"district_username":"maryr27","district_password":"ohVie2aeD"},"district":"4fd43cc56d11340000000005","dob":"9/30/2003","ell_status":"N","email":"mary_r@example.net","frl_status":"Paid","gender":"F","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.728Z","location":{"zip":"10038"},"name":{"first":"Mary","middle":"L","last":"Ryan"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"115088927","state_id":"155063237","student_number":"115088927","id":"530e5960049e75a9262cff2d"},"uri":"/v1.1/students/530e5960049e75a9262cff2d"},{"data":{"created":"2014-02-26T21:15:12.461Z","credentials":{"district_username":"erickc24","district_password":"eeX9ied5ee"},"district":"4fd43cc56d11340000000005","dob":"3/25/1996","ell_status":"N","email":"erick_c@example.com","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.731Z","location":{"zip":"10128"},"name":{"first":"Erick","middle":"D","last":"Collins"},"race":"Two
64
- or More Races","school":"530e595026403103360ff9fd","sis_id":"115115824","state_id":"761459009","student_number":"115115824","id":"530e5960049e75a9262cff2f"},"uri":"/v1.1/students/530e5960049e75a9262cff2f"},{"data":{"created":"2014-02-26T21:15:12.473Z","credentials":{"district_username":"arleneh66","district_password":"ak0yahReesie"},"district":"4fd43cc56d11340000000005","dob":"11/26/2002","ell_status":"Y","email":"h.arlene@example.net","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.735Z","location":{"zip":"11206"},"name":{"first":"Arlene","middle":"K","last":"Huels"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"118346066","state_id":"483748383","student_number":"118346066","id":"530e5960049e75a9262cff33"},"uri":"/v1.1/students/530e5960049e75a9262cff33"},{"data":{"created":"2014-02-26T21:15:12.486Z","credentials":{"district_username":"daniloc44","district_password":"ooph8aiLe"},"district":"4fd43cc56d11340000000005","dob":"11/16/1999","ell_status":"Y","email":"danilo_c@example.com","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.741Z","location":{"zip":"10456"},"name":{"first":"Danilo","middle":"S","last":"Carter"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"119227044","state_id":"320059203","student_number":"119227044","id":"530e5960049e75a9262cff37"},"uri":"/v1.1/students/530e5960049e75a9262cff37"},{"data":{"created":"2014-02-26T21:15:12.492Z","credentials":{"district_username":"shawnw68","district_password":"nuY3yaeY9Lei"},"district":"4fd43cc56d11340000000005","dob":"3/11/1997","ell_status":"N","email":"shawn_w@example.org","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.745Z","location":{"zip":"10303"},"name":{"first":"Shawn","middle":"S","last":"Willms"},"race":"Black
65
- or African American","school":"530e595026403103360ff9fd","sis_id":"119477368","state_id":"852618443","student_number":"119477368","id":"530e5960049e75a9262cff39"},"uri":"/v1.1/students/530e5960049e75a9262cff39"},{"data":{"created":"2014-02-26T21:15:12.498Z","credentials":{"district_username":"fredt34","district_password":"ieXahy1j"},"district":"4fd43cc56d11340000000005","dob":"10/30/1998","ell_status":"Y","email":"fred.t@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.748Z","location":{"zip":"10003"},"name":{"first":"Fred","middle":"W","last":"Trantow"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"119622134","state_id":"354252109","student_number":"119622134","id":"530e5960049e75a9262cff3c"},"uri":"/v1.1/students/530e5960049e75a9262cff3c"},{"data":{"created":"2014-02-26T21:15:12.512Z","credentials":{"district_username":"robertl13","district_password":"moo2aoLilei"},"district":"4fd43cc56d11340000000005","dob":"1/16/2004","ell_status":"N","email":"l_robert@example.com","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.753Z","location":{"zip":"11103"},"name":{"first":"Robert","middle":"G","last":"Luettgen"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"119991513","state_id":"402728823","student_number":"119991513","id":"530e5960049e75a9262cff3e"},"uri":"/v1.1/students/530e5960049e75a9262cff3e"},{"data":{"created":"2014-02-26T21:15:12.524Z","credentials":{"district_username":"scottb73","district_password":"Lah5Mooh4"},"district":"4fd43cc56d11340000000005","dob":"5/1/1998","ell_status":"Y","email":"b.scott@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.756Z","location":{"zip":"10009"},"name":{"first":"Scott","middle":"D","last":"Bradtke"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"120804373","state_id":"258353799","student_number":"120804373","id":"530e5960049e75a9262cff42"},"uri":"/v1.1/students/530e5960049e75a9262cff42"},{"data":{"created":"2014-02-26T21:15:12.530Z","credentials":{"district_username":"erinw91","district_password":"chie1VeePep9ie"},"district":"4fd43cc56d11340000000005","dob":"1/24/2000","ell_status":"N","email":"erin_w@example.net","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.759Z","location":{"zip":"10453"},"name":{"first":"Erin","middle":"M","last":"West"},"race":"Black
66
- or African American","school":"530e595026403103360ff9ff","sis_id":"121183091","state_id":"306567894","student_number":"121183091","id":"530e5960049e75a9262cff44"},"uri":"/v1.1/students/530e5960049e75a9262cff44"},{"data":{"created":"2014-02-26T21:15:12.542Z","credentials":{"district_username":"marcias19","district_password":"aiPo1thoo"},"district":"4fd43cc56d11340000000005","dob":"12/2/1997","ell_status":"Y","email":"s_marcia@example.com","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.763Z","location":{"zip":"11693"},"name":{"first":"Marcia","middle":"W","last":"Smith"},"race":"Black
67
- or African American","school":"530e595026403103360ff9fd","sis_id":"121779919","state_id":"632956505","student_number":"121779919","id":"530e5960049e75a9262cff48"},"uri":"/v1.1/students/530e5960049e75a9262cff48"},{"data":{"created":"2014-02-26T21:15:12.545Z","credentials":{"district_username":"corar18","district_password":"noiphai2Ai"},"district":"4fd43cc56d11340000000005","dob":"2/28/2001","ell_status":"Y","email":"cora.r@example.net","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.768Z","location":{"zip":"10044"},"name":{"first":"Cora","middle":"S","last":"Ryan"},"race":"Two
68
- or More Races","school":"530e595026403103360ff9ff","sis_id":"122753218","state_id":"157023489","student_number":"122753218","id":"530e5960049e75a9262cff49"},"uri":"/v1.1/students/530e5960049e75a9262cff49"},{"data":{"created":"2014-02-26T21:15:12.550Z","credentials":{"district_username":"michelh98","district_password":"Eir2Tho1ae"},"district":"4fd43cc56d11340000000005","dob":"6/3/2005","ell_status":"N","email":"h.michel@example.com","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.772Z","location":{"zip":"11205"},"name":{"first":"Michel","middle":"N","last":"Haley"},"race":"Black
69
- or African American","school":"530e595026403103360ff9fe","sis_id":"122945598","state_id":"464810876","student_number":"122945598","id":"530e5960049e75a9262cff4a"},"uri":"/v1.1/students/530e5960049e75a9262cff4a"},{"data":{"created":"2014-02-26T21:15:12.554Z","credentials":{"district_username":"bethg07","district_password":"aifoh6naeJei"},"district":"4fd43cc56d11340000000005","dob":"4/29/1998","ell_status":"N","email":"g.beth@example.net","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-13T00:45:00.716Z","location":{"zip":"10303"},"name":{"first":"Elizabeth","last":"Grimes","middle":"R"},"race":"Two
70
- or More Races","school":"530e595026403103360ff9fd","sis_id":"123512007","state_id":"151360801","student_number":"123512007","id":"530e5960049e75a9262cff4b"},"uri":"/v1.1/students/530e5960049e75a9262cff4b"},{"data":{"created":"2014-02-26T21:15:12.558Z","credentials":{"district_username":"ianm93","district_password":"ShoPh9soor"},"district":"4fd43cc56d11340000000005","dob":"6/3/1996","ell_status":"N","email":"ian.m@example.net","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.778Z","location":{"zip":"10010"},"name":{"first":"Ian","middle":"V","last":"Mayert"},"race":"Black
71
- or African American","school":"530e595026403103360ff9fd","sis_id":"123954193","state_id":"924214454","student_number":"123954193","id":"530e5960049e75a9262cff4c"},"uri":"/v1.1/students/530e5960049e75a9262cff4c"},{"data":{"created":"2014-02-26T21:15:12.564Z","credentials":{"district_username":"tracyk26","district_password":"phei0Bibie"},"district":"4fd43cc56d11340000000005","dob":"12/13/1996","ell_status":"N","email":"tracy.k@example.org","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.783Z","location":{"zip":"10001"},"name":{"first":"Tracy","middle":"K","last":"Kutch"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"124482526","state_id":"393802973","student_number":"124482526","id":"530e5960049e75a9262cff4d"},"uri":"/v1.1/students/530e5960049e75a9262cff4d"},{"data":{"created":"2014-02-26T21:15:12.571Z","credentials":{"district_username":"theronk88","district_password":"eingeob1Th"},"district":"4fd43cc56d11340000000005","dob":"1/20/2001","ell_status":"N","email":"k.theron@example.com","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.787Z","location":{"zip":"11237"},"name":{"first":"Theron","middle":"T","last":"Kuvalis"},"race":"Two
72
- or More Races","school":"530e595026403103360ff9ff","sis_id":"126646288","state_id":"549916713","student_number":"126646288","id":"530e5960049e75a9262cff4e"},"uri":"/v1.1/students/530e5960049e75a9262cff4e"},{"data":{"created":"2014-02-26T21:15:12.575Z","credentials":{"district_username":"francesd07","district_password":"ievahf0Y"},"district":"4fd43cc56d11340000000005","dob":"2/18/1997","ell_status":"N","email":"frances_d@example.com","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.790Z","location":{"zip":"10009"},"name":{"first":"Frances","middle":"R","last":"Daniel"},"race":"Black
73
- or African American","school":"530e595026403103360ff9fd","sis_id":"127629107","state_id":"394114229","student_number":"127629107","id":"530e5960049e75a9262cff4f"},"uri":"/v1.1/students/530e5960049e75a9262cff4f"},{"data":{"created":"2014-02-26T21:15:12.579Z","credentials":{"district_username":"dianec39","district_password":"Sha1Yieng"},"district":"4fd43cc56d11340000000005","dob":"2/25/2001","ell_status":"Y","email":"c_diane@example.net","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.794Z","location":{"zip":"11223"},"name":{"first":"Diane","middle":"R","last":"Cole"},"race":"Black
74
- or African American","school":"530e595026403103360ff9ff","sis_id":"128729839","state_id":"941724516","student_number":"128729839","id":"530e5960049e75a9262cff50"},"uri":"/v1.1/students/530e5960049e75a9262cff50"},{"data":{"created":"2014-02-26T21:15:12.584Z","credentials":{"district_username":"moisesp85","district_password":"Lee0noofie3"},"district":"4fd43cc56d11340000000005","dob":"7/21/1996","ell_status":"N","email":"p_moises@example.org","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.799Z","location":{"zip":"11369"},"name":{"first":"Moises","middle":"J","last":"Pfannerstill"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"129211485","state_id":"427345603","student_number":"129211485","id":"530e5960049e75a9262cff51"},"uri":"/v1.1/students/530e5960049e75a9262cff51"},{"data":{"created":"2014-02-26T21:15:12.588Z","credentials":{"district_username":"johnl92","district_password":"Authelai6ee"},"district":"4fd43cc56d11340000000005","dob":"3/27/1995","ell_status":"Y","email":"john_l@example.net","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.803Z","location":{"zip":"11356"},"name":{"first":"John","middle":"J","last":"Luettgen"},"race":"Black
75
- or African American","school":"530e595026403103360ff9fd","sis_id":"129404892","state_id":"365733915","student_number":"129404892","id":"530e5960049e75a9262cff52"},"uri":"/v1.1/students/530e5960049e75a9262cff52"},{"data":{"created":"2014-02-26T21:15:12.594Z","credentials":{"district_username":"markm66","district_password":"ohpi7LieNg"},"district":"4fd43cc56d11340000000005","dob":"9/22/1996","ell_status":"N","email":"mark_m@example.org","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.805Z","location":{"zip":"11379"},"name":{"first":"Mark","middle":"E","last":"Mueller"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"129629166","state_id":"475570964","student_number":"129629166","id":"530e5960049e75a9262cff53"},"uri":"/v1.1/students/530e5960049e75a9262cff53"},{"data":{"created":"2014-02-26T21:15:12.603Z","credentials":{"district_username":"josephl30","district_password":"aeD7eiphuuR"},"district":"4fd43cc56d11340000000005","dob":"10/20/1995","ell_status":"N","email":"l.joseph@example.org","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.809Z","location":{"zip":"11212"},"name":{"first":"Joseph","middle":"J","last":"Lind"},"race":"Two
76
- or More Races","school":"530e595026403103360ff9fd","sis_id":"130662730","state_id":"790259704","student_number":"130662730","id":"530e5960049e75a9262cff54"},"uri":"/v1.1/students/530e5960049e75a9262cff54"},{"data":{"created":"2014-02-26T21:15:12.608Z","credentials":{"district_username":"luzb35","district_password":"zeuJ8Roo2r"},"district":"4fd43cc56d11340000000005","dob":"10/7/2007","ell_status":"N","email":"b_luz@example.org","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.814Z","location":{"zip":"11367"},"name":{"first":"Luz","middle":"M","last":"Bins"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"130790035","state_id":"416103381","student_number":"130790035","id":"530e5960049e75a9262cff55"},"uri":"/v1.1/students/530e5960049e75a9262cff55"},{"data":{"created":"2014-02-26T21:15:12.616Z","credentials":{"district_username":"edgary05","district_password":"pohzio9Leexu"},"district":"4fd43cc56d11340000000005","dob":"5/6/2004","ell_status":"N","email":"edgar_y@example.org","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.818Z","location":{"zip":"10012"},"name":{"first":"Edgar","middle":"N","last":"Yost"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"131222005","state_id":"432306457","student_number":"131222005","id":"530e5960049e75a9262cff56"},"uri":"/v1.1/students/530e5960049e75a9262cff56"},{"data":{"created":"2014-02-26T21:15:12.630Z","credentials":{"district_username":"giovannio63","district_password":"eiG7ahyee"},"district":"4fd43cc56d11340000000005","dob":"9/16/1999","ell_status":"N","email":"o_giovanni@example.com","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.821Z","location":{"zip":"10471"},"name":{"first":"Giovanni","middle":"M","last":"Osinski"},"race":"Two
77
- or More Races","school":"530e595026403103360ff9ff","sis_id":"132323163","state_id":"214818376","student_number":"132323163","id":"530e5960049e75a9262cff57"},"uri":"/v1.1/students/530e5960049e75a9262cff57"},{"data":{"created":"2014-02-26T21:15:12.636Z","credentials":{"district_username":"lakeishak03","district_password":"Meejahgo6qu"},"district":"4fd43cc56d11340000000005","dob":"6/18/1998","ell_status":"Y","email":"lakeisha_k@example.com","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.824Z","location":{"zip":"10030"},"name":{"first":"Lakeisha","middle":"E","last":"Kovacek"},"race":"Black
78
- or African American","school":"530e595026403103360ff9fd","sis_id":"132765903","state_id":"385458717","student_number":"132765903","id":"530e5960049e75a9262cff58"},"uri":"/v1.1/students/530e5960049e75a9262cff58"},{"data":{"created":"2014-02-26T21:15:12.644Z","credentials":{"district_username":"josephc65","district_password":"wiol9waiJeth"},"district":"4fd43cc56d11340000000005","dob":"12/30/2000","ell_status":"N","email":"joseph_c@example.net","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.829Z","location":{"zip":"11218"},"name":{"first":"Joseph","middle":"V","last":"Cruickshank"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"133517565","state_id":"925454999","student_number":"133517565","id":"530e5960049e75a9262cff59"},"uri":"/v1.1/students/530e5960049e75a9262cff59"},{"data":{"created":"2014-02-26T21:15:12.652Z","credentials":{"district_username":"ralpht98","district_password":"oongei3Poor"},"district":"4fd43cc56d11340000000005","dob":"6/30/1998","ell_status":"N","email":"ralph.t@example.com","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.833Z","location":{"zip":"10016"},"name":{"first":"Ralph","middle":"V","last":"Torphy"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"133537898","state_id":"480517609","student_number":"133537898","id":"530e5960049e75a9262cff5b"},"uri":"/v1.1/students/530e5960049e75a9262cff5b"},{"data":{"created":"2014-02-26T21:15:12.659Z","credentials":{"district_username":"dannyg60","district_password":"ohto5naiFao"},"district":"4fd43cc56d11340000000005","dob":"3/20/2007","ell_status":"Y","email":"danny.g@example.com","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.836Z","location":{"zip":"11378"},"name":{"first":"Danny","middle":"A","last":"Greenholt"},"race":"Black
79
- or African American","school":"530e595026403103360ff9fe","sis_id":"134052560","state_id":"858732007","student_number":"134052560","id":"530e5960049e75a9262cff5d"},"uri":"/v1.1/students/530e5960049e75a9262cff5d"},{"data":{"created":"2014-02-26T21:15:12.671Z","credentials":{"district_username":"jessem58","district_password":"Ohngah7ohp"},"district":"4fd43cc56d11340000000005","dob":"3/9/2001","ell_status":"N","email":"jesse.m@example.org","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.840Z","location":{"zip":"10024"},"name":{"first":"Jesse","middle":"M","last":"McGlynn"},"race":"American
80
- Indian","school":"530e595026403103360ff9ff","sis_id":"134654858","state_id":"112453591","student_number":"134654858","id":"530e5960049e75a9262cff61"},"uri":"/v1.1/students/530e5960049e75a9262cff61"},{"data":{"created":"2014-02-26T21:15:12.679Z","credentials":{"district_username":"sandrar73","district_password":"Okiepoh7oo"},"district":"4fd43cc56d11340000000005","dob":"2/13/2001","ell_status":"Y","email":"sandra.r@example.org","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.845Z","location":{"zip":"11370"},"name":{"first":"Sandra","middle":"W","last":"Rowe"},"race":"Black
81
- or African American","school":"530e595026403103360ff9ff","sis_id":"134720573","state_id":"176031777","student_number":"134720573","id":"530e5960049e75a9262cff64"},"uri":"/v1.1/students/530e5960049e75a9262cff64"},{"data":{"created":"2014-02-26T21:15:12.688Z","credentials":{"district_username":"heatherm26","district_password":"eizoo4Dahru"},"district":"4fd43cc56d11340000000005","dob":"8/5/1995","ell_status":"Y","email":"m_heather@example.com","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.849Z","location":{"zip":"10301"},"name":{"first":"Heather","middle":"E","last":"MacGyver"},"race":"American
82
- Indian","school":"530e595026403103360ff9fd","sis_id":"135635226","state_id":"568110703","student_number":"135635226","id":"530e5960049e75a9262cff67"},"uri":"/v1.1/students/530e5960049e75a9262cff67"},{"data":{"created":"2014-02-26T21:15:12.697Z","credentials":{"district_username":"clarettas30","district_password":"Suokoh4thoh"},"district":"4fd43cc56d11340000000005","dob":"6/7/1995","ell_status":"Y","email":"s_claretta@example.com","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.851Z","location":{"zip":"11361"},"name":{"first":"Claretta","middle":"C","last":"Steuber"},"race":"Black
83
- or African American","school":"530e595026403103360ff9fd","sis_id":"136380730","state_id":"307304843","student_number":"136380730","id":"530e5960049e75a9262cff6a"},"uri":"/v1.1/students/530e5960049e75a9262cff6a"},{"data":{"created":"2014-02-26T21:15:12.713Z","credentials":{"district_username":"lisab30","district_password":"aSh9iulo"},"district":"4fd43cc56d11340000000005","dob":"9/12/2002","ell_status":"N","email":"b_lisa@example.net","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.855Z","location":{"zip":"11370"},"name":{"first":"Lisa","middle":"B","last":"Botsford"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"136422830","state_id":"258401272","student_number":"136422830","id":"530e5960049e75a9262cff6c"},"uri":"/v1.1/students/530e5960049e75a9262cff6c"},{"data":{"created":"2014-02-26T21:15:12.721Z","credentials":{"district_username":"amberw60","district_password":"Tu5sahdoh"},"district":"4fd43cc56d11340000000005","dob":"2/26/2006","ell_status":"N","email":"amber_w@example.net","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.860Z","location":{"zip":"11429"},"name":{"first":"Amber","middle":"J","last":"Wisoky"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"137019560","state_id":"650349892","student_number":"137019560","id":"530e5960049e75a9262cff6e"},"uri":"/v1.1/students/530e5960049e75a9262cff6e"},{"data":{"created":"2014-02-26T21:15:12.734Z","credentials":{"district_username":"lloydc63","district_password":"ohChah5t"},"district":"4fd43cc56d11340000000005","dob":"11/21/2005","ell_status":"N","email":"c.lloyd@example.net","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.864Z","location":{"zip":"10014"},"name":{"first":"Lloyd","middle":"P","last":"Collier"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"137569863","state_id":"997363437","student_number":"137569863","id":"530e5960049e75a9262cff72"},"uri":"/v1.1/students/530e5960049e75a9262cff72"},{"data":{"created":"2014-02-26T21:15:12.746Z","credentials":{"district_username":"serenab06","district_password":"shu9shiNich"},"district":"4fd43cc56d11340000000005","dob":"4/10/2007","ell_status":"N","email":"b_serena@example.net","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.867Z","location":{"zip":"11216"},"name":{"first":"Serena","middle":"E","last":"Beer"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"138030806","state_id":"298722069","student_number":"138030806","id":"530e5960049e75a9262cff76"},"uri":"/v1.1/students/530e5960049e75a9262cff76"},{"data":{"created":"2014-02-26T21:15:12.762Z","credentials":{"district_username":"vincenzoc30","district_password":"AeQuoPh4AiC"},"district":"4fd43cc56d11340000000005","dob":"5/31/2004","ell_status":"N","email":"vincenzo_c@example.net","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.870Z","location":{"zip":"10475"},"name":{"first":"Vincenzo","middle":"N","last":"Cronin"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"142650130","state_id":"595801763","student_number":"142650130","id":"530e5960049e75a9262cff78"},"uri":"/v1.1/students/530e5960049e75a9262cff78"},{"data":{"created":"2014-02-26T21:15:12.769Z","credentials":{"district_username":"kathyk90","district_password":"eeD2Zei8yoL"},"district":"4fd43cc56d11340000000005","dob":"4/21/1999","ell_status":"N","email":"kathy_k@example.net","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.875Z","location":{"zip":"10474"},"name":{"first":"Kathy","middle":"J","last":"Keeling"},"race":"Black
84
- or African American","school":"530e595026403103360ff9ff","sis_id":"142858690","state_id":"397018257","student_number":"142858690","id":"530e5960049e75a9262cff79"},"uri":"/v1.1/students/530e5960049e75a9262cff79"},{"data":{"created":"2014-02-26T21:15:12.774Z","credentials":{"district_username":"jeffreyk79","district_password":"tohgaK5zoo"},"district":"4fd43cc56d11340000000005","dob":"9/17/1998","ell_status":"Y","email":"k_jeffrey@example.com","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.879Z","location":{"zip":"11357"},"name":{"first":"Jeffrey","middle":"M","last":"Kuphal"},"race":"Two
85
- or More Races","school":"530e595026403103360ff9fd","sis_id":"143899679","state_id":"381712167","student_number":"143899679","id":"530e5960049e75a9262cff7a"},"uri":"/v1.1/students/530e5960049e75a9262cff7a"},{"data":{"created":"2014-02-26T21:15:12.781Z","credentials":{"district_username":"rebar71","district_password":"Zahboi4ji8"},"district":"4fd43cc56d11340000000005","dob":"10/31/1997","ell_status":"N","email":"r.reba@example.com","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.882Z","location":{"zip":"11220"},"name":{"first":"Reba","middle":"J","last":"Reynolds"},"race":"Black
86
- or African American","school":"530e595026403103360ff9fd","sis_id":"146278371","state_id":"619403122","student_number":"146278371","id":"530e5960049e75a9262cff7b"},"uri":"/v1.1/students/530e5960049e75a9262cff7b"},{"data":{"created":"2014-02-26T21:15:12.787Z","credentials":{"district_username":"keithp41","district_password":"Jiehaez7Ai"},"district":"4fd43cc56d11340000000005","dob":"6/2/1996","ell_status":"N","email":"keith_p@example.org","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.886Z","location":{"zip":"10308"},"name":{"first":"Keith","middle":"A","last":"Prohaska"},"race":"American
87
- Indian","school":"530e595026403103360ff9fd","sis_id":"146447741","state_id":"526227648","student_number":"146447741","id":"530e5960049e75a9262cff7c"},"uri":"/v1.1/students/530e5960049e75a9262cff7c"},{"data":{"created":"2014-02-26T21:15:12.821Z","credentials":{"district_username":"williamv49","district_password":"howueSh7"},"district":"4fd43cc56d11340000000005","dob":"12/14/2001","ell_status":"Y","email":"v.william@example.org","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.902Z","location":{"zip":"10032"},"name":{"first":"William","middle":"A","last":"VonRueden"},"race":"Two
88
- or More Races","school":"530e595026403103360ff9ff","sis_id":"149789849","state_id":"129432406","student_number":"149789849","id":"530e5960049e75a9262cff86"},"uri":"/v1.1/students/530e5960049e75a9262cff86"},{"data":{"created":"2014-02-26T21:15:12.853Z","credentials":{"district_username":"manuelb70","district_password":"aj5eeSai7B"},"district":"4fd43cc56d11340000000005","dob":"10/23/1995","ell_status":"Y","email":"manuel.b@example.com","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.906Z","location":{"zip":"11211"},"name":{"first":"Manuel","middle":"I","last":"Brakus"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"153274070","state_id":"791610984","student_number":"153274070","id":"530e5960049e75a9262cff90"},"uri":"/v1.1/students/530e5960049e75a9262cff90"},{"data":{"created":"2014-02-26T21:15:12.858Z","credentials":{"district_username":"ivoryw40","district_password":"Keer7Iitoof"},"district":"4fd43cc56d11340000000005","dob":"1/29/2006","ell_status":"Y","email":"w.ivory@example.org","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.918Z","location":{"zip":"10004"},"name":{"first":"Ivory","middle":"W","last":"Waelchi"},"race":"Two
89
- or More Races","school":"530e595026403103360ff9fe","sis_id":"155728240","state_id":"823608122","student_number":"155728240","id":"530e5960049e75a9262cff92"},"uri":"/v1.1/students/530e5960049e75a9262cff92"},{"data":{"created":"2014-02-26T21:15:12.865Z","credentials":{"district_username":"rogerr70","district_password":"Zaom1ahshoh"},"district":"4fd43cc56d11340000000005","dob":"2/25/2005","ell_status":"N","email":"r_roger@example.net","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.909Z","location":{"zip":"11414"},"name":{"first":"Roger","middle":"C","last":"Rohan"},"race":"Black
90
- or African American","school":"530e595026403103360ff9fe","sis_id":"153990370","state_id":"318208963","student_number":"153990370","id":"530e5960049e75a9262cff94"},"uri":"/v1.1/students/530e5960049e75a9262cff94"},{"data":{"created":"2014-02-26T21:15:12.872Z","credentials":{"district_username":"susanb50","district_password":"dooWi3bo3"},"district":"4fd43cc56d11340000000005","dob":"9/25/1997","ell_status":"N","email":"b_susan@example.net","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.913Z","location":{"zip":"11377"},"name":{"first":"Susan","middle":"J","last":"Bradtke"},"race":"Two
91
- or More Races","school":"530e595026403103360ff9fd","sis_id":"154186850","state_id":"168140106","student_number":"154186850","id":"530e5960049e75a9262cff95"},"uri":"/v1.1/students/530e5960049e75a9262cff95"},{"data":{"created":"2014-02-26T21:15:12.882Z","credentials":{"district_username":"ivoryu66","district_password":"pheeph0Vi2m"},"district":"4fd43cc56d11340000000005","dob":"3/27/1997","ell_status":"N","email":"ivory_u@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.923Z","location":{"zip":"11360"},"name":{"first":"Ivory","middle":"D","last":"Ullrich"},"race":"Black
92
- or African American","school":"530e595026403103360ff9fd","sis_id":"156540966","state_id":"898550447","student_number":"156540966","id":"530e5960049e75a9262cff96"},"uri":"/v1.1/students/530e5960049e75a9262cff96"},{"data":{"created":"2014-02-26T21:15:12.887Z","credentials":{"district_username":"tonir12","district_password":"Xiephai6"},"district":"4fd43cc56d11340000000005","dob":"10/5/2006","ell_status":"Y","email":"toni_r@example.net","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.926Z","location":{"zip":"11104"},"name":{"first":"Toni","middle":"R","last":"Roberts"},"race":"Black
93
- or African American","school":"530e595026403103360ff9fe","sis_id":"157515512","state_id":"463790341","student_number":"157515512","id":"530e5960049e75a9262cff97"},"uri":"/v1.1/students/530e5960049e75a9262cff97"},{"data":{"created":"2014-02-26T21:15:12.891Z","credentials":{"district_username":"selmar07","district_password":"ier1oomee8Ei"},"district":"4fd43cc56d11340000000005","dob":"4/15/1996","ell_status":"N","email":"r_selma@example.org","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.930Z","location":{"zip":"11218"},"name":{"first":"Selma","middle":"A","last":"Russel"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"157730707","state_id":"200628810","student_number":"157730707","id":"530e5960049e75a9262cff98"},"uri":"/v1.1/students/530e5960049e75a9262cff98"},{"data":{"created":"2014-02-26T21:15:12.894Z","credentials":{"district_username":"matthewz51","district_password":"muWeiji0Fef"},"district":"4fd43cc56d11340000000005","dob":"11/14/2000","ell_status":"N","email":"z.matthew@example.com","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.936Z","location":{"zip":"10005"},"name":{"first":"Matthew","middle":"M","last":"Zboncak"},"race":"Black
94
- or African American","school":"530e595026403103360ff9ff","sis_id":"158264451","state_id":"148571124","student_number":"158264451","id":"530e5960049e75a9262cff99"},"uri":"/v1.1/students/530e5960049e75a9262cff99"},{"data":{"created":"2014-02-26T21:15:12.917Z","credentials":{"district_username":"cordeliam30","district_password":"Bochojah7Ex"},"district":"4fd43cc56d11340000000005","dob":"2/13/2000","ell_status":"N","email":"cordelia_m@example.com","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.940Z","location":{"zip":"10033"},"name":{"first":"Cordelia","middle":"R","last":"Miller"},"race":"Black
95
- or African American","school":"530e595026403103360ff9ff","sis_id":"159281530","state_id":"787673988","student_number":"159281530","id":"530e5960049e75a9262cff9a"},"uri":"/v1.1/students/530e5960049e75a9262cff9a"},{"data":{"created":"2014-02-26T21:15:12.920Z","credentials":{"district_username":"timothyg52","district_password":"Iquaeg5ie"},"district":"4fd43cc56d11340000000005","dob":"11/2/2006","ell_status":"Y","email":"timothy.g@example.net","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.943Z","location":{"zip":"10031"},"name":{"first":"Timothy","middle":"K","last":"Grady"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"159541752","state_id":"770286362","student_number":"159541752","id":"530e5960049e75a9262cff9b"},"uri":"/v1.1/students/530e5960049e75a9262cff9b"},{"data":{"created":"2014-02-26T21:15:12.926Z","credentials":{"district_username":"jasminen49","district_password":"Ieba5Lie"},"district":"4fd43cc56d11340000000005","dob":"1/15/2005","ell_status":"N","email":"jasmine.n@example.org","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.948Z","location":{"zip":"10302"},"name":{"first":"Jasmine","middle":"D","last":"Nader"},"race":"Two
96
- or More Races","school":"530e595026403103360ff9fe","sis_id":"159803249","state_id":"720873854","student_number":"159803249","id":"530e5960049e75a9262cff9c"},"uri":"/v1.1/students/530e5960049e75a9262cff9c"},{"data":{"created":"2014-02-26T21:15:12.935Z","credentials":{"district_username":"keving40","district_password":"ru8Poudo9Sh"},"district":"4fd43cc56d11340000000005","dob":"9/10/2005","ell_status":"N","email":"kevin.g@example.net","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.953Z","location":{"zip":"10023"},"name":{"first":"Kevin","middle":"B","last":"Gottlieb"},"race":"Two
97
- or More Races","school":"530e595026403103360ff9fe","sis_id":"160303140","state_id":"584973738","student_number":"160303140","id":"530e5960049e75a9262cff9d"},"uri":"/v1.1/students/530e5960049e75a9262cff9d"},{"data":{"created":"2014-02-26T21:15:12.939Z","credentials":{"district_username":"lulat02","district_password":"uaXie3ai"},"district":"4fd43cc56d11340000000005","dob":"8/5/1999","ell_status":"N","email":"lula.t@example.net","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.957Z","location":{"zip":"11385"},"name":{"first":"Lula","middle":"R","last":"Thiel"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"160831102","state_id":"972603404","student_number":"160831102","id":"530e5960049e75a9262cff9e"},"uri":"/v1.1/students/530e5960049e75a9262cff9e"},{"data":{"created":"2014-02-26T21:15:12.946Z","credentials":{"district_username":"jennieg59","district_password":"haip5Fahqu"},"district":"4fd43cc56d11340000000005","dob":"9/5/1995","ell_status":"N","email":"g.jennie@example.net","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.960Z","location":{"zip":"11363"},"name":{"first":"Jennie","middle":"M","last":"Gorczany"},"race":"Two
98
- or More Races","school":"530e595026403103360ff9fd","sis_id":"161712659","state_id":"187048275","student_number":"161712659","id":"530e5960049e75a9262cff9f"},"uri":"/v1.1/students/530e5960049e75a9262cff9f"},{"data":{"created":"2014-02-26T21:15:12.952Z","credentials":{"district_username":"maryn86","district_password":"xeewoom7A"},"district":"4fd43cc56d11340000000005","dob":"6/15/2006","ell_status":"Y","email":"mary.n@example.org","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.964Z","location":{"zip":"11418"},"name":{"first":"Mary","middle":"R","last":"Nienow"},"race":"Black
99
- or African American","school":"530e595026403103360ff9fe","sis_id":"161871886","state_id":"445642100","student_number":"161871886","id":"530e5960049e75a9262cffa0"},"uri":"/v1.1/students/530e5960049e75a9262cffa0"},{"data":{"created":"2014-02-26T21:15:12.960Z","credentials":{"district_username":"donnar40","district_password":"eeXur8zaeng"},"district":"4fd43cc56d11340000000005","dob":"2/10/1998","ell_status":"N","email":"donna.r@example.com","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.969Z","location":{"zip":"11416"},"name":{"first":"Donna","middle":"V","last":"Roob"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"162344240","state_id":"412037326","student_number":"162344240","id":"530e5960049e75a9262cffa2"},"uri":"/v1.1/students/530e5960049e75a9262cffa2"},{"data":{"created":"2014-02-26T21:15:12.966Z","credentials":{"district_username":"melvinv70","district_password":"Oohoh5Eiy"},"district":"4fd43cc56d11340000000005","dob":"6/7/1999","ell_status":"Y","email":"melvin.v@example.com","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.973Z","location":{"zip":"10303"},"name":{"first":"Melvin","middle":"S","last":"Veum"},"race":"Black
100
- or African American","school":"530e595026403103360ff9ff","sis_id":"163240670","state_id":"123701189","student_number":"163240670","id":"530e5960049e75a9262cffa4"},"uri":"/v1.1/students/530e5960049e75a9262cffa4"},{"data":{"created":"2014-02-26T21:15:12.974Z","credentials":{"district_username":"briand67","district_password":"Abie5air6"},"district":"4fd43cc56d11340000000005","dob":"12/7/1995","ell_status":"N","email":"brian_d@example.org","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.975Z","location":{"zip":"11231"},"name":{"first":"Brian","middle":"E","last":"Dickinson"},"race":"Black
101
- or African American","school":"530e595026403103360ff9fd","sis_id":"164473167","state_id":"253930603","student_number":"164473167","id":"530e5960049e75a9262cffa6"},"uri":"/v1.1/students/530e5960049e75a9262cffa6"},{"data":{"created":"2014-02-26T21:15:12.984Z","credentials":{"district_username":"catherineo48","district_password":"wahj5GiC8r"},"district":"4fd43cc56d11340000000005","dob":"2/10/2005","ell_status":"Y","email":"o_catherine@example.org","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.979Z","location":{"zip":"10303"},"name":{"first":"Catherine","middle":"D","last":"O''Hara"},"race":"American
102
- Indian","school":"530e595026403103360ff9fe","sis_id":"165006548","state_id":"957587261","student_number":"165006548","id":"530e5960049e75a9262cffa9"},"uri":"/v1.1/students/530e5960049e75a9262cffa9"},{"data":{"created":"2014-02-26T21:15:12.990Z","credentials":{"district_username":"nicolep36","district_password":"mie6Veid"},"district":"4fd43cc56d11340000000005","dob":"6/22/2006","ell_status":"Y","email":"nicole_p@example.net","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.984Z","location":{"zip":"11103"},"name":{"first":"Nicole","middle":"Z","last":"Paucek"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"165694036","state_id":"784780736","student_number":"165694036","id":"530e5960049e75a9262cffac"},"uri":"/v1.1/students/530e5960049e75a9262cffac"},{"data":{"created":"2014-02-26T21:15:13.003Z","credentials":{"district_username":"davidv33","district_password":"ahy9OhY4ooy"},"district":"4fd43cc56d11340000000005","dob":"11/27/1995","ell_status":"N","email":"david.v@example.org","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.988Z","location":{"zip":"11205"},"name":{"first":"David","middle":"O","last":"Von"},"race":"Black
103
- or African American","school":"530e595026403103360ff9fd","sis_id":"166940033","state_id":"454242931","student_number":"166940033","id":"530e5961049e75a9262cffaf"},"uri":"/v1.1/students/530e5961049e75a9262cffaf"},{"data":{"created":"2014-02-26T21:15:13.016Z","credentials":{"district_username":"jeanettew71","district_password":"Phoos1eiD"},"district":"4fd43cc56d11340000000005","dob":"9/30/2001","ell_status":"Y","email":"w.jeanette@example.org","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:40.991Z","location":{"zip":"11369"},"name":{"first":"Jeanette","middle":"D","last":"Walsh"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"168343271","state_id":"296595680","student_number":"168343271","id":"530e5961049e75a9262cffb4"},"uri":"/v1.1/students/530e5961049e75a9262cffb4"},{"data":{"created":"2014-02-26T21:15:13.026Z","credentials":{"district_username":"manuelg57","district_password":"uSh2ir4ee"},"district":"4fd43cc56d11340000000005","dob":"9/12/1995","ell_status":"N","email":"g_manuel@example.com","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:40.995Z","location":{"zip":"10304"},"name":{"first":"Manuel","middle":"E","last":"Gibson"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"169195857","state_id":"533497862","student_number":"169195857","id":"530e5961049e75a9262cffb7"},"uri":"/v1.1/students/530e5961049e75a9262cffb7"},{"data":{"created":"2014-02-26T21:15:13.039Z","credentials":{"district_username":"bethl85","district_password":"zieFoj0eic"},"district":"4fd43cc56d11340000000005","dob":"4/3/1996","ell_status":"N","email":"l_beth@example.org","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.000Z","location":{"zip":"11370"},"name":{"first":"Beth","middle":"R","last":"Luettgen"},"race":"Two
104
- or More Races","school":"530e595026403103360ff9fd","sis_id":"170677985","state_id":"859401919","student_number":"170677985","id":"530e5961049e75a9262cffbb"},"uri":"/v1.1/students/530e5961049e75a9262cffbb"},{"data":{"created":"2014-02-26T21:15:13.049Z","credentials":{"district_username":"karenh22","district_password":"haZec8chiok"},"district":"4fd43cc56d11340000000005","dob":"1/9/2007","ell_status":"Y","email":"karen.h@example.net","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.004Z","location":{"zip":"11366"},"name":{"first":"Karen","middle":"D","last":"Harvey"},"race":"American
105
- Indian","school":"530e595026403103360ff9fe","sis_id":"173157322","state_id":"251634821","student_number":"173157322","id":"530e5961049e75a9262cffbe"},"uri":"/v1.1/students/530e5961049e75a9262cffbe"},{"data":{"created":"2014-02-26T21:15:13.053Z","credentials":{"district_username":"jasmineh39","district_password":"ieRai5ca4x"},"district":"4fd43cc56d11340000000005","dob":"10/27/2005","ell_status":"N","email":"h.jasmine@example.org","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.007Z","location":{"zip":"10010"},"name":{"first":"Jasmine","middle":"R","last":"Hudson"},"race":"Black
106
- or African American","school":"530e595026403103360ff9fe","sis_id":"173477739","state_id":"987948004","student_number":"173477739","id":"530e5961049e75a9262cffbf"},"uri":"/v1.1/students/530e5961049e75a9262cffbf"},{"data":{"created":"2014-02-26T21:15:13.063Z","credentials":{"district_username":"juliam55","district_password":"bohTunaequ1oh"},"district":"4fd43cc56d11340000000005","dob":"5/15/2000","ell_status":"N","email":"m.julia@example.com","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.010Z","location":{"zip":"10474"},"name":{"first":"Julia","middle":"B","last":"Marvin"},"race":"Black
107
- or African American","school":"530e595026403103360ff9ff","sis_id":"174626355","state_id":"592557939","student_number":"174626355","id":"530e5961049e75a9262cffc0"},"uri":"/v1.1/students/530e5961049e75a9262cffc0"},{"data":{"created":"2014-02-26T21:15:13.075Z","credentials":{"district_username":"racheller73","district_password":"zeedei8iLuT"},"district":"4fd43cc56d11340000000005","dob":"9/14/2002","ell_status":"N","email":"rachelle_r@example.org","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.015Z","location":{"zip":"10014"},"name":{"first":"Rachelle","middle":"J","last":"Roberts"},"race":"Two
108
- or More Races","school":"530e595026403103360ff9fe","sis_id":"175635873","state_id":"759563523","student_number":"175635873","id":"530e5961049e75a9262cffc1"},"uri":"/v1.1/students/530e5961049e75a9262cffc1"},{"data":{"created":"2014-02-26T21:15:13.080Z","credentials":{"district_username":"jamesk73","district_password":"DahX1Nah2"},"district":"4fd43cc56d11340000000005","dob":"10/13/2007","ell_status":"Y","email":"james.k@example.com","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.019Z","location":{"zip":"10029"},"name":{"first":"James","middle":"I","last":"Kreiger"},"race":"Two
109
- or More Races","school":"530e595026403103360ff9fe","sis_id":"175654773","state_id":"594272617","student_number":"175654773","id":"530e5961049e75a9262cffc2"},"uri":"/v1.1/students/530e5961049e75a9262cffc2"},{"data":{"created":"2014-02-26T21:15:13.089Z","credentials":{"district_username":"adriannas34","district_password":"Uoz5ich1"},"district":"4fd43cc56d11340000000005","dob":"5/5/2007","ell_status":"N","email":"adrianna.s@example.org","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.022Z","location":{"zip":"11220"},"name":{"first":"Adrianna","middle":"A","last":"Sawayn"},"race":"Two
110
- or More Races","school":"530e595026403103360ff9fe","sis_id":"176057934","state_id":"171145300","student_number":"176057934","id":"530e5961049e75a9262cffc3"},"uri":"/v1.1/students/530e5961049e75a9262cffc3"},{"data":{"created":"2014-02-26T21:15:13.125Z","credentials":{"district_username":"fredal36","district_password":"Hoo8Eiloo"},"district":"4fd43cc56d11340000000005","dob":"11/14/2000","ell_status":"N","email":"l.freda@example.net","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.026Z","location":{"zip":"11694"},"name":{"first":"Freda","middle":"P","last":"Lindgren"},"race":"Two
111
- or More Races","school":"530e595026403103360ff9ff","sis_id":"177762936","state_id":"604942388","student_number":"177762936","id":"530e5961049e75a9262cffcb"},"uri":"/v1.1/students/530e5961049e75a9262cffcb"},{"data":{"created":"2014-02-26T21:15:13.132Z","credentials":{"district_username":"christopherb30","district_password":"iet4ReCeiH"},"district":"4fd43cc56d11340000000005","dob":"1/25/1998","ell_status":"Y","email":"b.christopher@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.031Z","location":{"zip":"10461"},"name":{"first":"Christopher","middle":"M","last":"Bednar"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"178552730","state_id":"384352367","student_number":"178552730","id":"530e5961049e75a9262cffcd"},"uri":"/v1.1/students/530e5961049e75a9262cffcd"},{"data":{"created":"2014-02-26T21:15:13.147Z","credentials":{"district_username":"willardb67","district_password":"ul2Zeisee"},"district":"4fd43cc56d11340000000005","dob":"5/2/2003","ell_status":"Y","email":"willard_b@example.org","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.035Z","location":{"zip":"11357"},"name":{"first":"Willard","middle":"C","last":"Bashirian"},"race":"Two
112
- or More Races","school":"530e595026403103360ff9fe","sis_id":"180515767","state_id":"967967167","student_number":"180515767","id":"530e5961049e75a9262cffd2"},"uri":"/v1.1/students/530e5961049e75a9262cffd2"},{"data":{"created":"2014-02-26T21:15:13.154Z","credentials":{"district_username":"pedrob07","district_password":"ooha1aiZ"},"district":"4fd43cc56d11340000000005","dob":"8/1/2000","ell_status":"Y","email":"pedro_b@example.com","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.037Z","location":{"zip":"10017"},"name":{"first":"Pedro","middle":"D","last":"Bauch"},"race":"Black
113
- or African American","school":"530e595026403103360ff9ff","sis_id":"180999707","state_id":"399605649","student_number":"180999707","id":"530e5961049e75a9262cffd5"},"uri":"/v1.1/students/530e5961049e75a9262cffd5"},{"data":{"created":"2014-02-26T21:15:13.160Z","credentials":{"district_username":"annes24","district_password":"eshaek9ahQu"},"district":"4fd43cc56d11340000000005","dob":"3/30/2001","ell_status":"Y","email":"s.anne@example.net","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.041Z","location":{"zip":"11215"},"name":{"first":"Anne","middle":"E","last":"Satterfield"},"race":"Black
114
- or African American","school":"530e595026403103360ff9ff","sis_id":"181777124","state_id":"249784916","student_number":"181777124","id":"530e5961049e75a9262cffd7"},"uri":"/v1.1/students/530e5961049e75a9262cffd7"},{"data":{"created":"2014-02-26T21:15:13.166Z","credentials":{"district_username":"williamk46","district_password":"bohjah7Ae"},"district":"4fd43cc56d11340000000005","dob":"12/5/1997","ell_status":"Y","email":"k_william@example.org","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.046Z","location":{"zip":"11429"},"name":{"first":"William","middle":"S","last":"Koelpin"},"race":"Black
115
- or African American","school":"530e595026403103360ff9fd","sis_id":"182397746","state_id":"799666284","student_number":"182397746","id":"530e5961049e75a9262cffd9"},"uri":"/v1.1/students/530e5961049e75a9262cffd9"},{"data":{"created":"2014-02-26T21:15:13.176Z","credentials":{"district_username":"barrym17","district_password":"aim2Vi1e"},"district":"4fd43cc56d11340000000005","dob":"3/3/2007","ell_status":"N","email":"m.barry@example.com","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.050Z","location":{"zip":"11238"},"name":{"first":"Barry","middle":"G","last":"Marquardt"},"race":"Two
116
- or More Races","school":"530e595026403103360ff9fe","sis_id":"184337517","state_id":"497075762","student_number":"184337517","id":"530e5961049e75a9262cffdc"},"uri":"/v1.1/students/530e5961049e75a9262cffdc"},{"data":{"created":"2014-02-26T21:15:13.181Z","credentials":{"district_username":"jeralds17","district_password":"Ingee5ie"},"district":"4fd43cc56d11340000000005","dob":"2/5/2006","ell_status":"N","email":"jerald.s@example.org","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.053Z","location":{"zip":"10035"},"name":{"first":"Jerald","middle":"M","last":"Schaefer"},"race":"Black
117
- or African American","school":"530e595026403103360ff9fe","sis_id":"184897317","state_id":"422855981","student_number":"184897317","id":"530e5961049e75a9262cffde"},"uri":"/v1.1/students/530e5961049e75a9262cffde"},{"data":{"created":"2014-02-26T21:15:13.187Z","credentials":{"district_username":"jeffreys95","district_password":"ogooph1Gooz"},"district":"4fd43cc56d11340000000005","dob":"3/16/1997","ell_status":"N","email":"jeffrey_s@example.org","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.056Z","location":{"zip":"11229"},"name":{"first":"Jeffrey","middle":"S","last":"Sporer"},"race":"American
118
- Indian","school":"530e595026403103360ff9fd","sis_id":"185844295","state_id":"833289361","student_number":"185844295","id":"530e5961049e75a9262cffe0"},"uri":"/v1.1/students/530e5961049e75a9262cffe0"},{"data":{"created":"2014-02-26T21:15:13.192Z","credentials":{"district_username":"franciscos71","district_password":"iife9eiTie"},"district":"4fd43cc56d11340000000005","dob":"6/15/1996","ell_status":"Y","email":"francisco_s@example.org","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.061Z","location":{"zip":"10009"},"name":{"first":"Francisco","middle":"L","last":"Sanford"},"race":"Two
119
- or More Races","school":"530e595026403103360ff9fd","sis_id":"186732171","state_id":"256962814","student_number":"186732171","id":"530e5961049e75a9262cffe1"},"uri":"/v1.1/students/530e5961049e75a9262cffe1"},{"data":{"created":"2014-02-26T21:15:13.197Z","credentials":{"district_username":"charlesk43","district_password":"cie7Cai1shoh"},"district":"4fd43cc56d11340000000005","dob":"2/21/2000","ell_status":"N","email":"k_charles@example.net","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.065Z","location":{"zip":"11358"},"name":{"first":"Charles","middle":"A","last":"Kiehn"},"race":"Black
120
- or African American","school":"530e595026403103360ff9ff","sis_id":"187402543","state_id":"943748667","student_number":"187402543","id":"530e5961049e75a9262cffe2"},"uri":"/v1.1/students/530e5961049e75a9262cffe2"},{"data":{"created":"2014-02-26T21:15:13.202Z","credentials":{"district_username":"melvina59","district_password":"bog3Apoose1"},"district":"4fd43cc56d11340000000005","dob":"8/16/2000","ell_status":"Y","email":"a_melvin@example.org","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.068Z","location":{"zip":"11413"},"name":{"first":"Melvin","middle":"T","last":"Abshire"},"race":"Two
121
- or More Races","school":"530e595026403103360ff9ff","sis_id":"189422359","state_id":"949395711","student_number":"189422359","id":"530e5961049e75a9262cffe3"},"uri":"/v1.1/students/530e5961049e75a9262cffe3"},{"data":{"created":"2014-02-26T21:15:13.206Z","credentials":{"district_username":"mial61","district_password":"uka5Hixae"},"district":"4fd43cc56d11340000000005","dob":"11/10/2002","ell_status":"N","email":"l_mia@example.org","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.072Z","location":{"zip":"10002"},"name":{"first":"Mia","middle":"J","last":"Lindgren"},"race":"Black
122
- or African American","school":"530e595026403103360ff9fe","sis_id":"189492161","state_id":"661166974","student_number":"189492161","id":"530e5961049e75a9262cffe4"},"uri":"/v1.1/students/530e5961049e75a9262cffe4"}],"paging":{"current":1,"total":11,"count":1004},"links":[{"rel":"self","uri":"/v1.1/students"},{"rel":"next","uri":"/v1.1/students?starting_after=530e5961049e75a9262cffe4"}]}'
123
- http_version:
124
- recorded_at: Sat, 13 Sep 2014 00:03:49 GMT
125
- - request:
126
- method: get
127
- uri: https://api.clever.com//v1.1/students?starting_after=530e5961049e75a9262cffe4
128
- body:
129
- encoding: US-ASCII
130
- string: ''
131
- headers:
132
- Accept:
133
- - "*/*; q=0.5, application/xml"
134
- Accept-Encoding:
135
- - gzip, deflate
136
- Authorization:
137
- - Bearer DEMO_TOKEN
138
- User-Agent:
139
- - Ruby
140
- response:
141
- status:
142
- code: 200
143
- message: OK
144
- headers:
145
- Access-Control-Allow-Headers:
146
- - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
147
- Access-Control-Allow-Methods:
148
- - GET,PATCH,POST,DELETE
149
- Access-Control-Allow-Origin:
150
- - ! '*'
151
- Content-Type:
152
- - application/json; charset=utf-8
153
- Date:
154
- - Sat, 13 Sep 2014 00:03:50 GMT
155
- Etag:
156
- - ! '"841128607"'
157
- Server:
158
- - nginx/1.4.7
159
- X-Powered-By:
160
- - Express
161
- Content-Length:
162
- - '66318'
163
- Connection:
164
- - keep-alive
165
- body:
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
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
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
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
171
- or African American","school":"530e595026403103360ff9fe","sis_id":"193903417","state_id":"676485536","student_number":"193903417","id":"530e5961049e75a9262cffe8"},"uri":"/v1.1/students/530e5961049e75a9262cffe8"},{"data":{"created":"2014-02-26T21:15:13.246Z","credentials":{"district_username":"cindyk83","district_password":"eu9ooX8Eit"},"district":"4fd43cc56d11340000000005","dob":"12/3/1996","ell_status":"Y","email":"k.cindy@example.org","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.102Z","location":{"zip":"10035"},"name":{"first":"Cindy","middle":"W","last":"Kerluke"},"race":"Black
172
- or African American","school":"530e595026403103360ff9fd","sis_id":"196352383","state_id":"876075311","student_number":"196352383","id":"530e5961049e75a9262cffe9"},"uri":"/v1.1/students/530e5961049e75a9262cffe9"},{"data":{"created":"2014-02-26T21:15:13.251Z","credentials":{"district_username":"darlac64","district_password":"iNgoh2ve5Foh"},"district":"4fd43cc56d11340000000005","dob":"4/23/2000","ell_status":"N","email":"c_darla@example.org","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.107Z","location":{"zip":"10031"},"name":{"first":"Darla","middle":"J","last":"Crooks"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"197114364","state_id":"467736041","student_number":"197114364","id":"530e5961049e75a9262cffea"},"uri":"/v1.1/students/530e5961049e75a9262cffea"},{"data":{"created":"2014-02-26T21:15:13.255Z","credentials":{"district_username":"dorthyh01","district_password":"iezeeX2IeF8"},"district":"4fd43cc56d11340000000005","dob":"3/27/2000","ell_status":"N","email":"dorthy_h@example.com","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.112Z","location":{"zip":"10003"},"name":{"first":"Dorthy","middle":"M","last":"Hyatt"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"197369401","state_id":"492710609","student_number":"197369401","id":"530e5961049e75a9262cffeb"},"uri":"/v1.1/students/530e5961049e75a9262cffeb"},{"data":{"created":"2014-02-26T21:15:13.266Z","credentials":{"district_username":"ericp69","district_password":"to1euzu7Ig4"},"district":"4fd43cc56d11340000000005","dob":"7/24/1999","ell_status":"N","email":"p_eric@example.com","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.114Z","location":{"zip":"10033"},"name":{"first":"Eric","middle":"R","last":"Predovic"},"race":"Black
173
- or African American","school":"530e595026403103360ff9ff","sis_id":"198777769","state_id":"262178159","student_number":"198777769","id":"530e5961049e75a9262cffec"},"uri":"/v1.1/students/530e5961049e75a9262cffec"},{"data":{"created":"2014-02-26T21:15:13.274Z","credentials":{"district_username":"eileenm46","district_password":"Quashei7chee"},"district":"4fd43cc56d11340000000005","dob":"1/9/2001","ell_status":"N","email":"m.eileen@example.com","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.118Z","location":{"zip":"10038"},"name":{"first":"Eileen","middle":"D","last":"Muller"},"race":"Two
174
- or More Races","school":"530e595026403103360ff9ff","sis_id":"199167946","state_id":"344160518","student_number":"199167946","id":"530e5961049e75a9262cffed"},"uri":"/v1.1/students/530e5961049e75a9262cffed"},{"data":{"created":"2014-02-26T21:15:13.281Z","credentials":{"district_username":"sergiok12","district_password":"iuhah5Ike"},"district":"4fd43cc56d11340000000005","dob":"5/6/1995","ell_status":"N","email":"sergio_k@example.org","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.123Z","location":{"zip":"11238"},"name":{"first":"Sergio","middle":"I","last":"Kunze"},"race":"Black
175
- or African American","school":"530e595026403103360ff9fd","sis_id":"199271212","state_id":"447652787","student_number":"199271212","id":"530e5961049e75a9262cffef"},"uri":"/v1.1/students/530e5961049e75a9262cffef"},{"data":{"created":"2014-02-26T21:15:13.298Z","credentials":{"district_username":"jeanetteb66","district_password":"iep8xiH7"},"district":"4fd43cc56d11340000000005","dob":"2/11/2001","ell_status":"N","email":"b_jeanette@example.org","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.127Z","location":{"zip":"11226"},"name":{"first":"Jeanette","middle":"C","last":"Boehm"},"race":"Black
176
- or African American","school":"530e595026403103360ff9ff","sis_id":"200310266","state_id":"326249960","student_number":"200310266","id":"530e5961049e75a9262cfff5"},"uri":"/v1.1/students/530e5961049e75a9262cfff5"},{"data":{"created":"2014-02-26T21:15:13.304Z","credentials":{"district_username":"pauld05","district_password":"wiequiW0doh"},"district":"4fd43cc56d11340000000005","dob":"8/18/1995","ell_status":"N","email":"d.paul@example.net","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.130Z","location":{"zip":"10304"},"name":{"first":"Paul","middle":"P","last":"Dietrich"},"race":"Black
177
- or African American","school":"530e595026403103360ff9fd","sis_id":"200375705","state_id":"614938411","student_number":"200375705","id":"530e5961049e75a9262cfff7"},"uri":"/v1.1/students/530e5961049e75a9262cfff7"},{"data":{"created":"2014-02-26T21:15:13.326Z","credentials":{"district_username":"charlesh07","district_password":"Chishai6Oh"},"district":"4fd43cc56d11340000000005","dob":"5/4/1998","ell_status":"Y","email":"h_charles@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.133Z","location":{"zip":"11205"},"name":{"first":"Charles","middle":"G","last":"Hackett"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"203407507","state_id":"554547547","student_number":"203407507","id":"530e5961049e75a9262cfffb"},"uri":"/v1.1/students/530e5961049e75a9262cfffb"},{"data":{"created":"2014-02-26T21:15:13.334Z","credentials":{"district_username":"julieo97","district_password":"dohquooY6cah"},"district":"4fd43cc56d11340000000005","dob":"5/29/2000","ell_status":"N","email":"o.julie@example.net","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.139Z","location":{"zip":"11434"},"name":{"first":"Julie","middle":"T","last":"O''Conner"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"203997497","state_id":"778304641","student_number":"203997497","id":"530e5961049e75a9262cfffd"},"uri":"/v1.1/students/530e5961049e75a9262cfffd"},{"data":{"created":"2014-02-26T21:15:13.343Z","credentials":{"district_username":"jonathand10","district_password":"Keemae1ae"},"district":"4fd43cc56d11340000000005","dob":"11/2/2007","ell_status":"Y","email":"d.jonathan@example.com","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.142Z","location":{"zip":"10036"},"name":{"first":"Jonathan","middle":"G","last":"Dietrich"},"race":"Two
178
- or More Races","school":"530e595026403103360ff9fe","sis_id":"206776810","state_id":"345061585","student_number":"206776810","id":"530e5961049e75a9262d0000"},"uri":"/v1.1/students/530e5961049e75a9262d0000"},{"data":{"created":"2014-02-26T21:15:13.349Z","credentials":{"district_username":"gwenp24","district_password":"naXoWee1Ah"},"district":"4fd43cc56d11340000000005","dob":"3/10/1995","ell_status":"N","email":"gwen.p@example.net","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.145Z","location":{"zip":"11435"},"name":{"first":"Gwen","middle":"B","last":"Pfeffer"},"race":"Black
179
- or African American","school":"530e595026403103360ff9fd","sis_id":"207829524","state_id":"224456486","student_number":"207829524","id":"530e5961049e75a9262d0002"},"uri":"/v1.1/students/530e5961049e75a9262d0002"},{"data":{"created":"2014-02-26T21:15:13.356Z","credentials":{"district_username":"jamesh60","district_password":"AeH4tieSah"},"district":"4fd43cc56d11340000000005","dob":"11/17/1996","ell_status":"N","email":"h_james@example.net","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.149Z","location":{"zip":"11355"},"name":{"first":"James","middle":"I","last":"Heathcote"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"208674260","state_id":"718959503","student_number":"208674260","id":"530e5961049e75a9262d0005"},"uri":"/v1.1/students/530e5961049e75a9262d0005"},{"data":{"created":"2014-02-26T21:15:13.369Z","credentials":{"district_username":"chrisk42","district_password":"geezae0Einae"},"district":"4fd43cc56d11340000000005","dob":"11/9/2001","ell_status":"Y","email":"k.chris@example.net","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.154Z","location":{"zip":"10473"},"name":{"first":"Chris","middle":"J","last":"Koch"},"race":"Black
180
- or African American","school":"530e595026403103360ff9ff","sis_id":"210586642","state_id":"348039393","student_number":"210586642","id":"530e5961049e75a9262d0009"},"uri":"/v1.1/students/530e5961049e75a9262d0009"},{"data":{"created":"2014-02-26T21:15:13.376Z","credentials":{"district_username":"crystalm71","district_password":"nahbaib8Ow5"},"district":"4fd43cc56d11340000000005","dob":"9/15/2003","ell_status":"Y","email":"m.crystal@example.org","frl_status":"Paid","gender":"F","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.158Z","location":{"zip":"10452"},"name":{"first":"Crystal","middle":"C","last":"Morissette"},"race":"Black
181
- or African American","school":"530e595026403103360ff9fe","sis_id":"210987771","state_id":"877841079","student_number":"210987771","id":"530e5961049e75a9262d000b"},"uri":"/v1.1/students/530e5961049e75a9262d000b"},{"data":{"created":"2014-02-26T21:15:13.389Z","credentials":{"district_username":"barbarap05","district_password":"suLio1oa8o"},"district":"4fd43cc56d11340000000005","dob":"2/8/1998","ell_status":"N","email":"barbara.p@example.net","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.160Z","location":{"zip":"11357"},"name":{"first":"Barbara","middle":"R","last":"Purdy"},"race":"Black
182
- or African American","school":"530e595026403103360ff9fd","sis_id":"213251805","state_id":"476773672","student_number":"213251805","id":"530e5961049e75a9262d000c"},"uri":"/v1.1/students/530e5961049e75a9262d000c"},{"data":{"created":"2014-02-26T21:15:13.394Z","credentials":{"district_username":"deborahk52","district_password":"zahYee8qu"},"district":"4fd43cc56d11340000000005","dob":"6/19/1995","ell_status":"N","email":"k.deborah@example.org","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.164Z","location":{"zip":"11413"},"name":{"first":"Deborah","middle":"J","last":"Kunde"},"race":"Black
183
- or African American","school":"530e595026403103360ff9fd","sis_id":"214513152","state_id":"501164734","student_number":"214513152","id":"530e5961049e75a9262d000d"},"uri":"/v1.1/students/530e5961049e75a9262d000d"},{"data":{"created":"2014-02-26T21:15:13.401Z","credentials":{"district_username":"janetp13","district_password":"kaPhaeg7oh"},"district":"4fd43cc56d11340000000005","dob":"2/24/1999","ell_status":"Y","email":"janet.p@example.com","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.168Z","location":{"zip":"10304"},"name":{"first":"Janet","middle":"D","last":"Pfannerstill"},"race":"Black
184
- or African American","school":"530e595026403103360ff9ff","sis_id":"215464013","state_id":"199280395","student_number":"215464013","id":"530e5961049e75a9262d000e"},"uri":"/v1.1/students/530e5961049e75a9262d000e"},{"data":{"created":"2014-02-26T21:15:13.409Z","credentials":{"district_username":"dorothyk21","district_password":"aa9ieC3ooboh"},"district":"4fd43cc56d11340000000005","dob":"1/17/2001","ell_status":"Y","email":"k.dorothy@example.com","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.173Z","location":{"zip":"11215"},"name":{"first":"Dorothy","middle":"W","last":"Kutch"},"race":"Two
185
- or More Races","school":"530e595026403103360ff9ff","sis_id":"217787621","state_id":"522216245","student_number":"217787621","id":"530e5961049e75a9262d000f"},"uri":"/v1.1/students/530e5961049e75a9262d000f"},{"data":{"created":"2014-02-26T21:15:13.413Z","credentials":{"district_username":"lawerencew39","district_password":"aiQuu5aht"},"district":"4fd43cc56d11340000000005","dob":"3/4/1997","ell_status":"N","email":"w.lawerence@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.177Z","location":{"zip":"10467"},"name":{"first":"Lawerence","middle":"F","last":"Weber"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"217818439","state_id":"353535663","student_number":"217818439","id":"530e5961049e75a9262d0010"},"uri":"/v1.1/students/530e5961049e75a9262d0010"},{"data":{"created":"2014-02-26T21:15:13.419Z","credentials":{"district_username":"tinas25","district_password":"phie6ieThu"},"district":"4fd43cc56d11340000000005","dob":"12/8/1999","ell_status":"Y","email":"s_tina@example.com","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.180Z","location":{"zip":"11224"},"name":{"first":"Tina","middle":"S","last":"Satterfield"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"218472225","state_id":"158573137","student_number":"218472225","id":"530e5961049e75a9262d0011"},"uri":"/v1.1/students/530e5961049e75a9262d0011"},{"data":{"created":"2014-02-26T21:15:13.430Z","credentials":{"district_username":"lettym72","district_password":"ceeJ8kite4qu"},"district":"4fd43cc56d11340000000005","dob":"4/21/2007","ell_status":"Y","email":"m.letty@example.net","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.184Z","location":{"zip":"11412"},"name":{"first":"Letty","middle":"M","last":"McKenzie"},"race":"American
186
- Indian","school":"530e595026403103360ff9fe","sis_id":"219879372","state_id":"110676721","student_number":"219879372","id":"530e5961049e75a9262d0012"},"uri":"/v1.1/students/530e5961049e75a9262d0012"},{"data":{"created":"2014-02-26T21:15:13.440Z","credentials":{"district_username":"maryu36","district_password":"kaK9ahgh8"},"district":"4fd43cc56d11340000000005","dob":"11/18/1999","ell_status":"Y","email":"mary_u@example.net","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.189Z","location":{"zip":"10029"},"name":{"first":"Mary","middle":"J","last":"Upton"},"race":"Two
187
- or More Races","school":"530e595026403103360ff9ff","sis_id":"220464736","state_id":"783827713","student_number":"220464736","id":"530e5961049e75a9262d0013"},"uri":"/v1.1/students/530e5961049e75a9262d0013"},{"data":{"created":"2014-02-26T21:15:13.445Z","credentials":{"district_username":"stevens96","district_password":"Aidoov5th"},"district":"4fd43cc56d11340000000005","dob":"2/22/1999","ell_status":"Y","email":"s.steven@example.net","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.193Z","location":{"zip":"11691"},"name":{"first":"Steven","middle":"R","last":"Streich"},"race":"Black
188
- or African American","school":"530e595026403103360ff9ff","sis_id":"220662496","state_id":"962523976","student_number":"220662496","id":"530e5961049e75a9262d0014"},"uri":"/v1.1/students/530e5961049e75a9262d0014"},{"data":{"created":"2014-02-26T21:15:13.451Z","credentials":{"district_username":"maxinez24","district_password":"Eengae4ohz6"},"district":"4fd43cc56d11340000000005","dob":"2/27/2000","ell_status":"Y","email":"maxine.z@example.org","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.195Z","location":{"zip":"10038"},"name":{"first":"Maxine","middle":"J","last":"Zboncak"},"race":"Two
189
- or More Races","school":"530e595026403103360ff9ff","sis_id":"221493224","state_id":"469228991","student_number":"221493224","id":"530e5961049e75a9262d0015"},"uri":"/v1.1/students/530e5961049e75a9262d0015"},{"data":{"created":"2014-02-26T21:15:13.467Z","credentials":{"district_username":"anneb42","district_password":"ooN0aeyi7xa"},"district":"4fd43cc56d11340000000005","dob":"3/6/1998","ell_status":"Y","email":"b_anne@example.org","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.199Z","location":{"zip":"10036"},"name":{"first":"Anne","middle":"R","last":"Bauch"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"222617742","state_id":"343439204","student_number":"222617742","id":"530e5961049e75a9262d001a"},"uri":"/v1.1/students/530e5961049e75a9262d001a"},{"data":{"created":"2014-02-26T21:15:13.472Z","credentials":{"district_username":"danielw81","district_password":"koquieB2ahqu"},"district":"4fd43cc56d11340000000005","dob":"9/30/2000","ell_status":"N","email":"daniel_w@example.com","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.205Z","location":{"zip":"11234"},"name":{"first":"Daniel","middle":"E","last":"West"},"race":"Black
190
- or African American","school":"530e595026403103360ff9ff","sis_id":"222666081","state_id":"412552118","student_number":"222666081","id":"530e5961049e75a9262d001c"},"uri":"/v1.1/students/530e5961049e75a9262d001c"},{"data":{"created":"2014-02-26T21:15:13.477Z","credentials":{"district_username":"albertl69","district_password":"kaicaeY1"},"district":"4fd43cc56d11340000000005","dob":"3/20/2006","ell_status":"N","email":"albert.l@example.org","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.209Z","location":{"zip":"11234"},"name":{"first":"Albert","middle":"L","last":"Larkin"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"224040669","state_id":"751547960","student_number":"224040669","id":"530e5961049e75a9262d001e"},"uri":"/v1.1/students/530e5961049e75a9262d001e"},{"data":{"created":"2014-02-26T21:15:13.486Z","credentials":{"district_username":"sylviak79","district_password":"Ohv6omag1"},"district":"4fd43cc56d11340000000005","dob":"6/13/1997","ell_status":"Y","email":"k_sylvia@example.com","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.211Z","location":{"zip":"11201"},"name":{"first":"Sylvia","middle":"D","last":"Kuhic"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"224216979","state_id":"607685913","student_number":"224216979","id":"530e5961049e75a9262d0020"},"uri":"/v1.1/students/530e5961049e75a9262d0020"},{"data":{"created":"2014-02-26T21:15:13.495Z","credentials":{"district_username":"nicholasf37","district_password":"reiL0neej9Ie"},"district":"4fd43cc56d11340000000005","dob":"10/3/2000","ell_status":"Y","email":"nicholas_f@example.net","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.215Z","location":{"zip":"11237"},"name":{"first":"Nicholas","middle":"R","last":"Flatley"},"race":"Black
191
- or African American","school":"530e595026403103360ff9ff","sis_id":"226130437","state_id":"511103043","student_number":"226130437","id":"530e5961049e75a9262d0023"},"uri":"/v1.1/students/530e5961049e75a9262d0023"},{"data":{"created":"2014-02-26T21:15:13.510Z","credentials":{"district_username":"quinnh57","district_password":"eGhoov0ua"},"district":"4fd43cc56d11340000000005","dob":"6/27/1997","ell_status":"N","email":"h.quinn@example.org","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.220Z","location":{"zip":"11369"},"name":{"first":"Quinn","middle":"E","last":"Hermann"},"race":"American
192
- Indian","school":"530e595026403103360ff9fd","sis_id":"229132457","state_id":"847454436","student_number":"229132457","id":"530e5961049e75a9262d0027"},"uri":"/v1.1/students/530e5961049e75a9262d0027"},{"data":{"created":"2014-02-26T21:15:13.516Z","credentials":{"district_username":"edwardb03","district_password":"ohWu5UCh7o"},"district":"4fd43cc56d11340000000005","dob":"4/3/2005","ell_status":"N","email":"b.edward@example.com","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.224Z","location":{"zip":"11205"},"name":{"first":"Edward","middle":"S","last":"Bosco"},"race":"Black
193
- or African American","school":"530e595026403103360ff9fe","sis_id":"229355703","state_id":"731665079","student_number":"229355703","id":"530e5961049e75a9262d0029"},"uri":"/v1.1/students/530e5961049e75a9262d0029"},{"data":{"created":"2014-02-26T21:15:13.531Z","credentials":{"district_username":"oscarb85","district_password":"aib7duPhieh"},"district":"4fd43cc56d11340000000005","dob":"8/16/1995","ell_status":"Y","email":"b.oscar@example.net","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.227Z","location":{"zip":"11234"},"name":{"first":"Oscar","middle":"C","last":"Bashirian"},"race":"Black
194
- or African American","school":"530e595026403103360ff9fd","sis_id":"229797085","state_id":"194724600","student_number":"229797085","id":"530e5961049e75a9262d002b"},"uri":"/v1.1/students/530e5961049e75a9262d002b"},{"data":{"created":"2014-02-26T21:15:13.539Z","credentials":{"district_username":"oscark21","district_password":"aib7duPhieh"},"district":"4fd43cc56d11340000000005","dob":"8/12/1996","ell_status":"N","email":"oscar.k@example.org","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.231Z","location":{"zip":"11417"},"name":{"first":"Oscar","middle":"C","last":"Kertzmann"},"race":"Black
195
- or African American","school":"530e595026403103360ff9fd","sis_id":"230397921","state_id":"883983843","student_number":"230397921","id":"530e5961049e75a9262d002e"},"uri":"/v1.1/students/530e5961049e75a9262d002e"},{"data":{"created":"2014-02-26T21:15:13.544Z","credentials":{"district_username":"rubyh19","district_password":"Coonoh3Ij"},"district":"4fd43cc56d11340000000005","dob":"4/10/2003","ell_status":"Y","email":"ruby.h@example.com","frl_status":"Paid","gender":"F","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.236Z","location":{"zip":"11414"},"name":{"first":"Ruby","middle":"P","last":"Haley"},"race":"Black
196
- or African American","school":"530e595026403103360ff9fe","sis_id":"230758919","state_id":"345512937","student_number":"230758919","id":"530e5961049e75a9262d0030"},"uri":"/v1.1/students/530e5961049e75a9262d0030"},{"data":{"created":"2014-02-26T21:15:13.565Z","credentials":{"district_username":"jamess09","district_password":"Ar7tohloo0"},"district":"4fd43cc56d11340000000005","dob":"1/16/1998","ell_status":"N","email":"james.s@example.com","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.240Z","location":{"zip":"10280"},"name":{"first":"James","middle":"H","last":"Spencer"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"233564109","state_id":"197500067","student_number":"233564109","id":"530e5961049e75a9262d0034"},"uri":"/v1.1/students/530e5961049e75a9262d0034"},{"data":{"created":"2014-02-26T21:15:13.570Z","credentials":{"district_username":"jenniferj19","district_password":"een2eT0eC"},"district":"4fd43cc56d11340000000005","dob":"1/8/1997","ell_status":"Y","email":"j.jennifer@example.org","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.242Z","location":{"zip":"11239"},"name":{"first":"Jennifer","middle":"B","last":"Johnston"},"race":"American
197
- Indian","school":"530e595026403103360ff9fd","sis_id":"233832419","state_id":"237860326","student_number":"233832419","id":"530e5961049e75a9262d0035"},"uri":"/v1.1/students/530e5961049e75a9262d0035"},{"data":{"created":"2014-02-26T21:15:13.575Z","credentials":{"district_username":"georgeo79","district_password":"choh0aeth6S"},"district":"4fd43cc56d11340000000005","dob":"12/20/2007","ell_status":"N","email":"o_george@example.org","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.246Z","location":{"zip":"11695"},"name":{"first":"George","middle":"S","last":"O''Connell"},"race":"Black
198
- or African American","school":"530e595026403103360ff9fe","sis_id":"235286679","state_id":"733308521","student_number":"235286679","id":"530e5961049e75a9262d0036"},"uri":"/v1.1/students/530e5961049e75a9262d0036"},{"data":{"created":"2014-02-26T21:15:13.579Z","credentials":{"district_username":"douglasb69","district_password":"AhxahR7Th"},"district":"4fd43cc56d11340000000005","dob":"11/22/1997","ell_status":"Y","email":"b.douglas@example.org","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.251Z","location":{"zip":"11414"},"name":{"first":"Douglas","middle":"M","last":"Batz"},"race":"Two
199
- or More Races","school":"530e595026403103360ff9fd","sis_id":"235312669","state_id":"406970695","student_number":"235312669","id":"530e5961049e75a9262d0037"},"uri":"/v1.1/students/530e5961049e75a9262d0037"},{"data":{"created":"2014-02-26T21:15:13.584Z","credentials":{"district_username":"marks72","district_password":"Oim0queeGh"},"district":"4fd43cc56d11340000000005","dob":"2/23/1998","ell_status":"N","email":"mark_s@example.org","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.255Z","location":{"zip":"10031"},"name":{"first":"Mark","middle":"C","last":"Shields"},"race":"Black
200
- or African American","school":"530e595026403103360ff9fd","sis_id":"235711672","state_id":"522063569","student_number":"235711672","id":"530e5961049e75a9262d0038"},"uri":"/v1.1/students/530e5961049e75a9262d0038"},{"data":{"created":"2014-02-26T21:15:13.589Z","credentials":{"district_username":"jamesb24","district_password":"cub4uf3Yi"},"district":"4fd43cc56d11340000000005","dob":"11/30/1995","ell_status":"N","email":"james_b@example.com","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.259Z","location":{"zip":"10013"},"name":{"first":"James","middle":"C","last":"Bogisich"},"race":"Black
201
- or African American","school":"530e595026403103360ff9fd","sis_id":"236012124","state_id":"563870983","student_number":"236012124","id":"530e5961049e75a9262d0039"},"uri":"/v1.1/students/530e5961049e75a9262d0039"},{"data":{"created":"2014-02-26T21:15:13.602Z","credentials":{"district_username":"florenced17","district_password":"ahdais3ahDai"},"district":"4fd43cc56d11340000000005","dob":"2/23/2003","ell_status":"N","email":"d_florence@example.com","frl_status":"Paid","gender":"F","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.261Z","location":{"zip":"11373"},"name":{"first":"Florence","middle":"P","last":"Dooley"},"race":"Black
202
- or African American","school":"530e595026403103360ff9fe","sis_id":"237795317","state_id":"306179257","student_number":"237795317","id":"530e5961049e75a9262d003a"},"uri":"/v1.1/students/530e5961049e75a9262d003a"},{"data":{"created":"2014-02-26T21:15:13.609Z","credentials":{"district_username":"marvinr94","district_password":"XieC1pha0Aa"},"district":"4fd43cc56d11340000000005","dob":"11/26/2002","ell_status":"Y","email":"r_marvin@example.org","frl_status":"Paid","gender":"M","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.265Z","location":{"zip":"10038"},"name":{"first":"Marvin","middle":"R","last":"Rohan"},"race":"Black
203
- or African American","school":"530e595026403103360ff9fe","sis_id":"238053094","state_id":"901193501","student_number":"238053094","id":"530e5961049e75a9262d003b"},"uri":"/v1.1/students/530e5961049e75a9262d003b"},{"data":{"created":"2014-02-26T21:15:13.618Z","credentials":{"district_username":"maryf19","district_password":"Ie3Aekeiphe"},"district":"4fd43cc56d11340000000005","dob":"12/6/2004","ell_status":"Y","email":"mary_f@example.org","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.270Z","location":{"zip":"11422"},"name":{"first":"Mary","middle":"D","last":"Fritsch"},"race":"Two
204
- or More Races","school":"530e595026403103360ff9fe","sis_id":"239116519","state_id":"471948035","student_number":"239116519","id":"530e5961049e75a9262d003c"},"uri":"/v1.1/students/530e5961049e75a9262d003c"},{"data":{"created":"2014-02-26T21:15:13.628Z","credentials":{"district_username":"rebeccac35","district_password":"ooCheo3Ahdee"},"district":"4fd43cc56d11340000000005","dob":"4/11/2003","ell_status":"N","email":"rebecca.c@example.com","frl_status":"Paid","gender":"F","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.273Z","location":{"zip":"11209"},"name":{"first":"Rebecca","middle":"R","last":"Considine"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"239458535","state_id":"902039938","student_number":"239458535","id":"530e5961049e75a9262d003f"},"uri":"/v1.1/students/530e5961049e75a9262d003f"},{"data":{"created":"2014-02-26T21:15:13.653Z","credentials":{"district_username":"jeromes74","district_password":"idai0Xupoo"},"district":"4fd43cc56d11340000000005","dob":"7/31/1998","ell_status":"N","email":"jerome.s@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.277Z","location":{"zip":"11231"},"name":{"first":"Jerome","middle":"C","last":"Schowalter"},"race":"Two
205
- or More Races","school":"530e595026403103360ff9fd","sis_id":"243330474","state_id":"536202212","student_number":"243330474","id":"530e5961049e75a9262d0048"},"uri":"/v1.1/students/530e5961049e75a9262d0048"},{"data":{"created":"2014-02-26T21:15:13.659Z","credentials":{"district_username":"johna77","district_password":"Chei3ohnae"},"district":"4fd43cc56d11340000000005","dob":"10/25/2006","ell_status":"Y","email":"john.a@example.com","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.290Z","location":{"zip":"10473"},"name":{"first":"John","middle":"L","last":"Anderson"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"243615677","state_id":"438969260","student_number":"243615677","id":"530e5961049e75a9262d004a"},"uri":"/v1.1/students/530e5961049e75a9262d004a"},{"data":{"created":"2014-02-26T21:15:13.665Z","credentials":{"district_username":"stanleys28","district_password":"baeZ7Daibis"},"district":"4fd43cc56d11340000000005","dob":"1/17/1996","ell_status":"N","email":"stanley_s@example.org","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.294Z","location":{"zip":"10019"},"name":{"first":"Stanley","middle":"J","last":"Sauer"},"race":"American
206
- Indian","school":"530e595026403103360ff9fd","sis_id":"243806128","state_id":"893672743","student_number":"243806128","id":"530e5961049e75a9262d004c"},"uri":"/v1.1/students/530e5961049e75a9262d004c"},{"data":{"created":"2014-02-26T21:15:13.672Z","credentials":{"district_username":"douglasg71","district_password":"AhxahR7Th"},"district":"4fd43cc56d11340000000005","dob":"10/24/1997","ell_status":"Y","email":"g_douglas@example.org","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.296Z","location":{"zip":"10468"},"name":{"first":"Douglas","middle":"M","last":"Gusikowski"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"243865571","state_id":"621454258","student_number":"243865571","id":"530e5961049e75a9262d004e"},"uri":"/v1.1/students/530e5961049e75a9262d004e"},{"data":{"created":"2014-02-26T21:15:13.678Z","credentials":{"district_username":"crystalp39","district_password":"eingeeri4R"},"district":"4fd43cc56d11340000000005","dob":"6/21/2005","ell_status":"N","email":"p_crystal@example.net","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.301Z","location":{"zip":"10314"},"name":{"first":"Crystal","middle":"R","last":"Padberg"},"race":"Black
207
- or African American","school":"530e595026403103360ff9fe","sis_id":"244037639","state_id":"768824156","student_number":"244037639","id":"530e5961049e75a9262d0050"},"uri":"/v1.1/students/530e5961049e75a9262d0050"},{"data":{"created":"2014-02-26T21:15:13.684Z","credentials":{"district_username":"briand07","district_password":"Nibul8or"},"district":"4fd43cc56d11340000000005","dob":"11/1/2005","ell_status":"N","email":"brian.d@example.org","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.304Z","location":{"zip":"10033"},"name":{"first":"Brian","middle":"W","last":"Dietrich"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"244182707","state_id":"642729891","student_number":"244182707","id":"530e5961049e75a9262d0052"},"uri":"/v1.1/students/530e5961049e75a9262d0052"},{"data":{"created":"2014-02-26T21:15:13.689Z","credentials":{"district_username":"marjorieg75","district_password":"ien7fam3Ai"},"district":"4fd43cc56d11340000000005","dob":"11/23/2005","ell_status":"N","email":"marjorie_g@example.org","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.308Z","location":{"zip":"10024"},"name":{"first":"Marjorie","middle":"J","last":"Gutmann"},"race":"Two
208
- or More Races","school":"530e595026403103360ff9fe","sis_id":"244796975","state_id":"449599506","student_number":"244796975","id":"530e5961049e75a9262d0054"},"uri":"/v1.1/students/530e5961049e75a9262d0054"},{"data":{"created":"2014-02-26T21:15:13.695Z","credentials":{"district_username":"spencers00","district_password":"Aiwoo8Uong"},"district":"4fd43cc56d11340000000005","dob":"3/3/1997","ell_status":"Y","email":"s_spencer@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.313Z","location":{"zip":"11370"},"name":{"first":"Spencer","middle":"N","last":"Schulist"},"race":"Black
209
- or African American","school":"530e595026403103360ff9fd","sis_id":"245619600","state_id":"667679116","student_number":"245619600","id":"530e5961049e75a9262d0056"},"uri":"/v1.1/students/530e5961049e75a9262d0056"},{"data":{"created":"2014-02-26T21:15:13.716Z","credentials":{"district_username":"janh45","district_password":"phe4Jeij8Gei"},"district":"4fd43cc56d11340000000005","dob":"8/21/1996","ell_status":"Y","email":"h.jan@example.com","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.317Z","location":{"zip":"11205"},"name":{"first":"Jan","middle":"R","last":"Hamill"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"248398245","state_id":"140438728","student_number":"248398245","id":"530e5961049e75a9262d005a"},"uri":"/v1.1/students/530e5961049e75a9262d005a"},{"data":{"created":"2014-02-26T21:15:13.731Z","credentials":{"district_username":"rodneyh41","district_password":"aiX0iayai"},"district":"4fd43cc56d11340000000005","dob":"11/19/1995","ell_status":"Y","email":"h.rodney@example.com","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.319Z","location":{"zip":"10010"},"name":{"first":"Rodney","middle":"M","last":"Halvorson"},"race":"American
210
- Indian","school":"530e595026403103360ff9fd","sis_id":"249968541","state_id":"908498980","student_number":"249968541","id":"530e5961049e75a9262d005b"},"uri":"/v1.1/students/530e5961049e75a9262d005b"},{"data":{"created":"2014-02-26T21:15:13.735Z","credentials":{"district_username":"garyl85","district_password":"moode5aFii3"},"district":"4fd43cc56d11340000000005","dob":"12/15/1996","ell_status":"Y","email":"l_gary@example.net","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.323Z","location":{"zip":"11215"},"name":{"first":"Gary","middle":"E","last":"Lemke"},"race":"Black
211
- or African American","school":"530e595026403103360ff9fd","sis_id":"250944385","state_id":"434617041","student_number":"250944385","id":"530e5961049e75a9262d005c"},"uri":"/v1.1/students/530e5961049e75a9262d005c"},{"data":{"created":"2014-02-26T21:15:13.743Z","credentials":{"district_username":"naomis65","district_password":"Eiche1Eit5"},"district":"4fd43cc56d11340000000005","dob":"2/5/1998","ell_status":"N","email":"s_naomi@example.com","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.328Z","location":{"zip":"11428"},"name":{"first":"Naomi","middle":"W","last":"Schulist"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"254019765","state_id":"791924272","student_number":"254019765","id":"530e5961049e75a9262d005d"},"uri":"/v1.1/students/530e5961049e75a9262d005d"},{"data":{"created":"2014-02-26T21:15:13.751Z","credentials":{"district_username":"anthonyc82","district_password":"uZ0aifaeBoo"},"district":"4fd43cc56d11340000000005","dob":"11/2/2001","ell_status":"Y","email":"c_anthony@example.com","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.332Z","location":{"zip":"11433"},"name":{"first":"Anthony","middle":"M","last":"Corwin"},"race":"Black
212
- or African American","school":"530e595026403103360ff9ff","sis_id":"255625682","state_id":"156004724","student_number":"255625682","id":"530e5961049e75a9262d005e"},"uri":"/v1.1/students/530e5961049e75a9262d005e"},{"data":{"created":"2014-02-26T21:15:13.756Z","credentials":{"district_username":"justint52","district_password":"ohYoj2zae"},"district":"4fd43cc56d11340000000005","dob":"5/29/2002","ell_status":"N","email":"t.justin@example.com","frl_status":"Paid","gender":"M","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.335Z","location":{"zip":"10020"},"name":{"first":"Justin","middle":"A","last":"Towne"},"race":"Black
213
- or African American","school":"530e595026403103360ff9fe","sis_id":"257818852","state_id":"171389160","student_number":"257818852","id":"530e5961049e75a9262d005f"},"uri":"/v1.1/students/530e5961049e75a9262d005f"},{"data":{"created":"2014-02-26T21:15:13.762Z","credentials":{"district_username":"adrianr32","district_password":"Pah9looG"},"district":"4fd43cc56d11340000000005","dob":"3/19/2000","ell_status":"Y","email":"r.adrian@example.com","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.339Z","location":{"zip":"11417"},"name":{"first":"Adrian","middle":"L","last":"Rippin"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"258490032","state_id":"113106086","student_number":"258490032","id":"530e5961049e75a9262d0060"},"uri":"/v1.1/students/530e5961049e75a9262d0060"},{"data":{"created":"2014-02-26T21:15:13.770Z","credentials":{"district_username":"diannac59","district_password":"Leeyah8ouph9"},"district":"4fd43cc56d11340000000005","dob":"3/17/1999","ell_status":"N","email":"c.dianna@example.org","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.344Z","location":{"zip":"10033"},"name":{"first":"Dianna","middle":"J","last":"Collins"},"race":"Black
214
- or African American","school":"530e595026403103360ff9ff","sis_id":"260768059","state_id":"638158320","student_number":"260768059","id":"530e5961049e75a9262d0061"},"uri":"/v1.1/students/530e5961049e75a9262d0061"},{"data":{"created":"2014-02-26T21:15:13.775Z","credentials":{"district_username":"albertt35","district_password":"kaicaeY1"},"district":"4fd43cc56d11340000000005","dob":"3/24/1998","ell_status":"N","email":"albert_t@example.org","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.347Z","location":{"zip":"10128"},"name":{"first":"Albert","middle":"L","last":"Trantow"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"261136635","state_id":"100838658","student_number":"261136635","id":"530e5961049e75a9262d0062"},"uri":"/v1.1/students/530e5961049e75a9262d0062"},{"data":{"created":"2014-02-26T21:15:13.793Z","credentials":{"district_username":"sharonc75","district_password":"QuuaCh6quo"},"district":"4fd43cc56d11340000000005","dob":"7/9/2002","ell_status":"N","email":"sharon_c@example.org","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.350Z","location":{"zip":"10473"},"name":{"first":"Sharon","middle":"D","last":"Christiansen"},"race":"Black
215
- or African American","school":"530e595026403103360ff9fe","sis_id":"263323275","state_id":"767847088","student_number":"263323275","id":"530e5961049e75a9262d0065"},"uri":"/v1.1/students/530e5961049e75a9262d0065"},{"data":{"created":"2014-02-26T21:15:13.798Z","credentials":{"district_username":"ericl17","district_password":"jie3huph7Oc"},"district":"4fd43cc56d11340000000005","dob":"5/23/2004","ell_status":"Y","email":"eric.l@example.org","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.354Z","location":{"zip":"11419"},"name":{"first":"Eric","middle":"E","last":"Lindgren"},"race":"Black
216
- or African American","school":"530e595026403103360ff9fe","sis_id":"263559217","state_id":"723046682","student_number":"263559217","id":"530e5961049e75a9262d0067"},"uri":"/v1.1/students/530e5961049e75a9262d0067"},{"data":{"created":"2014-02-26T21:15:13.821Z","credentials":{"district_username":"michaell18","district_password":"NaY4yeihish"},"district":"4fd43cc56d11340000000005","dob":"3/4/2000","ell_status":"N","email":"michael.l@example.net","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.359Z","location":{"zip":"11418"},"name":{"first":"Michael","middle":"V","last":"Lowe"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"265013918","state_id":"518840297","student_number":"265013918","id":"530e5961049e75a9262d006e"},"uri":"/v1.1/students/530e5961049e75a9262d006e"},{"data":{"created":"2014-02-26T21:15:13.828Z","credentials":{"district_username":"donaldr24","district_password":"eibe3shaeQu"},"district":"4fd43cc56d11340000000005","dob":"7/7/1998","ell_status":"Y","email":"r.donald@example.com","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.363Z","location":{"zip":"10457"},"name":{"first":"Donald","middle":"J","last":"Rohan"},"race":"Black
217
- or African American","school":"530e595026403103360ff9fd","sis_id":"265327424","state_id":"650963275","student_number":"265327424","id":"530e5961049e75a9262d0070"},"uri":"/v1.1/students/530e5961049e75a9262d0070"},{"data":{"created":"2014-02-26T21:15:13.843Z","credentials":{"district_username":"kevinh04","district_password":"OoCo1oodoo"},"district":"4fd43cc56d11340000000005","dob":"8/27/2007","ell_status":"N","email":"h_kevin@example.net","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.365Z","location":{"zip":"11220"},"name":{"first":"Kevin","middle":"B","last":"Herman"},"race":"Black
218
- or African American","school":"530e595026403103360ff9fe","sis_id":"265863904","state_id":"330976284","student_number":"265863904","id":"530e5961049e75a9262d0074"},"uri":"/v1.1/students/530e5961049e75a9262d0074"},{"data":{"created":"2014-02-26T21:15:13.865Z","credentials":{"district_username":"michaelh57","district_password":"ahj0is6CeRa"},"district":"4fd43cc56d11340000000005","dob":"2/2/1995","ell_status":"Y","email":"michael.h@example.org","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.369Z","location":{"zip":"10029"},"name":{"first":"Michael","middle":"E","last":"Hickle"},"race":"Black
219
- or African American","school":"530e595026403103360ff9fd","sis_id":"268131157","state_id":"633439265","student_number":"268131157","id":"530e5961049e75a9262d007b"},"uri":"/v1.1/students/530e5961049e75a9262d007b"},{"data":{"created":"2014-02-26T21:15:13.874Z","credentials":{"district_username":"lilianag34","district_password":"xo1Ou2Ia7b"},"district":"4fd43cc56d11340000000005","dob":"8/2/1998","ell_status":"N","email":"g.liliana@example.com","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.374Z","location":{"zip":"11369"},"name":{"first":"Liliana","middle":"R","last":"Goodwin"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"269573034","state_id":"877055922","student_number":"269573034","id":"530e5961049e75a9262d007d"},"uri":"/v1.1/students/530e5961049e75a9262d007d"},{"data":{"created":"2014-02-26T21:15:13.879Z","credentials":{"district_username":"karenb72","district_password":"Phohgheph2V"},"district":"4fd43cc56d11340000000005","dob":"5/26/2006","ell_status":"N","email":"b_karen@example.org","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.377Z","location":{"zip":"11230"},"name":{"first":"Karen","middle":"R","last":"Becker"},"race":"Black
220
- or African American","school":"530e595026403103360ff9fe","sis_id":"270251072","state_id":"987789241","student_number":"270251072","id":"530e5961049e75a9262d007e"},"uri":"/v1.1/students/530e5961049e75a9262d007e"},{"data":{"created":"2014-02-26T21:15:13.883Z","credentials":{"district_username":"jeanettek07","district_password":"iep8xiH7"},"district":"4fd43cc56d11340000000005","dob":"1/31/1998","ell_status":"Y","email":"jeanette.k@example.net","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.381Z","location":{"zip":"11372"},"name":{"first":"Jeanette","middle":"C","last":"Kulas"},"race":"American
221
- Indian","school":"530e595026403103360ff9fd","sis_id":"270412907","state_id":"633416820","student_number":"270412907","id":"530e5961049e75a9262d007f"},"uri":"/v1.1/students/530e5961049e75a9262d007f"},{"data":{"created":"2014-02-26T21:15:13.887Z","credentials":{"district_username":"lindag76","district_password":"ohgiLai3Doo"},"district":"4fd43cc56d11340000000005","dob":"12/5/1997","ell_status":"Y","email":"g_linda@example.net","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.386Z","location":{"zip":"11237"},"name":{"first":"Linda","middle":"S","last":"Glover"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"270438076","state_id":"613582425","student_number":"270438076","id":"530e5961049e75a9262d0080"},"uri":"/v1.1/students/530e5961049e75a9262d0080"},{"data":{"created":"2014-02-26T21:15:13.892Z","credentials":{"district_username":"margareto51","district_password":"ikohNg6hee"},"district":"4fd43cc56d11340000000005","dob":"5/26/2006","ell_status":"N","email":"o.margaret@example.org","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.390Z","location":{"zip":"10468"},"name":{"first":"Margaret","middle":"J","last":"O''Connell"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"272216051","state_id":"282558040","student_number":"272216051","id":"530e5961049e75a9262d0081"},"uri":"/v1.1/students/530e5961049e75a9262d0081"},{"data":{"created":"2014-02-26T21:15:13.904Z","credentials":{"district_username":"evalynh43","district_password":"ooXahwook2"},"district":"4fd43cc56d11340000000005","dob":"1/11/1997","ell_status":"Y","email":"evalyn_h@example.org","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.392Z","location":{"zip":"11231"},"name":{"first":"Evalyn","middle":"J","last":"Hartmann"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"272516643","state_id":"317905466","student_number":"272516643","id":"530e5961049e75a9262d0082"},"uri":"/v1.1/students/530e5961049e75a9262d0082"},{"data":{"created":"2014-02-26T21:15:13.909Z","credentials":{"district_username":"anitap27","district_password":"buQuae3ao"},"district":"4fd43cc56d11340000000005","dob":"3/2/2001","ell_status":"N","email":"p.anita@example.net","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.396Z","location":{"zip":"10021"},"name":{"first":"Anita","middle":"T","last":"Price"},"race":"Two
222
- or More Races","school":"530e595026403103360ff9ff","sis_id":"273633427","state_id":"700772640","student_number":"273633427","id":"530e5961049e75a9262d0083"},"uri":"/v1.1/students/530e5961049e75a9262d0083"},{"data":{"created":"2014-02-26T21:15:13.913Z","credentials":{"district_username":"jasonh62","district_password":"Eif6eephin3"},"district":"4fd43cc56d11340000000005","dob":"5/22/2004","ell_status":"Y","email":"h_jason@example.com","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.401Z","location":{"zip":"11373"},"name":{"first":"Jason","middle":"J","last":"Hoeger"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"273729162","state_id":"370894238","student_number":"273729162","id":"530e5961049e75a9262d0084"},"uri":"/v1.1/students/530e5961049e75a9262d0084"},{"data":{"created":"2014-02-26T21:15:13.926Z","credentials":{"district_username":"melissah51","district_password":"iXaife7ujeep"},"district":"4fd43cc56d11340000000005","dob":"11/18/1998","ell_status":"N","email":"melissa.h@example.org","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.405Z","location":{"zip":"11421"},"name":{"first":"Melissa","middle":"R","last":"Hackett"},"race":"Black
223
- or African American","school":"530e595026403103360ff9fd","sis_id":"274676951","state_id":"722272184","student_number":"274676951","id":"530e5961049e75a9262d0085"},"uri":"/v1.1/students/530e5961049e75a9262d0085"},{"data":{"created":"2014-02-26T21:15:13.931Z","credentials":{"district_username":"arthurc13","district_password":"uod0aiXue"},"district":"4fd43cc56d11340000000005","dob":"12/31/1996","ell_status":"Y","email":"c.arthur@example.net","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.408Z","location":{"zip":"10307"},"name":{"first":"Arthur","middle":"J","last":"Cronin"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"275188813","state_id":"572185177","student_number":"275188813","id":"530e5961049e75a9262d0086"},"uri":"/v1.1/students/530e5961049e75a9262d0086"},{"data":{"created":"2014-02-26T21:15:13.946Z","credentials":{"district_username":"cynthiam66","district_password":"aiL5iirie"},"district":"4fd43cc56d11340000000005","dob":"8/29/2003","ell_status":"N","email":"cynthia_m@example.net","frl_status":"Paid","gender":"F","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.412Z","location":{"zip":"10459"},"name":{"first":"Cynthia","middle":"H","last":"Mohr"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"275509466","state_id":"568491920","student_number":"275509466","id":"530e5961049e75a9262d0087"},"uri":"/v1.1/students/530e5961049e75a9262d0087"},{"data":{"created":"2014-02-26T21:15:13.951Z","credentials":{"district_username":"karenb85","district_password":"apohR9ei"},"district":"4fd43cc56d11340000000005","dob":"12/23/2004","ell_status":"N","email":"karen.b@example.com","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.417Z","location":{"zip":"10020"},"name":{"first":"Karen","middle":"J","last":"Bartoletti"},"race":"Two
224
- or More Races","school":"530e595026403103360ff9fe","sis_id":"276080185","state_id":"385815513","student_number":"276080185","id":"530e5961049e75a9262d0088"},"uri":"/v1.1/students/530e5961049e75a9262d0088"},{"data":{"created":"2014-02-26T21:15:13.956Z","credentials":{"district_username":"jacka95","district_password":"iShie7ai"},"district":"4fd43cc56d11340000000005","dob":"3/14/1998","ell_status":"N","email":"jack_a@example.org","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.421Z","location":{"zip":"11414"},"name":{"first":"Jack","middle":"C","last":"Abbott"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"276607595","state_id":"934459555","student_number":"276607595","id":"530e5961049e75a9262d0089"},"uri":"/v1.1/students/530e5961049e75a9262d0089"},{"data":{"created":"2014-02-26T21:15:13.961Z","credentials":{"district_username":"arturok50","district_password":"Ungahp2aexi"},"district":"4fd43cc56d11340000000005","dob":"4/25/2000","ell_status":"Y","email":"k_arturo@example.com","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.423Z","location":{"zip":"10014"},"name":{"first":"Arturo","middle":"A","last":"Kutch"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"276911950","state_id":"463200585","student_number":"276911950","id":"530e5961049e75a9262d008a"},"uri":"/v1.1/students/530e5961049e75a9262d008a"},{"data":{"created":"2014-02-26T21:15:13.965Z","credentials":{"district_username":"elaynec15","district_password":"eipeix1Ei"},"district":"4fd43cc56d11340000000005","dob":"11/8/2000","ell_status":"N","email":"elayne.c@example.com","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.427Z","location":{"zip":"10022"},"name":{"first":"Elayne","middle":"M","last":"Cormier"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"277800515","state_id":"986632811","student_number":"277800515","id":"530e5961049e75a9262d008b"},"uri":"/v1.1/students/530e5961049e75a9262d008b"},{"data":{"created":"2014-02-26T21:15:13.970Z","credentials":{"district_username":"emmah45","district_password":"ca7teeYa1ei"},"district":"4fd43cc56d11340000000005","dob":"4/21/2006","ell_status":"N","email":"h.emma@example.org","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.432Z","location":{"zip":"11103"},"name":{"first":"Emma","middle":"J","last":"Hyatt"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"278677245","state_id":"436716936","student_number":"278677245","id":"530e5961049e75a9262d008c"},"uri":"/v1.1/students/530e5961049e75a9262d008c"},{"data":{"created":"2014-02-26T21:15:13.975Z","credentials":{"district_username":"paule27","district_password":"ooPhu8rohx"},"district":"4fd43cc56d11340000000005","dob":"4/7/1997","ell_status":"N","email":"e_paul@example.com","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.436Z","location":{"zip":"10017"},"name":{"first":"Paul","middle":"J","last":"Erdman"},"race":"Black
225
- or African American","school":"530e595026403103360ff9fd","sis_id":"278841027","state_id":"377745855","student_number":"278841027","id":"530e5961049e75a9262d008d"},"uri":"/v1.1/students/530e5961049e75a9262d008d"},{"data":{"created":"2014-02-26T21:15:13.986Z","credentials":{"district_username":"florentinar88","district_password":"vooFae8ph"},"district":"4fd43cc56d11340000000005","dob":"9/14/1998","ell_status":"N","email":"florentina.r@example.net","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.438Z","location":{"zip":"11223"},"name":{"first":"Florentina","middle":"B","last":"Reinger"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"279418488","state_id":"227735229","student_number":"279418488","id":"530e5961049e75a9262d008f"},"uri":"/v1.1/students/530e5961049e75a9262d008f"},{"data":{"created":"2014-02-26T21:15:13.992Z","credentials":{"district_username":"ericb70","district_password":"iFahk3ahch"},"district":"4fd43cc56d11340000000005","dob":"8/21/2004","ell_status":"N","email":"b_eric@example.net","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.444Z","location":{"zip":"11201"},"name":{"first":"Eric","middle":"D","last":"Balistreri"},"race":"American
226
- Indian","school":"530e595026403103360ff9fe","sis_id":"279778470","state_id":"345412271","student_number":"279778470","id":"530e5961049e75a9262d0091"},"uri":"/v1.1/students/530e5961049e75a9262d0091"},{"data":{"created":"2014-02-26T21:15:13.996Z","credentials":{"district_username":"dianab50","district_password":"wiexeeB3c"},"district":"4fd43cc56d11340000000005","dob":"1/11/2006","ell_status":"N","email":"b.diana@example.com","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.446Z","location":{"zip":"10280"},"name":{"first":"Diana","middle":"J","last":"Bahringer"},"race":"Black
227
- or African American","school":"530e595026403103360ff9fe","sis_id":"279881250","state_id":"702517788","student_number":"279881250","id":"530e5961049e75a9262d0093"},"uri":"/v1.1/students/530e5961049e75a9262d0093"},{"data":{"created":"2014-02-26T21:15:14.005Z","credentials":{"district_username":"ellenh45","district_password":"aa2fas9ohSh"},"district":"4fd43cc56d11340000000005","dob":"5/28/2002","ell_status":"N","email":"h.ellen@example.com","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.450Z","location":{"zip":"10003"},"name":{"first":"Ellen","middle":"V","last":"Hirthe"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"279990945","state_id":"409360976","student_number":"279990945","id":"530e5962049e75a9262d0096"},"uri":"/v1.1/students/530e5962049e75a9262d0096"},{"data":{"created":"2014-02-26T21:15:14.012Z","credentials":{"district_username":"caryr67","district_password":"joo4Aet4eehee"},"district":"4fd43cc56d11340000000005","dob":"3/10/2001","ell_status":"Y","email":"cary.r@example.org","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.455Z","location":{"zip":"10018"},"name":{"first":"Cary","middle":"M","last":"Runte"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"280571167","state_id":"766585879","student_number":"280571167","id":"530e5962049e75a9262d0098"},"uri":"/v1.1/students/530e5962049e75a9262d0098"},{"data":{"created":"2014-02-26T21:15:14.023Z","credentials":{"district_username":"rubyk04","district_password":"Wahde1ahph"},"district":"4fd43cc56d11340000000005","dob":"1/2/1999","ell_status":"Y","email":"ruby.k@example.com","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.459Z","location":{"zip":"11697"},"name":{"first":"Ruby","middle":"J","last":"Kreiger"},"race":"Black
228
- or African American","school":"530e595026403103360ff9ff","sis_id":"281062504","state_id":"112158775","student_number":"281062504","id":"530e5962049e75a9262d009c"},"uri":"/v1.1/students/530e5962049e75a9262d009c"},{"data":{"created":"2014-02-26T21:15:14.028Z","credentials":{"district_username":"davido53","district_password":"yi5OuGiet"},"district":"4fd43cc56d11340000000005","dob":"6/20/1996","ell_status":"Y","email":"david.o@example.net","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.462Z","location":{"zip":"11367"},"name":{"first":"David","middle":"C","last":"Ortiz"},"race":"Two
229
- or More Races","school":"530e595026403103360ff9fd","sis_id":"281189153","state_id":"911878764","student_number":"281189153","id":"530e5962049e75a9262d009e"},"uri":"/v1.1/students/530e5962049e75a9262d009e"},{"data":{"created":"2014-02-26T21:15:14.034Z","credentials":{"district_username":"danielb67","district_password":"koquieB2ahqu"},"district":"4fd43cc56d11340000000005","dob":"7/11/2001","ell_status":"N","email":"b.daniel@example.com","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.465Z","location":{"zip":"10016"},"name":{"first":"Daniel","middle":"E","last":"Bruen"},"race":"Two
230
- or More Races","school":"530e595026403103360ff9ff","sis_id":"281506967","state_id":"783233963","student_number":"281506967","id":"530e5962049e75a9262d00a0"},"uri":"/v1.1/students/530e5962049e75a9262d00a0"},{"data":{"created":"2014-02-26T21:15:14.041Z","credentials":{"district_username":"ethans60","district_password":"iv5ooga4Ie"},"district":"4fd43cc56d11340000000005","dob":"10/19/2004","ell_status":"N","email":"s_ethan@example.com","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.470Z","location":{"zip":"10465"},"name":{"first":"Ethan","middle":"S","last":"Stokes"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"281770560","state_id":"424914041","student_number":"281770560","id":"530e5962049e75a9262d00a2"},"uri":"/v1.1/students/530e5962049e75a9262d00a2"},{"data":{"created":"2014-02-26T21:15:14.049Z","credentials":{"district_username":"kimberlyt62","district_password":"Ue7oevee"},"district":"4fd43cc56d11340000000005","dob":"12/24/1997","ell_status":"N","email":"t.kimberly@example.net","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.482Z","location":{"zip":"11695"},"name":{"first":"Kimberly","middle":"J","last":"Torphy"},"race":"Black
231
- or African American","school":"530e595026403103360ff9fd","sis_id":"282491062","state_id":"918036457","student_number":"282491062","id":"530e5962049e75a9262d00a5"},"uri":"/v1.1/students/530e5962049e75a9262d00a5"},{"data":{"created":"2014-02-26T21:15:14.060Z","credentials":{"district_username":"alexp21","district_password":"la8ohShee"},"district":"4fd43cc56d11340000000005","dob":"9/24/2003","ell_status":"N","email":"p.alex@example.com","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.486Z","location":{"zip":"10018"},"name":{"first":"Alex","middle":"M","last":"Pacocha"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"283207621","state_id":"729866081","student_number":"283207621","id":"530e5962049e75a9262d00a9"},"uri":"/v1.1/students/530e5962049e75a9262d00a9"}],"links":[{"rel":"self","uri":"/v1.1/students?starting_after=530e5961049e75a9262cffe4"},{"rel":"prev","uri":"/v1.1/students?ending_before=530e5961049e75a9262cffe5"},{"rel":"next","uri":"/v1.1/students?starting_after=530e5962049e75a9262d00a9"}]}'
232
- http_version:
233
- recorded_at: Sat, 13 Sep 2014 00:03:50 GMT
234
- - request:
235
- method: get
236
- uri: https://api.clever.com//v1.1/students?starting_after=530e5962049e75a9262d00a9
237
- body:
238
- encoding: US-ASCII
239
- string: ''
240
- headers:
241
- Accept:
242
- - ! '*/*; q=0.5, application/xml'
243
- Accept-Encoding:
244
- - gzip, deflate
245
- Authorization:
246
- - Bearer DEMO_TOKEN
247
- User-Agent:
248
- - Ruby
249
- response:
250
- status:
251
- code: 200
252
- message: OK
253
- headers:
254
- Access-Control-Allow-Headers:
255
- - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
256
- Access-Control-Allow-Methods:
257
- - GET,PATCH,POST,DELETE
258
- Access-Control-Allow-Origin:
259
- - ! '*'
260
- Content-Type:
261
- - application/json; charset=utf-8
262
- Date:
263
- - Sat, 13 Sep 2014 00:03:50 GMT
264
- Etag:
265
- - ! '"-968465703"'
266
- Server:
267
- - nginx/1.4.7
268
- X-Powered-By:
269
- - Express
270
- Content-Length:
271
- - '66356'
272
- Connection:
273
- - keep-alive
274
- body:
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
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
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
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
280
- or More Races","school":"530e595026403103360ff9ff","sis_id":"284756804","state_id":"776755208","student_number":"284756804","id":"530e5962049e75a9262d00b1"},"uri":"/v1.1/students/530e5962049e75a9262d00b1"},{"data":{"created":"2014-02-26T21:15:14.092Z","credentials":{"district_username":"vincento00","district_password":"losuB6ool7th"},"district":"4fd43cc56d11340000000005","dob":"4/12/2000","ell_status":"N","email":"vincent_o@example.net","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.508Z","location":{"zip":"11358"},"name":{"first":"Vincent","middle":"C","last":"O''Hara"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"284767300","state_id":"588851533","student_number":"284767300","id":"530e5962049e75a9262d00b2"},"uri":"/v1.1/students/530e5962049e75a9262d00b2"},{"data":{"created":"2014-02-26T21:15:14.097Z","credentials":{"district_username":"louisp76","district_password":"ge3Hoozau"},"district":"4fd43cc56d11340000000005","dob":"12/15/1996","ell_status":"N","email":"louis.p@example.com","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.513Z","location":{"zip":"11224"},"name":{"first":"Louis","middle":"B","last":"Pfeffer"},"race":"American
281
- Indian","school":"530e595026403103360ff9fd","sis_id":"285399376","state_id":"480622482","student_number":"285399376","id":"530e5962049e75a9262d00b3"},"uri":"/v1.1/students/530e5962049e75a9262d00b3"},{"data":{"created":"2014-02-26T21:15:14.102Z","credentials":{"district_username":"amandak35","district_password":"roh1Feiphah"},"district":"4fd43cc56d11340000000005","dob":"11/28/1999","ell_status":"N","email":"amanda_k@example.net","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.517Z","location":{"zip":"10025"},"name":{"first":"Amanda","middle":"G","last":"Krajcik"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"285422135","state_id":"991706297","student_number":"285422135","id":"530e5962049e75a9262d00b4"},"uri":"/v1.1/students/530e5962049e75a9262d00b4"},{"data":{"created":"2014-02-26T21:15:14.106Z","credentials":{"district_username":"robertd99","district_password":"ighae2cohDai"},"district":"4fd43cc56d11340000000005","dob":"12/28/1997","ell_status":"N","email":"d_robert@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.519Z","location":{"zip":"10309"},"name":{"first":"Robert","middle":"M","last":"Durgan"},"race":"Black
282
- or African American","school":"530e595026403103360ff9fd","sis_id":"285824299","state_id":"844096102","student_number":"285824299","id":"530e5962049e75a9262d00b5"},"uri":"/v1.1/students/530e5962049e75a9262d00b5"},{"data":{"created":"2014-02-26T21:15:14.116Z","credentials":{"district_username":"markk82","district_password":"ooy7ahyaGoh"},"district":"4fd43cc56d11340000000005","dob":"6/22/1997","ell_status":"N","email":"k_mark@example.com","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.523Z","location":{"zip":"11215"},"name":{"first":"Mark","middle":"R","last":"Keebler"},"race":"Black
283
- or African American","school":"530e595026403103360ff9fd","sis_id":"286021282","state_id":"986009140","student_number":"286021282","id":"530e5962049e75a9262d00b6"},"uri":"/v1.1/students/530e5962049e75a9262d00b6"},{"data":{"created":"2014-02-26T21:15:14.123Z","credentials":{"district_username":"tinak16","district_password":"yaizee4Ie"},"district":"4fd43cc56d11340000000005","dob":"2/21/1998","ell_status":"N","email":"k.tina@example.com","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-13T00:45:01.269Z","location":{"zip":"11222"},"name":{"first":"Christina","middle":"J","last":"Keeling"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"287178816","state_id":"197227024","student_number":"287178816","id":"530e5962049e75a9262d00b7"},"uri":"/v1.1/students/530e5962049e75a9262d00b7"},{"data":{"created":"2014-02-26T21:15:14.127Z","credentials":{"district_username":"williamr52","district_password":"guo2Geechoor"},"district":"4fd43cc56d11340000000005","dob":"11/9/2003","ell_status":"Y","email":"r.william@example.net","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.532Z","location":{"zip":"10464"},"name":{"first":"William","middle":"C","last":"Rau"},"race":"Black
284
- or African American","school":"530e595026403103360ff9fe","sis_id":"287461452","state_id":"349391272","student_number":"287461452","id":"530e5962049e75a9262d00b8"},"uri":"/v1.1/students/530e5962049e75a9262d00b8"},{"data":{"created":"2014-02-26T21:15:14.137Z","credentials":{"district_username":"rebekahh73","district_password":"Wie4Aj9ao8G"},"district":"4fd43cc56d11340000000005","dob":"8/18/1997","ell_status":"N","email":"rebekah_h@example.net","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.535Z","location":{"zip":"11210"},"name":{"first":"Rebekah","middle":"R","last":"Harris"},"race":"American
285
- Indian","school":"530e595026403103360ff9fd","sis_id":"289345873","state_id":"443062170","student_number":"289345873","id":"530e5962049e75a9262d00b9"},"uri":"/v1.1/students/530e5962049e75a9262d00b9"},{"data":{"created":"2014-02-26T21:15:14.151Z","credentials":{"district_username":"rebeccah04","district_password":"eisoot7eF"},"district":"4fd43cc56d11340000000005","dob":"8/30/1998","ell_status":"N","email":"rebecca.h@example.com","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.538Z","location":{"zip":"11422"},"name":{"first":"Rebecca","middle":"A","last":"Harris"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"290374704","state_id":"147846376","student_number":"290374704","id":"530e5962049e75a9262d00ba"},"uri":"/v1.1/students/530e5962049e75a9262d00ba"},{"data":{"created":"2014-02-26T21:15:14.156Z","credentials":{"district_username":"williamh99","district_password":"ahng8Ahh"},"district":"4fd43cc56d11340000000005","dob":"7/17/2003","ell_status":"N","email":"h_william@example.com","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.543Z","location":{"zip":"10301"},"name":{"first":"William","middle":"D","last":"Herman"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"290406299","state_id":"587330766","student_number":"290406299","id":"530e5962049e75a9262d00bb"},"uri":"/v1.1/students/530e5962049e75a9262d00bb"},{"data":{"created":"2014-02-26T21:15:14.161Z","credentials":{"district_username":"louisec37","district_password":"aePh0boo9aey9"},"district":"4fd43cc56d11340000000005","dob":"3/18/2005","ell_status":"Y","email":"louise.c@example.net","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.547Z","location":{"zip":"11204"},"name":{"first":"Louise","middle":"J","last":"Collier"},"race":"Black
286
- or African American","school":"530e595026403103360ff9fe","sis_id":"290918237","state_id":"431678728","student_number":"290918237","id":"530e5962049e75a9262d00bc"},"uri":"/v1.1/students/530e5962049e75a9262d00bc"},{"data":{"created":"2014-02-26T21:15:14.166Z","credentials":{"district_username":"sabrinak95","district_password":"Ix9eefohr"},"district":"4fd43cc56d11340000000005","dob":"11/2/1996","ell_status":"Y","email":"k.sabrina@example.net","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.550Z","location":{"zip":"10013"},"name":{"first":"Sabrina","middle":"F","last":"Kunze"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"290996595","state_id":"883880488","student_number":"290996595","id":"530e5962049e75a9262d00bd"},"uri":"/v1.1/students/530e5962049e75a9262d00bd"},{"data":{"created":"2014-02-26T21:15:14.172Z","credentials":{"district_username":"vincenzob60","district_password":"AeQuoPh4AiC"},"district":"4fd43cc56d11340000000005","dob":"2/10/1995","ell_status":"Y","email":"vincenzo_b@example.org","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.554Z","location":{"zip":"10475"},"name":{"first":"Vincenzo","middle":"N","last":"Bergstrom"},"race":"Two
287
- or More Races","school":"530e595026403103360ff9fd","sis_id":"291655160","state_id":"611081647","student_number":"291655160","id":"530e5962049e75a9262d00be"},"uri":"/v1.1/students/530e5962049e75a9262d00be"},{"data":{"created":"2014-02-26T21:15:14.179Z","credentials":{"district_username":"danielf70","district_password":"Fo7aisaicah"},"district":"4fd43cc56d11340000000005","dob":"2/20/1996","ell_status":"N","email":"f.daniel@example.org","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.559Z","location":{"zip":"11693"},"name":{"first":"Daniel","middle":"R","last":"Franecki"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"293155070","state_id":"594179581","student_number":"293155070","id":"530e5962049e75a9262d00bf"},"uri":"/v1.1/students/530e5962049e75a9262d00bf"},{"data":{"created":"2014-02-26T21:15:14.184Z","credentials":{"district_username":"harryf28","district_password":"shaeZoo3sh"},"district":"4fd43cc56d11340000000005","dob":"10/18/2007","ell_status":"N","email":"harry.f@example.net","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.563Z","location":{"zip":"11103"},"name":{"first":"Harry","middle":"M","last":"Fay"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"293187328","state_id":"493156828","student_number":"293187328","id":"530e5962049e75a9262d00c0"},"uri":"/v1.1/students/530e5962049e75a9262d00c0"},{"data":{"created":"2014-02-26T21:15:14.208Z","credentials":{"district_username":"jeffreyb14","district_password":"eeT8RieWah"},"district":"4fd43cc56d11340000000005","dob":"7/20/1996","ell_status":"Y","email":"b_jeffrey@example.org","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.565Z","location":{"zip":"11356"},"name":{"first":"Jeffrey","middle":"J","last":"Beatty"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"296674914","state_id":"698407371","student_number":"296674914","id":"530e5962049e75a9262d00c3"},"uri":"/v1.1/students/530e5962049e75a9262d00c3"},{"data":{"created":"2014-02-26T21:15:14.214Z","credentials":{"district_username":"alicef32","district_password":"aey6eePh1"},"district":"4fd43cc56d11340000000005","dob":"6/15/2007","ell_status":"N","email":"f_alice@example.org","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.569Z","location":{"zip":"11220"},"name":{"first":"Alice","middle":"J","last":"Fadel"},"race":"Black
288
- or African American","school":"530e595026403103360ff9fe","sis_id":"297056232","state_id":"182689432","student_number":"297056232","id":"530e5962049e75a9262d00c5"},"uri":"/v1.1/students/530e5962049e75a9262d00c5"},{"data":{"created":"2014-02-26T21:15:14.219Z","credentials":{"district_username":"pauls61","district_password":"zeecaiSh6"},"district":"4fd43cc56d11340000000005","dob":"3/9/1999","ell_status":"Y","email":"paul.s@example.net","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.574Z","location":{"zip":"11220"},"name":{"first":"Paul","middle":"A","last":"Swift"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"297231961","state_id":"337754047","student_number":"297231961","id":"530e5962049e75a9262d00c7"},"uri":"/v1.1/students/530e5962049e75a9262d00c7"},{"data":{"created":"2014-02-26T21:15:14.225Z","credentials":{"district_username":"gweno26","district_password":"naXoWee1Ah"},"district":"4fd43cc56d11340000000005","dob":"10/10/2002","ell_status":"N","email":"o_gwen@example.net","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.578Z","location":{"zip":"10466"},"name":{"first":"Gwen","middle":"B","last":"O''Reilly"},"race":"Black
289
- or African American","school":"530e595026403103360ff9fe","sis_id":"297493026","state_id":"862165599","student_number":"297493026","id":"530e5962049e75a9262d00ca"},"uri":"/v1.1/students/530e5962049e75a9262d00ca"},{"data":{"created":"2014-02-26T21:15:14.231Z","credentials":{"district_username":"ellens37","district_password":"queeZu8phee"},"district":"4fd43cc56d11340000000005","dob":"12/7/2002","ell_status":"Y","email":"ellen.s@example.com","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.580Z","location":{"zip":"11419"},"name":{"first":"Ellen","middle":"R","last":"Stokes"},"race":"Black
290
- or African American","school":"530e595026403103360ff9fe","sis_id":"297803837","state_id":"502306137","student_number":"297803837","id":"530e5962049e75a9262d00cc"},"uri":"/v1.1/students/530e5962049e75a9262d00cc"},{"data":{"created":"2014-02-26T21:15:14.246Z","credentials":{"district_username":"marshab26","district_password":"Ree5ahzafae"},"district":"4fd43cc56d11340000000005","dob":"3/23/2007","ell_status":"Y","email":"marsha.b@example.net","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.584Z","location":{"zip":"11372"},"name":{"first":"Marsha","middle":"H","last":"Barrows"},"race":"Black
291
- or African American","school":"530e595026403103360ff9fe","sis_id":"299369126","state_id":"614813911","student_number":"299369126","id":"530e5962049e75a9262d00d0"},"uri":"/v1.1/students/530e5962049e75a9262d00d0"},{"data":{"created":"2014-02-26T21:15:14.256Z","credentials":{"district_username":"mauricioh42","district_password":"KahjaleK9"},"district":"4fd43cc56d11340000000005","dob":"2/8/2001","ell_status":"Y","email":"mauricio_h@example.net","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.589Z","location":{"zip":"11693"},"name":{"first":"Mauricio","middle":"J","last":"Hartmann"},"race":"Two
292
- or More Races","school":"530e595026403103360ff9ff","sis_id":"299570542","state_id":"827790246","student_number":"299570542","id":"530e5962049e75a9262d00d4"},"uri":"/v1.1/students/530e5962049e75a9262d00d4"},{"data":{"created":"2014-02-26T21:15:14.264Z","credentials":{"district_username":"aaronm38","district_password":"dah6eeVeuj"},"district":"4fd43cc56d11340000000005","dob":"11/20/2006","ell_status":"Y","email":"m.aaron@example.net","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.593Z","location":{"zip":"11230"},"name":{"first":"Aaron","middle":"M","last":"McClure"},"race":"Black
293
- or African American","school":"530e595026403103360ff9fe","sis_id":"299786638","state_id":"865189290","student_number":"299786638","id":"530e5962049e75a9262d00d6"},"uri":"/v1.1/students/530e5962049e75a9262d00d6"},{"data":{"created":"2014-02-26T21:15:14.277Z","credentials":{"district_username":"johnnyk69","district_password":"jeNg6eici2"},"district":"4fd43cc56d11340000000005","dob":"9/9/2001","ell_status":"N","email":"k.johnny@example.com","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.596Z","location":{"zip":"10471"},"name":{"first":"Johnny","middle":"A","last":"Kutch"},"race":"Black
294
- or African American","school":"530e595026403103360ff9ff","sis_id":"302796269","state_id":"897472112","student_number":"302796269","id":"530e5962049e75a9262d00da"},"uri":"/v1.1/students/530e5962049e75a9262d00da"},{"data":{"created":"2014-02-26T21:15:14.286Z","credentials":{"district_username":"beatricea75","district_password":"eejohQu5eic"},"district":"4fd43cc56d11340000000005","dob":"2/6/1996","ell_status":"N","email":"beatrice_a@example.com","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.600Z","location":{"zip":"10019"},"name":{"first":"Beatrice","middle":"J","last":"Auer"},"race":"Two
295
- or More Races","school":"530e595026403103360ff9fd","sis_id":"303558275","state_id":"491912547","student_number":"303558275","id":"530e5962049e75a9262d00dd"},"uri":"/v1.1/students/530e5962049e75a9262d00dd"},{"data":{"created":"2014-02-26T21:15:14.306Z","credentials":{"district_username":"lisaa12","district_password":"aSh9iulo"},"district":"4fd43cc56d11340000000005","dob":"3/11/1999","ell_status":"Y","email":"lisa.a@example.net","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.605Z","location":{"zip":"11414"},"name":{"first":"Lisa","middle":"B","last":"Armstrong"},"race":"Black
296
- or African American","school":"530e595026403103360ff9ff","sis_id":"305873112","state_id":"246190237","student_number":"305873112","id":"530e5962049e75a9262d00df"},"uri":"/v1.1/students/530e5962049e75a9262d00df"},{"data":{"created":"2014-02-26T21:15:14.314Z","credentials":{"district_username":"teresag85","district_password":"ohFah0iqu8sh"},"district":"4fd43cc56d11340000000005","dob":"8/14/2001","ell_status":"N","email":"teresa.g@example.com","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.608Z","location":{"zip":"11230"},"name":{"first":"Teresa","middle":"G","last":"Grady"},"race":"Black
297
- or African American","school":"530e595026403103360ff9ff","sis_id":"306879085","state_id":"735997303","student_number":"306879085","id":"530e5962049e75a9262d00e0"},"uri":"/v1.1/students/530e5962049e75a9262d00e0"},{"data":{"created":"2014-02-26T21:15:14.323Z","credentials":{"district_username":"kelvinv05","district_password":"Hudaishahl8"},"district":"4fd43cc56d11340000000005","dob":"5/25/1999","ell_status":"Y","email":"v.kelvin@example.com","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.611Z","location":{"zip":"10009"},"name":{"first":"Kelvin","middle":"K","last":"Veum"},"race":"Two
298
- or More Races","school":"530e595026403103360ff9ff","sis_id":"308631905","state_id":"157364322","student_number":"308631905","id":"530e5962049e75a9262d00e1"},"uri":"/v1.1/students/530e5962049e75a9262d00e1"},{"data":{"created":"2014-02-26T21:15:14.329Z","credentials":{"district_username":"chriss65","district_password":"eiph3Oye"},"district":"4fd43cc56d11340000000005","dob":"10/29/2005","ell_status":"N","email":"chris.s@example.org","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.615Z","location":{"zip":"11231"},"name":{"first":"Chris","middle":"M","last":"Swaniawski"},"race":"Two
299
- or More Races","school":"530e595026403103360ff9fe","sis_id":"309455965","state_id":"867185739","student_number":"309455965","id":"530e5962049e75a9262d00e2"},"uri":"/v1.1/students/530e5962049e75a9262d00e2"},{"data":{"created":"2014-02-26T21:15:14.333Z","credentials":{"district_username":"michaelb74","district_password":"Gee2teishohG"},"district":"4fd43cc56d11340000000005","dob":"9/22/1997","ell_status":"Y","email":"b_michael@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.620Z","location":{"zip":"11101"},"name":{"first":"Michael","middle":"C","last":"Bergnaum"},"race":"Black
300
- or African American","school":"530e595026403103360ff9fd","sis_id":"310505774","state_id":"660964455","student_number":"310505774","id":"530e5962049e75a9262d00e3"},"uri":"/v1.1/students/530e5962049e75a9262d00e3"},{"data":{"created":"2014-02-26T21:15:14.338Z","credentials":{"district_username":"rodneyl30","district_password":"aiX0iayai"},"district":"4fd43cc56d11340000000005","dob":"6/12/2000","ell_status":"N","email":"rodney_l@example.org","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.624Z","location":{"zip":"10301"},"name":{"first":"Rodney","middle":"M","last":"Lubowitz"},"race":"Black
301
- or African American","school":"530e595026403103360ff9ff","sis_id":"311304930","state_id":"784174810","student_number":"311304930","id":"530e5962049e75a9262d00e4"},"uri":"/v1.1/students/530e5962049e75a9262d00e4"},{"data":{"created":"2014-02-26T21:15:14.342Z","credentials":{"district_username":"charlesk79","district_password":"Chishai6Oh"},"district":"4fd43cc56d11340000000005","dob":"10/2/1999","ell_status":"Y","email":"k.charles@example.net","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.626Z","location":{"zip":"10474"},"name":{"first":"Charles","middle":"G","last":"Kemmer"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"311588779","state_id":"192377489","student_number":"311588779","id":"530e5962049e75a9262d00e5"},"uri":"/v1.1/students/530e5962049e75a9262d00e5"},{"data":{"created":"2014-02-26T21:15:14.347Z","credentials":{"district_username":"lanceb76","district_password":"iem0saiPe"},"district":"4fd43cc56d11340000000005","dob":"12/5/1998","ell_status":"Y","email":"b_lance@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.630Z","location":{"zip":"11220"},"name":{"first":"Lance","middle":"C","last":"Bashirian"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"311727576","state_id":"695513569","student_number":"311727576","id":"530e5962049e75a9262d00e6"},"uri":"/v1.1/students/530e5962049e75a9262d00e6"},{"data":{"created":"2014-02-26T21:15:14.363Z","credentials":{"district_username":"briank96","district_password":"ea8UHeiPhohth"},"district":"4fd43cc56d11340000000005","dob":"5/2/1998","ell_status":"N","email":"k_brian@example.com","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.635Z","location":{"zip":"10456"},"name":{"first":"Brian","middle":"L","last":"Keebler"},"race":"American
302
- Indian","school":"530e595026403103360ff9fd","sis_id":"313831996","state_id":"330235768","student_number":"313831996","id":"530e5962049e75a9262d00e8"},"uri":"/v1.1/students/530e5962049e75a9262d00e8"},{"data":{"created":"2014-02-26T21:15:14.371Z","credentials":{"district_username":"sydneyc11","district_password":"aechou8Leeth"},"district":"4fd43cc56d11340000000005","dob":"9/16/2003","ell_status":"N","email":"sydney.c@example.org","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.639Z","location":{"zip":"10013"},"name":{"first":"Sydney","middle":"A","last":"Christiansen"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"315381211","state_id":"512608752","student_number":"315381211","id":"530e5962049e75a9262d00ea"},"uri":"/v1.1/students/530e5962049e75a9262d00ea"},{"data":{"created":"2014-02-26T21:15:14.376Z","credentials":{"district_username":"robertk76","district_password":"Eu3koj3ie"},"district":"4fd43cc56d11340000000005","dob":"7/25/1995","ell_status":"N","email":"k.robert@example.net","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.642Z","location":{"zip":"10474"},"name":{"first":"Robert","middle":"C","last":"Koch"},"race":"Black
303
- or African American","school":"530e595026403103360ff9fd","sis_id":"315535676","state_id":"284880628","student_number":"315535676","id":"530e5962049e75a9262d00ec"},"uri":"/v1.1/students/530e5962049e75a9262d00ec"},{"data":{"created":"2014-02-26T21:15:14.387Z","credentials":{"district_username":"ruthb55","district_password":"Ves3doom6oh"},"district":"4fd43cc56d11340000000005","dob":"12/22/2004","ell_status":"N","email":"b.ruth@example.com","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.645Z","location":{"zip":"11217"},"name":{"first":"Ruth","middle":"S","last":"Batz"},"race":"Two
304
- or More Races","school":"530e595026403103360ff9fe","sis_id":"316354855","state_id":"792742484","student_number":"316354855","id":"530e5962049e75a9262d00f0"},"uri":"/v1.1/students/530e5962049e75a9262d00f0"},{"data":{"created":"2014-02-26T21:15:14.400Z","credentials":{"district_username":"curtise09","district_password":"uth1OopaToo"},"district":"4fd43cc56d11340000000005","dob":"11/6/1997","ell_status":"N","email":"curtis.e@example.org","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.650Z","location":{"zip":"10025"},"name":{"first":"Curtis","middle":"I","last":"Eichmann"},"race":"Two
305
- or More Races","school":"530e595026403103360ff9fd","sis_id":"317575609","state_id":"146317100","student_number":"317575609","id":"530e5962049e75a9262d00f4"},"uri":"/v1.1/students/530e5962049e75a9262d00f4"},{"data":{"created":"2014-02-26T21:15:14.409Z","credentials":{"district_username":"bradk55","district_password":"Eidaephesh5b"},"district":"4fd43cc56d11340000000005","dob":"3/12/1995","ell_status":"N","email":"brad_k@example.org","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.654Z","location":{"zip":"11208"},"name":{"first":"Brad","middle":"B","last":"Kirlin"},"race":"Black
306
- or African American","school":"530e595026403103360ff9fd","sis_id":"319077455","state_id":"803421845","student_number":"319077455","id":"530e5962049e75a9262d00f7"},"uri":"/v1.1/students/530e5962049e75a9262d00f7"},{"data":{"created":"2014-02-26T21:15:14.420Z","credentials":{"district_username":"forrests06","district_password":"ohTh7afie"},"district":"4fd43cc56d11340000000005","dob":"3/31/2004","ell_status":"Y","email":"forrest_s@example.com","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.657Z","location":{"zip":"10027"},"name":{"first":"Forrest","middle":"J","last":"Smitham"},"race":"Two
307
- or More Races","school":"530e595026403103360ff9fe","sis_id":"319482406","state_id":"332943278","student_number":"319482406","id":"530e5962049e75a9262d00fb"},"uri":"/v1.1/students/530e5962049e75a9262d00fb"},{"data":{"created":"2014-02-26T21:15:14.426Z","credentials":{"district_username":"ednah54","district_password":"keen5ap9Doo7e"},"district":"4fd43cc56d11340000000005","dob":"1/14/2002","ell_status":"Y","email":"h_edna@example.org","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.669Z","location":{"zip":"11355"},"name":{"first":"Edna","middle":"G","last":"Herzog"},"race":"Black
308
- or African American","school":"530e595026403103360ff9fe","sis_id":"319991554","state_id":"616375397","student_number":"319991554","id":"530e5962049e75a9262d00fd"},"uri":"/v1.1/students/530e5962049e75a9262d00fd"},{"data":{"created":"2014-02-26T21:15:14.432Z","credentials":{"district_username":"lewisd86","district_password":"ih2Aez8oo"},"district":"4fd43cc56d11340000000005","dob":"2/14/1998","ell_status":"N","email":"d_lewis@example.org","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.674Z","location":{"zip":"11225"},"name":{"first":"Lewis","middle":"J","last":"DuBuque"},"race":"Black
309
- or African American","school":"530e595026403103360ff9fd","sis_id":"320040186","state_id":"213862011","student_number":"320040186","id":"530e5962049e75a9262d00ff"},"uri":"/v1.1/students/530e5962049e75a9262d00ff"},{"data":{"created":"2014-02-26T21:15:14.440Z","credentials":{"district_username":"josepht59","district_password":"aije9Go0"},"district":"4fd43cc56d11340000000005","dob":"5/17/1997","ell_status":"N","email":"t_joseph@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.678Z","location":{"zip":"11695"},"name":{"first":"Joseph","middle":"B","last":"Thiel"},"race":"Black
310
- or African American","school":"530e595026403103360ff9fd","sis_id":"320437259","state_id":"183500753","student_number":"320437259","id":"530e5962049e75a9262d0102"},"uri":"/v1.1/students/530e5962049e75a9262d0102"},{"data":{"created":"2014-02-26T21:15:14.447Z","credentials":{"district_username":"georges62","district_password":"ipah9muSah"},"district":"4fd43cc56d11340000000005","dob":"5/16/2002","ell_status":"N","email":"s.george@example.com","frl_status":"Paid","gender":"M","grade":"5","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.680Z","location":{"zip":"11219"},"name":{"first":"George","middle":"K","last":"Sipes"},"race":"Black
311
- or African American","school":"530e595026403103360ff9fe","sis_id":"320645862","state_id":"871144833","student_number":"320645862","id":"530e5962049e75a9262d0104"},"uri":"/v1.1/students/530e5962049e75a9262d0104"},{"data":{"created":"2014-02-26T21:15:14.454Z","credentials":{"district_username":"nancyb33","district_password":"quiVu5aen"},"district":"4fd43cc56d11340000000005","dob":"9/26/1996","ell_status":"N","email":"b_nancy@example.org","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.684Z","location":{"zip":"10021"},"name":{"first":"Nancy","middle":"P","last":"Borer"},"race":"Two
312
- or More Races","school":"530e595026403103360ff9fd","sis_id":"321540033","state_id":"170613526","student_number":"321540033","id":"530e5962049e75a9262d0106"},"uri":"/v1.1/students/530e5962049e75a9262d0106"},{"data":{"created":"2014-02-26T21:15:14.462Z","credentials":{"district_username":"lancem71","district_password":"iem0saiPe"},"district":"4fd43cc56d11340000000005","dob":"6/8/2003","ell_status":"N","email":"lance_m@example.net","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.689Z","location":{"zip":"11104"},"name":{"first":"Lance","middle":"C","last":"Murphy"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"322065571","state_id":"869478576","student_number":"322065571","id":"530e5962049e75a9262d0107"},"uri":"/v1.1/students/530e5962049e75a9262d0107"},{"data":{"created":"2014-02-26T21:15:14.469Z","credentials":{"district_username":"sandrau27","district_password":"Ath5iug2moh"},"district":"4fd43cc56d11340000000005","dob":"1/13/1999","ell_status":"N","email":"sandra_u@example.net","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.694Z","location":{"zip":"11436"},"name":{"first":"Sandra","middle":"K","last":"Upton"},"race":"Two
313
- or More Races","school":"530e595026403103360ff9ff","sis_id":"322519127","state_id":"223472126","student_number":"322519127","id":"530e5962049e75a9262d0108"},"uri":"/v1.1/students/530e5962049e75a9262d0108"},{"data":{"created":"2014-02-26T21:15:14.473Z","credentials":{"district_username":"abbies03","district_password":"noonugh4Oi8"},"district":"4fd43cc56d11340000000005","dob":"9/30/2003","ell_status":"N","email":"abbie_s@example.net","frl_status":"Paid","gender":"F","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.697Z","location":{"zip":"11372"},"name":{"first":"Abbie","middle":"R","last":"Schneider"},"race":"Black
314
- or African American","school":"530e595026403103360ff9fe","sis_id":"322901503","state_id":"749882990","student_number":"322901503","id":"530e5962049e75a9262d0109"},"uri":"/v1.1/students/530e5962049e75a9262d0109"},{"data":{"created":"2014-02-26T21:15:14.479Z","credentials":{"district_username":"pennys16","district_password":"xuo5neeHah"},"district":"4fd43cc56d11340000000005","dob":"3/29/2005","ell_status":"N","email":"penny.s@example.net","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.701Z","location":{"zip":"10040"},"name":{"first":"Penny","middle":"D","last":"Schiller"},"race":"American
315
- Indian","school":"530e595026403103360ff9fe","sis_id":"323437416","state_id":"707037262","student_number":"323437416","id":"530e5962049e75a9262d010a"},"uri":"/v1.1/students/530e5962049e75a9262d010a"},{"data":{"created":"2014-02-26T21:15:14.491Z","credentials":{"district_username":"aliciar88","district_password":"Su4eikue5ao"},"district":"4fd43cc56d11340000000005","dob":"5/13/2001","ell_status":"Y","email":"alicia.r@example.org","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.707Z","location":{"zip":"11239"},"name":{"first":"Alicia","middle":"J","last":"Rodriguez"},"race":"Two
316
- or More Races","school":"530e595026403103360ff9ff","sis_id":"325761988","state_id":"690704776","student_number":"325761988","id":"530e5962049e75a9262d010b"},"uri":"/v1.1/students/530e5962049e75a9262d010b"},{"data":{"created":"2014-02-26T21:15:14.496Z","credentials":{"district_username":"frankd69","district_password":"Uutooh7ka"},"district":"4fd43cc56d11340000000005","dob":"4/18/2000","ell_status":"N","email":"d.frank@example.org","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.711Z","location":{"zip":"11426"},"name":{"first":"Frank","middle":"S","last":"Donnelly"},"race":"Two
317
- or More Races","school":"530e595026403103360ff9ff","sis_id":"326692569","state_id":"843654622","student_number":"326692569","id":"530e5962049e75a9262d010c"},"uri":"/v1.1/students/530e5962049e75a9262d010c"},{"data":{"created":"2014-02-26T21:15:14.501Z","credentials":{"district_username":"jayk18","district_password":"Phupai6L"},"district":"4fd43cc56d11340000000005","dob":"5/17/2007","ell_status":"N","email":"k.jay@example.com","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.713Z","location":{"zip":"10452"},"name":{"first":"Jay","middle":"R","last":"Kutch"},"race":"Two
318
- or More Races","school":"530e595026403103360ff9fe","sis_id":"328187718","state_id":"136996415","student_number":"328187718","id":"530e5962049e75a9262d010d"},"uri":"/v1.1/students/530e5962049e75a9262d010d"},{"data":{"created":"2014-02-26T21:15:14.514Z","credentials":{"district_username":"jeromea21","district_password":"idai0Xupoo"},"district":"4fd43cc56d11340000000005","dob":"1/6/1996","ell_status":"N","email":"a.jerome@example.org","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.717Z","location":{"zip":"10039"},"name":{"first":"Jerome","middle":"C","last":"Ankunding"},"race":"Black
319
- or African American","school":"530e595026403103360ff9fd","sis_id":"329898621","state_id":"258035113","student_number":"329898621","id":"530e5962049e75a9262d010e"},"uri":"/v1.1/students/530e5962049e75a9262d010e"},{"data":{"created":"2014-02-26T21:15:14.526Z","credentials":{"district_username":"judithl34","district_password":"eiwu9Quupah"},"district":"4fd43cc56d11340000000005","dob":"3/27/1998","ell_status":"N","email":"judith_l@example.net","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.722Z","location":{"zip":"11236"},"name":{"first":"Judith","middle":"K","last":"Lindgren"},"race":"Two
320
- or More Races","school":"530e595026403103360ff9fd","sis_id":"330685534","state_id":"286677448","student_number":"330685534","id":"530e5962049e75a9262d0110"},"uri":"/v1.1/students/530e5962049e75a9262d0110"},{"data":{"created":"2014-02-26T21:15:14.532Z","credentials":{"district_username":"margareth87","district_password":"quuiThai9qu"},"district":"4fd43cc56d11340000000005","dob":"8/30/2006","ell_status":"Y","email":"margaret_h@example.com","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.726Z","location":{"zip":"10028"},"name":{"first":"Margaret","middle":"J","last":"Hintz"},"race":"Two
321
- or More Races","school":"530e595026403103360ff9fe","sis_id":"331088087","state_id":"553081456","student_number":"331088087","id":"530e5962049e75a9262d0112"},"uri":"/v1.1/students/530e5962049e75a9262d0112"},{"data":{"created":"2014-02-26T21:15:14.546Z","credentials":{"district_username":"evelyns17","district_password":"Ooph5eof"},"district":"4fd43cc56d11340000000005","dob":"6/24/2004","ell_status":"N","email":"evelyn_s@example.org","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.728Z","location":{"zip":"10010"},"name":{"first":"Evelyn","middle":"E","last":"Schmidt"},"race":"Two
322
- or More Races","school":"530e595026403103360ff9fe","sis_id":"331587917","state_id":"894455044","student_number":"331587917","id":"530e5962049e75a9262d0117"},"uri":"/v1.1/students/530e5962049e75a9262d0117"},{"data":{"created":"2014-02-26T21:15:14.575Z","credentials":{"district_username":"stevenm81","district_password":"EigheHe9aex"},"district":"4fd43cc56d11340000000005","dob":"12/27/2006","ell_status":"N","email":"steven.m@example.net","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.732Z","location":{"zip":"10031"},"name":{"first":"Steven","middle":"N","last":"Moore"},"race":"Black
323
- or African American","school":"530e595026403103360ff9fe","sis_id":"334494781","state_id":"926023971","student_number":"334494781","id":"530e5962049e75a9262d011d"},"uri":"/v1.1/students/530e5962049e75a9262d011d"},{"data":{"created":"2014-02-26T21:15:14.594Z","credentials":{"district_username":"brianb46","district_password":"oos3Ounohx"},"district":"4fd43cc56d11340000000005","dob":"6/29/1995","ell_status":"N","email":"brian.b@example.org","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.737Z","location":{"zip":"11210"},"name":{"first":"Brian","middle":"J","last":"Berge"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"336453746","state_id":"295774156","student_number":"336453746","id":"530e5962049e75a9262d0122"},"uri":"/v1.1/students/530e5962049e75a9262d0122"},{"data":{"created":"2014-02-26T21:15:14.601Z","credentials":{"district_username":"marshas20","district_password":"Ree5ahzafae"},"district":"4fd43cc56d11340000000005","dob":"10/15/2001","ell_status":"N","email":"marsha.s@example.net","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.741Z","location":{"zip":"11207"},"name":{"first":"Marsha","middle":"H","last":"Schowalter"},"race":"Black
324
- or African American","school":"530e595026403103360ff9ff","sis_id":"338973720","state_id":"303967812","student_number":"338973720","id":"530e5962049e75a9262d0125"},"uri":"/v1.1/students/530e5962049e75a9262d0125"},{"data":{"created":"2014-02-26T21:15:14.606Z","credentials":{"district_username":"kenl54","district_password":"oPhoh0Bee"},"district":"4fd43cc56d11340000000005","dob":"3/1/1998","ell_status":"N","email":"ken_l@example.org","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.744Z","location":{"zip":"11357"},"name":{"first":"Ken","middle":"L","last":"Lemke"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"339262054","state_id":"258045480","student_number":"339262054","id":"530e5962049e75a9262d0127"},"uri":"/v1.1/students/530e5962049e75a9262d0127"},{"data":{"created":"2014-02-26T21:15:14.612Z","credentials":{"district_username":"reginaldm80","district_password":"eophooXao2tah"},"district":"4fd43cc56d11340000000005","dob":"5/24/2001","ell_status":"Y","email":"reginald_m@example.com","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.748Z","location":{"zip":"10459"},"name":{"first":"Reginald","middle":"C","last":"Moen"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"339327480","state_id":"444675982","student_number":"339327480","id":"530e5962049e75a9262d0129"},"uri":"/v1.1/students/530e5962049e75a9262d0129"},{"data":{"created":"2014-02-26T21:15:14.625Z","credentials":{"district_username":"peterw85","district_password":"PhahPh6kai"},"district":"4fd43cc56d11340000000005","dob":"4/10/1997","ell_status":"Y","email":"peter_w@example.com","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.753Z","location":{"zip":"11361"},"name":{"first":"Peter","middle":"K","last":"Willms"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"340727385","state_id":"231700647","student_number":"340727385","id":"530e5962049e75a9262d012b"},"uri":"/v1.1/students/530e5962049e75a9262d012b"},{"data":{"created":"2014-02-26T21:15:14.632Z","credentials":{"district_username":"charlotted42","district_password":"Im5aivaeGh"},"district":"4fd43cc56d11340000000005","dob":"10/26/1995","ell_status":"Y","email":"charlotte.d@example.org","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.757Z","location":{"zip":"11226"},"name":{"first":"Charlotte","middle":"H","last":"Dickinson"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"341235342","state_id":"428714268","student_number":"341235342","id":"530e5962049e75a9262d012c"},"uri":"/v1.1/students/530e5962049e75a9262d012c"},{"data":{"created":"2014-02-26T21:15:14.636Z","credentials":{"district_username":"georgew54","district_password":"jeRoh5eH6ee"},"district":"4fd43cc56d11340000000005","dob":"7/17/2007","ell_status":"Y","email":"george.w@example.net","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.759Z","location":{"zip":"11236"},"name":{"first":"George","middle":"G","last":"Ward"},"race":"Black
325
- or African American","school":"530e595026403103360ff9fe","sis_id":"341295754","state_id":"363723838","student_number":"341295754","id":"530e5962049e75a9262d012d"},"uri":"/v1.1/students/530e5962049e75a9262d012d"},{"data":{"created":"2014-02-26T21:15:14.643Z","credentials":{"district_username":"keitho05","district_password":"boghohK0aiK"},"district":"4fd43cc56d11340000000005","dob":"1/5/1997","ell_status":"Y","email":"keith.o@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.763Z","location":{"zip":"11417"},"name":{"first":"Keith","middle":"D","last":"O''Connell"},"race":"Two
326
- or More Races","school":"530e595026403103360ff9fd","sis_id":"342103605","state_id":"412298349","student_number":"342103605","id":"530e5962049e75a9262d012e"},"uri":"/v1.1/students/530e5962049e75a9262d012e"},{"data":{"created":"2014-02-26T21:15:14.656Z","credentials":{"district_username":"carolw67","district_password":"Xuah0ohg2xa"},"district":"4fd43cc56d11340000000005","dob":"11/2/2002","ell_status":"Y","email":"w_carol@example.com","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.768Z","location":{"zip":"11235"},"name":{"first":"Carol","middle":"T","last":"Walker"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"344099767","state_id":"428394330","student_number":"344099767","id":"530e5962049e75a9262d012f"},"uri":"/v1.1/students/530e5962049e75a9262d012f"},{"data":{"created":"2014-02-26T21:15:14.664Z","credentials":{"district_username":"shirleyd64","district_password":"reoh0Zoh4"},"district":"4fd43cc56d11340000000005","dob":"3/30/2003","ell_status":"N","email":"d.shirley@example.com","frl_status":"Paid","gender":"F","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.772Z","location":{"zip":"11228"},"name":{"first":"Shirley","middle":"W","last":"Dibbert"},"race":"Black
327
- or African American","school":"530e595026403103360ff9fe","sis_id":"346236464","state_id":"759488432","student_number":"346236464","id":"530e5962049e75a9262d0130"},"uri":"/v1.1/students/530e5962049e75a9262d0130"},{"data":{"created":"2014-02-26T21:15:14.669Z","credentials":{"district_username":"oliviac28","district_password":"augooGi9"},"district":"4fd43cc56d11340000000005","dob":"5/23/2004","ell_status":"Y","email":"c_olivia@example.org","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.774Z","location":{"zip":"10463"},"name":{"first":"Olivia","middle":"J","last":"Cronin"},"race":"Two
328
- or More Races","school":"530e595026403103360ff9fe","sis_id":"347704828","state_id":"603327934","student_number":"347704828","id":"530e5962049e75a9262d0131"},"uri":"/v1.1/students/530e5962049e75a9262d0131"},{"data":{"created":"2014-02-26T21:15:14.675Z","credentials":{"district_username":"dinam87","district_password":"Ood7aC1ohc5"},"district":"4fd43cc56d11340000000005","dob":"6/24/2001","ell_status":"N","email":"m.dina@example.com","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.778Z","location":{"zip":"11694"},"name":{"first":"Dina","middle":"E","last":"MacGyver"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"349009487","state_id":"741992097","student_number":"349009487","id":"530e5962049e75a9262d0132"},"uri":"/v1.1/students/530e5962049e75a9262d0132"},{"data":{"created":"2014-02-26T21:15:14.683Z","credentials":{"district_username":"patricias09","district_password":"xo0deeyaTh"},"district":"4fd43cc56d11340000000005","dob":"2/6/1997","ell_status":"Y","email":"s.patricia@example.com","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.783Z","location":{"zip":"10468"},"name":{"first":"Patricia","middle":"A","last":"Stoltenberg"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"349441809","state_id":"660121561","student_number":"349441809","id":"530e5962049e75a9262d0133"},"uri":"/v1.1/students/530e5962049e75a9262d0133"},{"data":{"created":"2014-02-26T21:15:14.688Z","credentials":{"district_username":"jasminec74","district_password":"Ieba5Lie"},"district":"4fd43cc56d11340000000005","dob":"12/19/1996","ell_status":"N","email":"c_jasmine@example.org","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.787Z","location":{"zip":"11103"},"name":{"first":"Jasmine","middle":"D","last":"Christiansen"},"race":"Black
329
- or African American","school":"530e595026403103360ff9fd","sis_id":"349793374","state_id":"522867042","student_number":"349793374","id":"530e5962049e75a9262d0134"},"uri":"/v1.1/students/530e5962049e75a9262d0134"},{"data":{"created":"2014-02-26T21:15:14.694Z","credentials":{"district_username":"flossiek70","district_password":"ikaishuTha0se8"},"district":"4fd43cc56d11340000000005","dob":"8/26/2007","ell_status":"N","email":"k.flossie@example.com","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.790Z","location":{"zip":"11429"},"name":{"first":"Flossie","middle":"V","last":"Kuvalis"},"race":"American
330
- Indian","school":"530e595026403103360ff9fe","sis_id":"350145570","state_id":"373471630","student_number":"350145570","id":"530e5962049e75a9262d0136"},"uri":"/v1.1/students/530e5962049e75a9262d0136"},{"data":{"created":"2014-02-26T21:15:14.701Z","credentials":{"district_username":"adriant15","district_password":"eH4phushufu"},"district":"4fd43cc56d11340000000005","dob":"5/8/2005","ell_status":"Y","email":"adrian.t@example.com","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.793Z","location":{"zip":"10005"},"name":{"first":"Adrian","middle":"M","last":"Thiel"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"350301615","state_id":"829941455","student_number":"350301615","id":"530e5962049e75a9262d0138"},"uri":"/v1.1/students/530e5962049e75a9262d0138"},{"data":{"created":"2014-02-26T21:15:14.709Z","credentials":{"district_username":"micheled65","district_password":"fohv7ooRu"},"district":"4fd43cc56d11340000000005","dob":"12/2/2001","ell_status":"Y","email":"michele.d@example.com","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.798Z","location":{"zip":"10457"},"name":{"first":"Michele","middle":"K","last":"Dicki"},"race":"Black
331
- or African American","school":"530e595026403103360ff9ff","sis_id":"351265765","state_id":"447368233","student_number":"351265765","id":"530e5962049e75a9262d013b"},"uri":"/v1.1/students/530e5962049e75a9262d013b"},{"data":{"created":"2014-02-26T21:15:14.716Z","credentials":{"district_username":"jeffreyh61","district_password":"ai5oow0Ahng"},"district":"4fd43cc56d11340000000005","dob":"10/23/1999","ell_status":"Y","email":"h.jeffrey@example.net","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.802Z","location":{"zip":"10026"},"name":{"first":"Jeffrey","middle":"A","last":"Heidenreich"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"351724061","state_id":"681534881","student_number":"351724061","id":"530e5962049e75a9262d013d"},"uri":"/v1.1/students/530e5962049e75a9262d013d"},{"data":{"created":"2014-02-26T21:15:14.722Z","credentials":{"district_username":"sharonk63","district_password":"ahnae1Zis"},"district":"4fd43cc56d11340000000005","dob":"11/5/1996","ell_status":"N","email":"k_sharon@example.net","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.805Z","location":{"zip":"10029"},"name":{"first":"Sharon","middle":"J","last":"Kulas"},"race":"Two
332
- or More Races","school":"530e595026403103360ff9fd","sis_id":"352004863","state_id":"790872505","student_number":"352004863","id":"530e5962049e75a9262d013f"},"uri":"/v1.1/students/530e5962049e75a9262d013f"},{"data":{"created":"2014-02-26T21:15:14.730Z","credentials":{"district_username":"thomasd74","district_password":"IevooNgi4kei"},"district":"4fd43cc56d11340000000005","dob":"3/3/2006","ell_status":"N","email":"thomas_d@example.com","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.809Z","location":{"zip":"10018"},"name":{"first":"Thomas","middle":"A","last":"Dietrich"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"354421574","state_id":"664188640","student_number":"354421574","id":"530e5962049e75a9262d0142"},"uri":"/v1.1/students/530e5962049e75a9262d0142"},{"data":{"created":"2014-02-26T21:15:14.737Z","credentials":{"district_username":"angelt89","district_password":"vohGhai6Oh"},"district":"4fd43cc56d11340000000005","dob":"6/21/2000","ell_status":"Y","email":"angel.t@example.net","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.814Z","location":{"zip":"11211"},"name":{"first":"Angel","middle":"C","last":"Tromp"},"race":"Black
333
- or African American","school":"530e595026403103360ff9ff","sis_id":"355128789","state_id":"891784072","student_number":"355128789","id":"530e5962049e75a9262d0144"},"uri":"/v1.1/students/530e5962049e75a9262d0144"},{"data":{"created":"2014-02-26T21:15:14.747Z","credentials":{"district_username":"vickieh68","district_password":"Si6soiShe"},"district":"4fd43cc56d11340000000005","dob":"3/27/1999","ell_status":"N","email":"vickie.h@example.net","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.818Z","location":{"zip":"10010"},"name":{"first":"Vickie","middle":"J","last":"Heathcote"},"race":"Black
334
- or African American","school":"530e595026403103360ff9ff","sis_id":"355959568","state_id":"908900557","student_number":"355959568","id":"530e5962049e75a9262d0148"},"uri":"/v1.1/students/530e5962049e75a9262d0148"},{"data":{"created":"2014-02-26T21:15:14.761Z","credentials":{"district_username":"markh38","district_password":"uY2Echaehi"},"district":"4fd43cc56d11340000000005","dob":"5/31/2003","ell_status":"Y","email":"h_mark@example.com","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.820Z","location":{"zip":"11697"},"name":{"first":"Mark","middle":"C","last":"Hayes"},"race":"American
335
- Indian","school":"530e595026403103360ff9fe","sis_id":"356923538","state_id":"144429226","student_number":"356923538","id":"530e5962049e75a9262d014d"},"uri":"/v1.1/students/530e5962049e75a9262d014d"},{"data":{"created":"2014-02-26T21:15:14.774Z","credentials":{"district_username":"jeanm87","district_password":"Waigaegh6moo"},"district":"4fd43cc56d11340000000005","dob":"11/7/2006","ell_status":"N","email":"m.jean@example.net","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.824Z","location":{"zip":"11201"},"name":{"first":"Jean","middle":"E","last":"Mayert"},"race":"Black
336
- or African American","school":"530e595026403103360ff9fe","sis_id":"358893987","state_id":"927752317","student_number":"358893987","id":"530e5962049e75a9262d014f"},"uri":"/v1.1/students/530e5962049e75a9262d014f"},{"data":{"created":"2014-02-26T21:15:14.780Z","credentials":{"district_username":"michellek08","district_password":"OoK5us1Baov"},"district":"4fd43cc56d11340000000005","dob":"11/1/2007","ell_status":"N","email":"michelle.k@example.net","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.829Z","location":{"zip":"11213"},"name":{"first":"Michelle","middle":"L","last":"Kozey"},"race":"Black
337
- or African American","school":"530e595026403103360ff9fe","sis_id":"358946108","state_id":"681684250","student_number":"358946108","id":"530e5962049e75a9262d0151"},"uri":"/v1.1/students/530e5962049e75a9262d0151"},{"data":{"created":"2014-02-26T21:15:14.786Z","credentials":{"district_username":"edwardr57","district_password":"Oef0ie4saet"},"district":"4fd43cc56d11340000000005","dob":"3/15/2003","ell_status":"N","email":"r_edward@example.com","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.833Z","location":{"zip":"11373"},"name":{"first":"Edward","middle":"L","last":"Rau"},"race":"Black
338
- or African American","school":"530e595026403103360ff9fe","sis_id":"359371257","state_id":"992269281","student_number":"359371257","id":"530e5962049e75a9262d0153"},"uri":"/v1.1/students/530e5962049e75a9262d0153"},{"data":{"created":"2014-02-26T21:15:14.794Z","credentials":{"district_username":"karens47","district_password":"Phohgheph2V"},"district":"4fd43cc56d11340000000005","dob":"5/18/2000","ell_status":"N","email":"karen_s@example.com","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.836Z","location":{"zip":"10474"},"name":{"first":"Karen","middle":"R","last":"Schaefer"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"359530547","state_id":"575095995","student_number":"359530547","id":"530e5962049e75a9262d0155"},"uri":"/v1.1/students/530e5962049e75a9262d0155"},{"data":{"created":"2014-02-26T21:15:14.800Z","credentials":{"district_username":"maryk07","district_password":"Woh0Gaic"},"district":"4fd43cc56d11340000000005","dob":"4/24/1997","ell_status":"N","email":"k_mary@example.org","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.840Z","location":{"zip":"10011"},"name":{"first":"Mary","middle":"J","last":"Kreiger"},"race":"Two
339
- or More Races","school":"530e595026403103360ff9fd","sis_id":"360005607","state_id":"722234185","student_number":"360005607","id":"530e5962049e75a9262d0156"},"uri":"/v1.1/students/530e5962049e75a9262d0156"},{"data":{"created":"2014-02-26T21:15:14.806Z","credentials":{"district_username":"douglasp11","district_password":"Oiph4Chias"},"district":"4fd43cc56d11340000000005","dob":"10/4/2000","ell_status":"N","email":"douglas_p@example.net","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.845Z","location":{"zip":"10007"},"name":{"first":"Douglas","middle":"H","last":"Parker"},"race":"Two
340
- or More Races","school":"530e595026403103360ff9ff","sis_id":"360224411","state_id":"994164651","student_number":"360224411","id":"530e5962049e75a9262d0157"},"uri":"/v1.1/students/530e5962049e75a9262d0157"},{"data":{"created":"2014-02-26T21:15:14.811Z","credentials":{"district_username":"jeanp96","district_password":"Eties4aechei"},"district":"4fd43cc56d11340000000005","dob":"6/27/1997","ell_status":"N","email":"p_jean@example.com","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.848Z","location":{"zip":"11222"},"name":{"first":"Jean","middle":"D","last":"Powlowski"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"360248296","state_id":"223621993","student_number":"360248296","id":"530e5962049e75a9262d0158"},"uri":"/v1.1/students/530e5962049e75a9262d0158"},{"data":{"created":"2014-02-26T21:15:14.816Z","credentials":{"district_username":"michaelb06","district_password":"aNg5Uin5xae"},"district":"4fd43cc56d11340000000005","dob":"7/31/1995","ell_status":"N","email":"michael_b@example.com","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.851Z","location":{"zip":"11427"},"name":{"first":"Michael","middle":"B","last":"Bahringer"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"360677706","state_id":"487293740","student_number":"360677706","id":"530e5962049e75a9262d0159"},"uri":"/v1.1/students/530e5962049e75a9262d0159"},{"data":{"created":"2014-02-26T21:15:14.830Z","credentials":{"district_username":"louisb15","district_password":"opaiB0see7j"},"district":"4fd43cc56d11340000000005","dob":"8/11/2004","ell_status":"N","email":"b.louis@example.com","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.864Z","location":{"zip":"10280"},"name":{"first":"Louis","middle":"P","last":"Bashirian"},"race":"Two
341
- or More Races","school":"530e595026403103360ff9fe","sis_id":"362918015","state_id":"367947981","student_number":"362918015","id":"530e5962049e75a9262d015a"},"uri":"/v1.1/students/530e5962049e75a9262d015a"},{"data":{"created":"2014-02-26T21:15:14.842Z","credentials":{"district_username":"matthewh05","district_password":"iu3ooR0ahcah"},"district":"4fd43cc56d11340000000005","dob":"12/25/1995","ell_status":"Y","email":"h.matthew@example.com","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.869Z","location":{"zip":"10469"},"name":{"first":"Matthew","middle":"L","last":"Hickle"},"race":"Black
342
- or African American","school":"530e595026403103360ff9fd","sis_id":"363415605","state_id":"936208068","student_number":"363415605","id":"530e5962049e75a9262d015b"},"uri":"/v1.1/students/530e5962049e75a9262d015b"},{"data":{"created":"2014-02-26T21:15:14.847Z","credentials":{"district_username":"tyronew82","district_password":"Hai5wae5ota"},"district":"4fd43cc56d11340000000005","dob":"5/8/2002","ell_status":"Y","email":"w.tyrone@example.org","frl_status":"Paid","gender":"M","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.873Z","location":{"zip":"10474"},"name":{"first":"Tyrone","middle":"E","last":"Witting"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"363884082","state_id":"854498140","student_number":"363884082","id":"530e5962049e75a9262d015c"},"uri":"/v1.1/students/530e5962049e75a9262d015c"},{"data":{"created":"2014-02-26T21:15:14.855Z","credentials":{"district_username":"johnw46","district_password":"Mae4eigoh"},"district":"4fd43cc56d11340000000005","dob":"1/12/1995","ell_status":"N","email":"john_w@example.org","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.875Z","location":{"zip":"11226"},"name":{"first":"John","middle":"L","last":"Weissnat"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"364984846","state_id":"666568731","student_number":"364984846","id":"530e5962049e75a9262d015d"},"uri":"/v1.1/students/530e5962049e75a9262d015d"},{"data":{"created":"2014-02-26T21:15:14.861Z","credentials":{"district_username":"caseyh06","district_password":"iphoV6bu"},"district":"4fd43cc56d11340000000005","dob":"3/19/2000","ell_status":"Y","email":"h.casey@example.org","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.879Z","location":{"zip":"10005"},"name":{"first":"Casey","middle":"F","last":"Harris"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"365135906","state_id":"956627136","student_number":"365135906","id":"530e5962049e75a9262d015e"},"uri":"/v1.1/students/530e5962049e75a9262d015e"},{"data":{"created":"2014-02-26T21:15:14.865Z","credentials":{"district_username":"jamesr87","district_password":"AeH4tieSah"},"district":"4fd43cc56d11340000000005","dob":"8/1/1998","ell_status":"N","email":"r_james@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.884Z","location":{"zip":"11360"},"name":{"first":"James","middle":"I","last":"Roob"},"race":"Black
343
- or African American","school":"530e595026403103360ff9fd","sis_id":"365272887","state_id":"700708728","student_number":"365272887","id":"530e5962049e75a9262d015f"},"uri":"/v1.1/students/530e5962049e75a9262d015f"},{"data":{"created":"2014-02-26T21:15:14.870Z","credentials":{"district_username":"virgiem43","district_password":"Lein8oop"},"district":"4fd43cc56d11340000000005","dob":"1/20/2005","ell_status":"N","email":"m_virgie@example.net","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.888Z","location":{"zip":"10465"},"name":{"first":"Virgie","middle":"J","last":"Mueller"},"race":"Black
344
- or African American","school":"530e595026403103360ff9fe","sis_id":"365316343","state_id":"857518638","student_number":"365316343","id":"530e5962049e75a9262d0160"},"uri":"/v1.1/students/530e5962049e75a9262d0160"}],"links":[{"rel":"self","uri":"/v1.1/students?starting_after=530e5962049e75a9262d00a9"},{"rel":"prev","uri":"/v1.1/students?ending_before=530e5962049e75a9262d00ac"},{"rel":"next","uri":"/v1.1/students?starting_after=530e5962049e75a9262d0160"}]}'
345
- http_version:
346
- recorded_at: Sat, 13 Sep 2014 00:03:50 GMT
347
- - request:
348
- method: get
349
- uri: https://api.clever.com//v1.1/students?starting_after=530e5962049e75a9262d0160
350
- body:
351
- encoding: US-ASCII
352
- string: ''
353
- headers:
354
- Accept:
355
- - ! '*/*; q=0.5, application/xml'
356
- Accept-Encoding:
357
- - gzip, deflate
358
- Authorization:
359
- - Bearer DEMO_TOKEN
360
- User-Agent:
361
- - Ruby
362
- response:
363
- status:
364
- code: 200
365
- message: OK
366
- headers:
367
- Access-Control-Allow-Headers:
368
- - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
369
- Access-Control-Allow-Methods:
370
- - GET,PATCH,POST,DELETE
371
- Access-Control-Allow-Origin:
372
- - ! '*'
373
- Content-Type:
374
- - application/json; charset=utf-8
375
- Date:
376
- - Sat, 13 Sep 2014 00:03:50 GMT
377
- Etag:
378
- - ! '"-1723479948"'
379
- Server:
380
- - nginx/1.4.7
381
- X-Powered-By:
382
- - Express
383
- Content-Length:
384
- - '66352'
385
- Connection:
386
- - keep-alive
387
- body:
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
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
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
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
393
- or African American","school":"530e595026403103360ff9fe","sis_id":"377755817","state_id":"390115974","student_number":"377755817","id":"530e5962049e75a9262d017e"},"uri":"/v1.1/students/530e5962049e75a9262d017e"},{"data":{"created":"2014-02-26T21:15:15.002Z","credentials":{"district_username":"dillonj93","district_password":"Feadae9ee"},"district":"4fd43cc56d11340000000005","dob":"4/12/1997","ell_status":"Y","email":"j_dillon@example.com","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.930Z","location":{"zip":"10451"},"name":{"first":"Dillon","middle":"C","last":"Johnson"},"race":"Black
394
- or African American","school":"530e595026403103360ff9fd","sis_id":"378914493","state_id":"289170062","student_number":"378914493","id":"530e5963049e75a9262d017f"},"uri":"/v1.1/students/530e5963049e75a9262d017f"},{"data":{"created":"2014-02-26T21:15:15.009Z","credentials":{"district_username":"elizabetho28","district_password":"Saem9ob2sh"},"district":"4fd43cc56d11340000000005","dob":"8/26/1997","ell_status":"N","email":"o.elizabeth@example.org","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.934Z","location":{"zip":"10456"},"name":{"first":"Elizabeth","middle":"P","last":"O''Conner"},"race":"Two
395
- or More Races","school":"530e595026403103360ff9fd","sis_id":"379788928","state_id":"548108960","student_number":"379788928","id":"530e5963049e75a9262d0180"},"uri":"/v1.1/students/530e5963049e75a9262d0180"},{"data":{"created":"2014-02-26T21:15:15.017Z","credentials":{"district_username":"richardc58","district_password":"ieka1Aimae"},"district":"4fd43cc56d11340000000005","dob":"2/20/1998","ell_status":"N","email":"richard.c@example.com","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.937Z","location":{"zip":"11230"},"name":{"first":"Richard","middle":"R","last":"Collins"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"380069158","state_id":"279794885","student_number":"380069158","id":"530e5963049e75a9262d0181"},"uri":"/v1.1/students/530e5963049e75a9262d0181"},{"data":{"created":"2014-02-26T21:15:15.026Z","credentials":{"district_username":"etheld10","district_password":"oWieHeotee6"},"district":"4fd43cc56d11340000000005","dob":"9/23/1996","ell_status":"Y","email":"ethel_d@example.org","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.940Z","location":{"zip":"10457"},"name":{"first":"Ethel","middle":"R","last":"D''Amore"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"381129810","state_id":"572752717","student_number":"381129810","id":"530e5963049e75a9262d0183"},"uri":"/v1.1/students/530e5963049e75a9262d0183"},{"data":{"created":"2014-02-26T21:15:15.032Z","credentials":{"district_username":"angelos52","district_password":"Ohch1ohz"},"district":"4fd43cc56d11340000000005","dob":"11/5/2006","ell_status":"Y","email":"s.angelo@example.net","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.945Z","location":{"zip":"11235"},"name":{"first":"Angelo","middle":"S","last":"Sawayn"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"381370052","state_id":"762316342","student_number":"381370052","id":"530e5963049e75a9262d0185"},"uri":"/v1.1/students/530e5963049e75a9262d0185"},{"data":{"created":"2014-02-26T21:15:15.040Z","credentials":{"district_username":"kathleenk75","district_password":"eilahCa8sai"},"district":"4fd43cc56d11340000000005","dob":"6/11/2004","ell_status":"N","email":"k.kathleen@example.com","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.949Z","location":{"zip":"10314"},"name":{"first":"Kathleen","middle":"B","last":"Kassulke"},"race":"Black
396
- or African American","school":"530e595026403103360ff9fe","sis_id":"381952575","state_id":"412511534","student_number":"381952575","id":"530e5963049e75a9262d0188"},"uri":"/v1.1/students/530e5963049e75a9262d0188"},{"data":{"created":"2014-02-26T21:15:15.047Z","credentials":{"district_username":"josew95","district_password":"deeBoocei4ai"},"district":"4fd43cc56d11340000000005","dob":"5/3/1995","ell_status":"Y","email":"jose_w@example.org","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.952Z","location":{"zip":"10024"},"name":{"first":"Jose","middle":"A","last":"Waters"},"race":"Two
397
- or More Races","school":"530e595026403103360ff9fd","sis_id":"382080695","state_id":"698562071","student_number":"382080695","id":"530e5963049e75a9262d018b"},"uri":"/v1.1/students/530e5963049e75a9262d018b"},{"data":{"created":"2014-02-26T21:15:15.065Z","credentials":{"district_username":"royb63","district_password":"ahm4Ia3iCh"},"district":"4fd43cc56d11340000000005","dob":"2/2/2004","ell_status":"Y","email":"b.roy@example.org","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.957Z","location":{"zip":"10463"},"name":{"first":"Roy","middle":"K","last":"Beer"},"race":"Black
398
- or African American","school":"530e595026403103360ff9fe","sis_id":"385154363","state_id":"437125372","student_number":"385154363","id":"530e5963049e75a9262d0190"},"uri":"/v1.1/students/530e5963049e75a9262d0190"},{"data":{"created":"2014-02-26T21:15:15.071Z","credentials":{"district_username":"adamm46","district_password":"caiteiL1ah"},"district":"4fd43cc56d11340000000005","dob":"5/1/2003","ell_status":"N","email":"m_adam@example.net","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.961Z","location":{"zip":"10303"},"name":{"first":"Adam","middle":"L","last":"Mitchell"},"race":"Black
399
- or African American","school":"530e595026403103360ff9fe","sis_id":"385885746","state_id":"608443048","student_number":"385885746","id":"530e5963049e75a9262d0193"},"uri":"/v1.1/students/530e5963049e75a9262d0193"},{"data":{"created":"2014-02-26T21:15:15.076Z","credentials":{"district_username":"davidh60","district_password":"ae3eiwii1iB"},"district":"4fd43cc56d11340000000005","dob":"10/20/2003","ell_status":"Y","email":"h.david@example.com","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:41.963Z","location":{"zip":"10025"},"name":{"first":"David","middle":"E","last":"Harber"},"race":"Black
400
- or African American","school":"530e595026403103360ff9fe","sis_id":"386204860","state_id":"872062640","student_number":"386204860","id":"530e5963049e75a9262d0195"},"uri":"/v1.1/students/530e5963049e75a9262d0195"},{"data":{"created":"2014-02-26T21:15:15.081Z","credentials":{"district_username":"sandrah42","district_password":"niwoh3neew5N"},"district":"4fd43cc56d11340000000005","dob":"4/19/1995","ell_status":"N","email":"h.sandra@example.net","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.967Z","location":{"zip":"11215"},"name":{"first":"Sandra","middle":"J","last":"Hyatt"},"race":"Two
401
- or More Races","school":"530e595026403103360ff9fd","sis_id":"386440642","state_id":"501045546","student_number":"386440642","id":"530e5963049e75a9262d0197"},"uri":"/v1.1/students/530e5963049e75a9262d0197"},{"data":{"created":"2014-02-26T21:15:15.087Z","credentials":{"district_username":"kimberlyh80","district_password":"dohGh0their"},"district":"4fd43cc56d11340000000005","dob":"4/24/1999","ell_status":"Y","email":"kimberly_h@example.net","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.973Z","location":{"zip":"10461"},"name":{"first":"Kimberly","middle":"W","last":"Hodkiewicz"},"race":"Black
402
- or African American","school":"530e595026403103360ff9ff","sis_id":"386913480","state_id":"453287134","student_number":"386913480","id":"530e5963049e75a9262d0199"},"uri":"/v1.1/students/530e5963049e75a9262d0199"},{"data":{"created":"2014-02-26T21:15:15.101Z","credentials":{"district_username":"thomast60","district_password":"rieSoo9x"},"district":"4fd43cc56d11340000000005","dob":"6/14/1996","ell_status":"N","email":"thomas.t@example.net","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.977Z","location":{"zip":"10014"},"name":{"first":"Thomas","middle":"S","last":"Torp"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"388600960","state_id":"509266787","student_number":"388600960","id":"530e5963049e75a9262d019d"},"uri":"/v1.1/students/530e5963049e75a9262d019d"},{"data":{"created":"2014-02-26T21:15:15.106Z","credentials":{"district_username":"emmag97","district_password":"ziezu4ieGh"},"district":"4fd43cc56d11340000000005","dob":"6/16/1998","ell_status":"N","email":"emma_g@example.com","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.979Z","location":{"zip":"11433"},"name":{"first":"Emma","middle":"K","last":"Gerlach"},"race":"American
403
- Indian","school":"530e595026403103360ff9fd","sis_id":"388735497","state_id":"478235925","student_number":"388735497","id":"530e5963049e75a9262d019f"},"uri":"/v1.1/students/530e5963049e75a9262d019f"},{"data":{"created":"2014-02-26T21:15:15.112Z","credentials":{"district_username":"velmar91","district_password":"ikie4Peij"},"district":"4fd43cc56d11340000000005","dob":"12/9/1996","ell_status":"Y","email":"r_velma@example.org","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.983Z","location":{"zip":"10453"},"name":{"first":"Velma","middle":"D","last":"Ruecker"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"389529091","state_id":"694884284","student_number":"389529091","id":"530e5963049e75a9262d01a1"},"uri":"/v1.1/students/530e5963049e75a9262d01a1"},{"data":{"created":"2014-02-26T21:15:15.123Z","credentials":{"district_username":"bryane20","district_password":"Oliom1oequoh"},"district":"4fd43cc56d11340000000005","dob":"6/11/1998","ell_status":"N","email":"bryan_e@example.com","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.988Z","location":{"zip":"10037"},"name":{"first":"Bryan","middle":"I","last":"Erdman"},"race":"Black
404
- or African American","school":"530e595026403103360ff9fd","sis_id":"390783820","state_id":"778914206","student_number":"390783820","id":"530e5963049e75a9262d01a2"},"uri":"/v1.1/students/530e5963049e75a9262d01a2"},{"data":{"created":"2014-02-26T21:15:15.140Z","credentials":{"district_username":"chongs36","district_password":"ce2ahPie"},"district":"4fd43cc56d11340000000005","dob":"5/6/2000","ell_status":"Y","email":"chong_s@example.net","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.992Z","location":{"zip":"11354"},"name":{"first":"Chong","middle":"R","last":"Schulist"},"race":"Black
405
- or African American","school":"530e595026403103360ff9ff","sis_id":"395082836","state_id":"631919948","student_number":"395082836","id":"530e5963049e75a9262d01a3"},"uri":"/v1.1/students/530e5963049e75a9262d01a3"},{"data":{"created":"2014-02-26T21:15:15.144Z","credentials":{"district_username":"shirleys63","district_password":"tha7bo8ahR"},"district":"4fd43cc56d11340000000005","dob":"12/13/1998","ell_status":"N","email":"shirley.s@example.org","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.995Z","location":{"zip":"10034"},"name":{"first":"Shirley","middle":"M","last":"Steuber"},"race":"Two
406
- or More Races","school":"530e595026403103360ff9fd","sis_id":"395302663","state_id":"496820999","student_number":"395302663","id":"530e5963049e75a9262d01a4"},"uri":"/v1.1/students/530e5963049e75a9262d01a4"},{"data":{"created":"2014-02-26T21:15:15.147Z","credentials":{"district_username":"janayp92","district_password":"jooneQu7U"},"district":"4fd43cc56d11340000000005","dob":"6/10/2002","ell_status":"Y","email":"p.janay@example.net","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:41.999Z","location":{"zip":"11213"},"name":{"first":"Janay","middle":"R","last":"Parker"},"race":"Black
407
- or African American","school":"530e595026403103360ff9fe","sis_id":"395406392","state_id":"330930701","student_number":"395406392","id":"530e5963049e75a9262d01a5"},"uri":"/v1.1/students/530e5963049e75a9262d01a5"},{"data":{"created":"2014-02-26T21:15:15.151Z","credentials":{"district_username":"jeffreye80","district_password":"Daichaep5"},"district":"4fd43cc56d11340000000005","dob":"8/7/1995","ell_status":"N","email":"e.jeffrey@example.org","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.004Z","location":{"zip":"10457"},"name":{"first":"Jeffrey","middle":"C","last":"Erdman"},"race":"Two
408
- or More Races","school":"530e595026403103360ff9fd","sis_id":"395825780","state_id":"557060372","student_number":"395825780","id":"530e5963049e75a9262d01a6"},"uri":"/v1.1/students/530e5963049e75a9262d01a6"},{"data":{"created":"2014-02-26T21:15:15.166Z","credentials":{"district_username":"pollyc13","district_password":"Ai5Phoor"},"district":"4fd43cc56d11340000000005","dob":"12/30/1996","ell_status":"Y","email":"polly.c@example.com","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.008Z","location":{"zip":"10036"},"name":{"first":"Polly","middle":"J","last":"Collins"},"race":"Two
409
- or More Races","school":"530e595026403103360ff9fd","sis_id":"396600413","state_id":"591938415","student_number":"396600413","id":"530e5963049e75a9262d01a7"},"uri":"/v1.1/students/530e5963049e75a9262d01a7"},{"data":{"created":"2014-02-26T21:15:15.171Z","credentials":{"district_username":"alisac01","district_password":"beeW3tho8a"},"district":"4fd43cc56d11340000000005","dob":"5/24/2000","ell_status":"N","email":"alisa_c@example.org","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.010Z","location":{"zip":"10469"},"name":{"first":"Alisa","middle":"K","last":"Carter"},"race":"American
410
- Indian","school":"530e595026403103360ff9ff","sis_id":"396677401","state_id":"975134407","student_number":"396677401","id":"530e5963049e75a9262d01a8"},"uri":"/v1.1/students/530e5963049e75a9262d01a8"},{"data":{"created":"2014-02-26T21:15:15.174Z","credentials":{"district_username":"ediej28","district_password":"Jaequaiya5e"},"district":"4fd43cc56d11340000000005","dob":"3/26/2002","ell_status":"N","email":"edie_j@example.com","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.014Z","location":{"zip":"10468"},"name":{"first":"Edie","middle":"D","last":"Johnson"},"race":"Black
411
- or African American","school":"530e595026403103360ff9fe","sis_id":"396779728","state_id":"857416890","student_number":"396779728","id":"530e5963049e75a9262d01a9"},"uri":"/v1.1/students/530e5963049e75a9262d01a9"},{"data":{"created":"2014-02-26T21:15:15.179Z","credentials":{"district_username":"shannonr16","district_password":"Ahnae6eich"},"district":"4fd43cc56d11340000000005","dob":"2/10/2002","ell_status":"Y","email":"r.shannon@example.net","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.019Z","location":{"zip":"10466"},"name":{"first":"Shannon","middle":"C","last":"Reinger"},"race":"Black
412
- or African American","school":"530e595026403103360ff9fe","sis_id":"396922716","state_id":"251213361","student_number":"396922716","id":"530e5963049e75a9262d01aa"},"uri":"/v1.1/students/530e5963049e75a9262d01aa"},{"data":{"created":"2014-02-26T21:15:15.195Z","credentials":{"district_username":"johnn12","district_password":"xa7Kie0au"},"district":"4fd43cc56d11340000000005","dob":"10/3/2002","ell_status":"N","email":"n.john@example.org","frl_status":"Paid","gender":"M","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.023Z","location":{"zip":"10025"},"name":{"first":"John","middle":"E","last":"Nienow"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"397105712","state_id":"342532402","student_number":"397105712","id":"530e5963049e75a9262d01ac"},"uri":"/v1.1/students/530e5963049e75a9262d01ac"},{"data":{"created":"2014-02-26T21:15:15.217Z","credentials":{"district_username":"henrym57","district_password":"ahZae1eesh"},"district":"4fd43cc56d11340000000005","dob":"11/18/2003","ell_status":"Y","email":"henry_m@example.net","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.026Z","location":{"zip":"10312"},"name":{"first":"Henry","middle":"L","last":"McLaughlin"},"race":"Two
413
- or More Races","school":"530e595026403103360ff9fe","sis_id":"399509457","state_id":"273521528","student_number":"399509457","id":"530e5963049e75a9262d01b3"},"uri":"/v1.1/students/530e5963049e75a9262d01b3"},{"data":{"created":"2014-02-26T21:15:15.231Z","credentials":{"district_username":"geraldines07","district_password":"xiuN0een9p"},"district":"4fd43cc56d11340000000005","dob":"4/12/1997","ell_status":"Y","email":"geraldine.s@example.org","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.029Z","location":{"zip":"10002"},"name":{"first":"Geraldine","middle":"J","last":"Schowalter"},"race":"Black
414
- or African American","school":"530e595026403103360ff9fd","sis_id":"402261307","state_id":"440879170","student_number":"402261307","id":"530e5963049e75a9262d01b7"},"uri":"/v1.1/students/530e5963049e75a9262d01b7"},{"data":{"created":"2014-02-26T21:15:15.236Z","credentials":{"district_username":"lulah15","district_password":"uaXie3ai"},"district":"4fd43cc56d11340000000005","dob":"3/24/2005","ell_status":"Y","email":"h_lula@example.org","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.034Z","location":{"zip":"11238"},"name":{"first":"Lula","middle":"R","last":"Harber"},"race":"Two
415
- or More Races","school":"530e595026403103360ff9fe","sis_id":"403089115","state_id":"894951709","student_number":"403089115","id":"530e5963049e75a9262d01b9"},"uri":"/v1.1/students/530e5963049e75a9262d01b9"},{"data":{"created":"2014-02-26T21:15:15.241Z","credentials":{"district_username":"debrao95","district_password":"EShah6quoh2qu"},"district":"4fd43cc56d11340000000005","dob":"4/15/2007","ell_status":"N","email":"o_debra@example.org","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.038Z","location":{"zip":"11357"},"name":{"first":"Debra","middle":"F","last":"O''Conner"},"race":"Black
416
- or African American","school":"530e595026403103360ff9fe","sis_id":"403654695","state_id":"261181574","student_number":"403654695","id":"530e5963049e75a9262d01bb"},"uri":"/v1.1/students/530e5963049e75a9262d01bb"},{"data":{"created":"2014-02-26T21:15:15.246Z","credentials":{"district_username":"carolef82","district_password":"Phi2oXah"},"district":"4fd43cc56d11340000000005","dob":"8/5/2006","ell_status":"Y","email":"f.carole@example.com","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.041Z","location":{"zip":"11101"},"name":{"first":"Carole","middle":"B","last":"Ferry"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"403657782","state_id":"613170110","student_number":"403657782","id":"530e5963049e75a9262d01bd"},"uri":"/v1.1/students/530e5963049e75a9262d01bd"},{"data":{"created":"2014-02-26T21:15:15.258Z","credentials":{"district_username":"allanh44","district_password":"doh4Pho1u"},"district":"4fd43cc56d11340000000005","dob":"10/22/2007","ell_status":"Y","email":"h.allan@example.com","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.053Z","location":{"zip":"10473"},"name":{"first":"Allan","middle":"C","last":"Heller"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"404146244","state_id":"434824664","student_number":"404146244","id":"530e5963049e75a9262d01c1"},"uri":"/v1.1/students/530e5963049e75a9262d01c1"},{"data":{"created":"2014-02-26T21:15:15.263Z","credentials":{"district_username":"donnas94","district_password":"aeY3eewiree"},"district":"4fd43cc56d11340000000005","dob":"7/31/2004","ell_status":"N","email":"donna_s@example.org","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.060Z","location":{"zip":"11228"},"name":{"first":"Donna","middle":"W","last":"Smith"},"race":"Black
417
- or African American","school":"530e595026403103360ff9fe","sis_id":"404617194","state_id":"766043158","student_number":"404617194","id":"530e5963049e75a9262d01c3"},"uri":"/v1.1/students/530e5963049e75a9262d01c3"},{"data":{"created":"2014-02-26T21:15:15.268Z","credentials":{"district_username":"richardm88","district_password":"eeCah1eil"},"district":"4fd43cc56d11340000000005","dob":"6/3/2002","ell_status":"Y","email":"m_richard@example.org","frl_status":"Paid","gender":"M","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.064Z","location":{"zip":"11204"},"name":{"first":"Richard","middle":"T","last":"Mraz"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"405175088","state_id":"312075305","student_number":"405175088","id":"530e5963049e75a9262d01c5"},"uri":"/v1.1/students/530e5963049e75a9262d01c5"},{"data":{"created":"2014-02-26T21:15:15.273Z","credentials":{"district_username":"jonl17","district_password":"wo3jaiYu"},"district":"4fd43cc56d11340000000005","dob":"7/26/1995","ell_status":"Y","email":"jon.l@example.org","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.067Z","location":{"zip":"11228"},"name":{"first":"Jon","middle":"B","last":"Lynch"},"race":"Two
418
- or More Races","school":"530e595026403103360ff9fd","sis_id":"405212817","state_id":"436482663","student_number":"405212817","id":"530e5963049e75a9262d01c7"},"uri":"/v1.1/students/530e5963049e75a9262d01c7"},{"data":{"created":"2014-02-26T21:15:15.278Z","credentials":{"district_username":"brucej67","district_password":"IPh0gea9moh"},"district":"4fd43cc56d11340000000005","dob":"6/7/1996","ell_status":"N","email":"bruce.j@example.org","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.071Z","location":{"zip":"11236"},"name":{"first":"Bruce","middle":"D","last":"Jerde"},"race":"Black
419
- or African American","school":"530e595026403103360ff9fd","sis_id":"406096167","state_id":"856880196","student_number":"406096167","id":"530e5963049e75a9262d01c9"},"uri":"/v1.1/students/530e5963049e75a9262d01c9"},{"data":{"created":"2014-02-26T21:15:15.282Z","credentials":{"district_username":"youngf22","district_password":"athohB7Aif"},"district":"4fd43cc56d11340000000005","dob":"4/26/1999","ell_status":"N","email":"f.young@example.net","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.076Z","location":{"zip":"10463"},"name":{"first":"Young","middle":"A","last":"Fahey"},"race":"Black
420
- or African American","school":"530e595026403103360ff9ff","sis_id":"406243122","state_id":"127394708","student_number":"406243122","id":"530e5963049e75a9262d01ca"},"uri":"/v1.1/students/530e5963049e75a9262d01ca"},{"data":{"created":"2014-02-26T21:15:15.286Z","credentials":{"district_username":"humbertoq80","district_password":"Rei1Uugowah"},"district":"4fd43cc56d11340000000005","dob":"3/24/2002","ell_status":"N","email":"humberto.q@example.com","frl_status":"Paid","gender":"M","grade":"5","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.080Z","location":{"zip":"10456"},"name":{"first":"Humberto","middle":"J","last":"Quigley"},"race":"Black
421
- or African American","school":"530e595026403103360ff9fe","sis_id":"406243480","state_id":"219088760","student_number":"406243480","id":"530e5963049e75a9262d01cb"},"uri":"/v1.1/students/530e5963049e75a9262d01cb"},{"data":{"created":"2014-02-26T21:15:15.290Z","credentials":{"district_username":"bernicet83","district_password":"tooShie3"},"district":"4fd43cc56d11340000000005","dob":"5/2/1997","ell_status":"Y","email":"t.bernice@example.com","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.084Z","location":{"zip":"10029"},"name":{"first":"Bernice","middle":"S","last":"Thiel"},"race":"Black
422
- or African American","school":"530e595026403103360ff9fd","sis_id":"406250483","state_id":"891243672","student_number":"406250483","id":"530e5963049e75a9262d01cc"},"uri":"/v1.1/students/530e5963049e75a9262d01cc"},{"data":{"created":"2014-02-26T21:15:15.295Z","credentials":{"district_username":"patriciae18","district_password":"pohBie3oaG"},"district":"4fd43cc56d11340000000005","dob":"10/26/1996","ell_status":"Y","email":"e.patricia@example.org","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.087Z","location":{"zip":"10004"},"name":{"first":"Patricia","middle":"B","last":"Eichmann"},"race":"Two
423
- or More Races","school":"530e595026403103360ff9fd","sis_id":"406647418","state_id":"144054889","student_number":"406647418","id":"530e5963049e75a9262d01cd"},"uri":"/v1.1/students/530e5963049e75a9262d01cd"},{"data":{"created":"2014-02-26T21:15:15.301Z","credentials":{"district_username":"davidt49","district_password":"ahc5Ahmi4j"},"district":"4fd43cc56d11340000000005","dob":"10/10/2003","ell_status":"N","email":"t_david@example.org","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.091Z","location":{"zip":"10458"},"name":{"first":"David","middle":"P","last":"Treutel"},"race":"Two
424
- or More Races","school":"530e595026403103360ff9fe","sis_id":"407098749","state_id":"250275588","student_number":"407098749","id":"530e5963049e75a9262d01ce"},"uri":"/v1.1/students/530e5963049e75a9262d01ce"},{"data":{"created":"2014-02-26T21:15:15.306Z","credentials":{"district_username":"charlesm02","district_password":"ohTahchoo3ei"},"district":"4fd43cc56d11340000000005","dob":"9/8/2004","ell_status":"N","email":"m_charles@example.com","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.096Z","location":{"zip":"11413"},"name":{"first":"Charles","middle":"S","last":"Moen"},"race":"Black
425
- or African American","school":"530e595026403103360ff9fe","sis_id":"407503302","state_id":"483822881","student_number":"407503302","id":"530e5963049e75a9262d01cf"},"uri":"/v1.1/students/530e5963049e75a9262d01cf"},{"data":{"created":"2014-02-26T21:15:15.310Z","credentials":{"district_username":"francesg36","district_password":"uic2shuZohbi"},"district":"4fd43cc56d11340000000005","dob":"2/26/1999","ell_status":"Y","email":"g_frances@example.net","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.100Z","location":{"zip":"10467"},"name":{"first":"Frances","middle":"J","last":"Gulgowski"},"race":"Black
426
- or African American","school":"530e595026403103360ff9ff","sis_id":"407607136","state_id":"254952218","student_number":"407607136","id":"530e5963049e75a9262d01d0"},"uri":"/v1.1/students/530e5963049e75a9262d01d0"},{"data":{"created":"2014-02-26T21:15:15.314Z","credentials":{"district_username":"patriciak82","district_password":"Ahng1geep0"},"district":"4fd43cc56d11340000000005","dob":"9/28/1999","ell_status":"N","email":"patricia_k@example.com","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.102Z","location":{"zip":"10027"},"name":{"first":"Patricia","middle":"E","last":"Kovacek"},"race":"Black
427
- or African American","school":"530e595026403103360ff9ff","sis_id":"407671682","state_id":"982748337","student_number":"407671682","id":"530e5963049e75a9262d01d1"},"uri":"/v1.1/students/530e5963049e75a9262d01d1"},{"data":{"created":"2014-02-26T21:15:15.318Z","credentials":{"district_username":"lynnq07","district_password":"ye8Iepech3"},"district":"4fd43cc56d11340000000005","dob":"11/8/1996","ell_status":"N","email":"lynn_q@example.com","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.106Z","location":{"zip":"11208"},"name":{"first":"Lynn","middle":"A","last":"Quigley"},"race":"Black
428
- or African American","school":"530e595026403103360ff9fd","sis_id":"409330507","state_id":"879744842","student_number":"409330507","id":"530e5963049e75a9262d01d2"},"uri":"/v1.1/students/530e5963049e75a9262d01d2"},{"data":{"created":"2014-02-26T21:15:15.322Z","credentials":{"district_username":"jasonh44","district_password":"ra3Oogaanei"},"district":"4fd43cc56d11340000000005","dob":"9/6/2007","ell_status":"Y","email":"h.jason@example.net","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.111Z","location":{"zip":"11219"},"name":{"first":"Jason","middle":"R","last":"Haag"},"race":"Two
429
- or More Races","school":"530e595026403103360ff9fe","sis_id":"409399744","state_id":"966049215","student_number":"409399744","id":"530e5963049e75a9262d01d3"},"uri":"/v1.1/students/530e5963049e75a9262d01d3"},{"data":{"created":"2014-02-26T21:15:15.334Z","credentials":{"district_username":"kennyk46","district_password":"ohJ0aem7roh"},"district":"4fd43cc56d11340000000005","dob":"2/22/2002","ell_status":"Y","email":"k.kenny@example.com","frl_status":"Paid","gender":"M","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.115Z","location":{"zip":"10303"},"name":{"first":"Kenny","middle":"A","last":"Klein"},"race":"Two
430
- or More Races","school":"530e595026403103360ff9fe","sis_id":"412604746","state_id":"873362954","student_number":"412604746","id":"530e5963049e75a9262d01d4"},"uri":"/v1.1/students/530e5963049e75a9262d01d4"},{"data":{"created":"2014-02-26T21:15:15.339Z","credentials":{"district_username":"paulk86","district_password":"wiequiW0doh"},"district":"4fd43cc56d11340000000005","dob":"1/18/1996","ell_status":"N","email":"paul.k@example.net","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.118Z","location":{"zip":"11221"},"name":{"first":"Paul","middle":"P","last":"Kertzmann"},"race":"Black
431
- or African American","school":"530e595026403103360ff9fd","sis_id":"412704586","state_id":"248807884","student_number":"412704586","id":"530e5963049e75a9262d01d5"},"uri":"/v1.1/students/530e5963049e75a9262d01d5"},{"data":{"created":"2014-02-26T21:15:15.343Z","credentials":{"district_username":"wandaw73","district_password":"Jah7uaCa4th"},"district":"4fd43cc56d11340000000005","dob":"9/29/1995","ell_status":"Y","email":"wanda_w@example.net","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.122Z","location":{"zip":"10473"},"name":{"first":"Wanda","middle":"E","last":"Walsh"},"race":"American
432
- Indian","school":"530e595026403103360ff9fd","sis_id":"413265573","state_id":"333651730","student_number":"413265573","id":"530e5963049e75a9262d01d6"},"uri":"/v1.1/students/530e5963049e75a9262d01d6"},{"data":{"created":"2014-02-26T21:15:15.350Z","credentials":{"district_username":"michaelg47","district_password":"Oorung4ru"},"district":"4fd43cc56d11340000000005","dob":"3/5/2004","ell_status":"N","email":"michael.g@example.net","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.127Z","location":{"zip":"10019"},"name":{"first":"Michael","middle":"D","last":"Graham"},"race":"Two
433
- or More Races","school":"530e595026403103360ff9fe","sis_id":"414185747","state_id":"441214792","student_number":"414185747","id":"530e5963049e75a9262d01d7"},"uri":"/v1.1/students/530e5963049e75a9262d01d7"},{"data":{"created":"2014-02-26T21:15:15.355Z","credentials":{"district_username":"kristens39","district_password":"uqu3Weilah"},"district":"4fd43cc56d11340000000005","dob":"1/21/1999","ell_status":"N","email":"s_kristen@example.net","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.131Z","location":{"zip":"11218"},"name":{"first":"Kristen","middle":"D","last":"Stark"},"race":"Black
434
- or African American","school":"530e595026403103360ff9ff","sis_id":"414223239","state_id":"543505942","student_number":"414223239","id":"530e5963049e75a9262d01d8"},"uri":"/v1.1/students/530e5963049e75a9262d01d8"},{"data":{"created":"2014-02-26T21:15:15.359Z","credentials":{"district_username":"kristinw55","district_password":"veijee6Oish"},"district":"4fd43cc56d11340000000005","dob":"5/19/2006","ell_status":"N","email":"kristin.w@example.com","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.133Z","location":{"zip":"10302"},"name":{"first":"Kristin","middle":"M","last":"Wolf"},"race":"Black
435
- or African American","school":"530e595026403103360ff9fe","sis_id":"414798655","state_id":"116057814","student_number":"414798655","id":"530e5963049e75a9262d01d9"},"uri":"/v1.1/students/530e5963049e75a9262d01d9"},{"data":{"created":"2014-02-26T21:15:15.365Z","credentials":{"district_username":"rodneyk30","district_password":"Hoofai6uh"},"district":"4fd43cc56d11340000000005","dob":"2/5/2006","ell_status":"N","email":"k_rodney@example.com","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.137Z","location":{"zip":"11228"},"name":{"first":"Rodney","middle":"L","last":"Kassulke"},"race":"Two
436
- or More Races","school":"530e595026403103360ff9fe","sis_id":"415260230","state_id":"726197516","student_number":"415260230","id":"530e5963049e75a9262d01da"},"uri":"/v1.1/students/530e5963049e75a9262d01da"},{"data":{"created":"2014-02-26T21:15:15.373Z","credentials":{"district_username":"davidab93","district_password":"aijieVe9ce"},"district":"4fd43cc56d11340000000005","dob":"3/16/1998","ell_status":"N","email":"b.davida@example.org","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.142Z","location":{"zip":"10456"},"name":{"first":"Davida","middle":"F","last":"Barrows"},"race":"Black
437
- or African American","school":"530e595026403103360ff9fd","sis_id":"416050093","state_id":"494212064","student_number":"416050093","id":"530e5963049e75a9262d01db"},"uri":"/v1.1/students/530e5963049e75a9262d01db"},{"data":{"created":"2014-02-26T21:15:15.381Z","credentials":{"district_username":"angeliquet36","district_password":"Quohz6sahDae"},"district":"4fd43cc56d11340000000005","dob":"8/26/1999","ell_status":"N","email":"angelique_t@example.com","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.146Z","location":{"zip":"10001"},"name":{"first":"Angelique","middle":"R","last":"Treutel"},"race":"Black
438
- or African American","school":"530e595026403103360ff9ff","sis_id":"416113636","state_id":"511750321","student_number":"416113636","id":"530e5963049e75a9262d01dc"},"uri":"/v1.1/students/530e5963049e75a9262d01dc"},{"data":{"created":"2014-02-26T21:15:15.385Z","credentials":{"district_username":"barbaraw85","district_password":"IeSh7uvi"},"district":"4fd43cc56d11340000000005","dob":"7/23/2003","ell_status":"N","email":"barbara_w@example.com","frl_status":"Paid","gender":"F","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.149Z","location":{"zip":"10305"},"name":{"first":"Barbara","middle":"W","last":"Wunsch"},"race":"Black
439
- or African American","school":"530e595026403103360ff9fe","sis_id":"416741585","state_id":"864289407","student_number":"416741585","id":"530e5963049e75a9262d01dd"},"uri":"/v1.1/students/530e5963049e75a9262d01dd"},{"data":{"created":"2014-02-26T21:15:15.391Z","credentials":{"district_username":"averyg58","district_password":"Airie3kohb"},"district":"4fd43cc56d11340000000005","dob":"12/19/2003","ell_status":"N","email":"g_avery@example.org","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.152Z","location":{"zip":"11434"},"name":{"first":"Avery","middle":"S","last":"Grimes"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"416986558","state_id":"741323929","student_number":"416986558","id":"530e5963049e75a9262d01de"},"uri":"/v1.1/students/530e5963049e75a9262d01de"},{"data":{"created":"2014-02-26T21:15:15.418Z","credentials":{"district_username":"jimy73","district_password":"Joht9phee"},"district":"4fd43cc56d11340000000005","dob":"12/27/2007","ell_status":"Y","email":"jim.y@example.net","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.158Z","location":{"zip":"10012"},"name":{"first":"Jim","middle":"R","last":"Yundt"},"race":"American
440
- Indian","school":"530e595026403103360ff9fe","sis_id":"420229973","state_id":"329003694","student_number":"420229973","id":"530e5963049e75a9262d01e1"},"uri":"/v1.1/students/530e5963049e75a9262d01e1"},{"data":{"created":"2014-02-26T21:15:15.432Z","credentials":{"district_username":"jasonr74","district_password":"AeC3Ruac5H"},"district":"4fd43cc56d11340000000005","dob":"7/3/1999","ell_status":"N","email":"jason.r@example.net","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.162Z","location":{"zip":"10309"},"name":{"first":"Jason","middle":"J","last":"Reichert"},"race":"Black
441
- or African American","school":"530e595026403103360ff9ff","sis_id":"421422674","state_id":"736345528","student_number":"421422674","id":"530e5963049e75a9262d01e4"},"uri":"/v1.1/students/530e5963049e75a9262d01e4"},{"data":{"created":"2014-02-26T21:15:15.460Z","credentials":{"district_username":"karenc53","district_password":"ingaegh1Oc7"},"district":"4fd43cc56d11340000000005","dob":"11/28/1999","ell_status":"Y","email":"karen_c@example.org","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.165Z","location":{"zip":"11103"},"name":{"first":"Karen","middle":"J","last":"Conn"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"425829853","state_id":"285683632","student_number":"425829853","id":"530e5963049e75a9262d01ed"},"uri":"/v1.1/students/530e5963049e75a9262d01ed"},{"data":{"created":"2014-02-26T21:15:15.467Z","credentials":{"district_username":"danielk96","district_password":"ieV1Mochee"},"district":"4fd43cc56d11340000000005","dob":"11/20/2007","ell_status":"Y","email":"daniel.k@example.net","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.169Z","location":{"zip":"10306"},"name":{"first":"Daniel","middle":"I","last":"Krajcik"},"race":"Two
442
- or More Races","school":"530e595026403103360ff9fe","sis_id":"425887196","state_id":"493475813","student_number":"425887196","id":"530e5963049e75a9262d01f0"},"uri":"/v1.1/students/530e5963049e75a9262d01f0"},{"data":{"created":"2014-02-26T21:15:15.473Z","credentials":{"district_username":"jacobs02","district_password":"ooX6iush8Ai"},"district":"4fd43cc56d11340000000005","dob":"5/2/2000","ell_status":"Y","email":"s.jacob@example.org","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.175Z","location":{"zip":"11203"},"name":{"first":"Jacob","middle":"J","last":"Stehr"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"426201302","state_id":"560874481","student_number":"426201302","id":"530e5963049e75a9262d01f2"},"uri":"/v1.1/students/530e5963049e75a9262d01f2"},{"data":{"created":"2014-02-26T21:15:15.483Z","credentials":{"district_username":"carolynn45","district_password":"AimahY1eaj"},"district":"4fd43cc56d11340000000005","dob":"12/3/1997","ell_status":"N","email":"carolyn_n@example.org","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.179Z","location":{"zip":"11423"},"name":{"first":"Carolyn","middle":"T","last":"Nader"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"426973045","state_id":"821613357","student_number":"426973045","id":"530e5963049e75a9262d01f5"},"uri":"/v1.1/students/530e5963049e75a9262d01f5"},{"data":{"created":"2014-02-26T21:15:15.490Z","credentials":{"district_username":"nicoleb40","district_password":"ooRahquoqu1"},"district":"4fd43cc56d11340000000005","dob":"3/25/1998","ell_status":"N","email":"nicole.b@example.net","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-13T00:45:01.683Z","location":{"zip":"10019"},"name":{"first":"Nicole","middle":"H","last":"Beier"},"race":"American
443
- Indian","school":"530e595026403103360ff9fd","sis_id":"427165340","state_id":"473438689","student_number":"427165340","id":"530e5963049e75a9262d01f8"},"uri":"/v1.1/students/530e5963049e75a9262d01f8"},{"data":{"created":"2014-02-26T21:15:15.496Z","credentials":{"district_username":"markm97","district_password":"bahFu6lee"},"district":"4fd43cc56d11340000000005","dob":"2/28/2007","ell_status":"N","email":"m.mark@example.net","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.186Z","location":{"zip":"10011"},"name":{"first":"Mark","middle":"A","last":"McGlynn"},"race":"Two
444
- or More Races","school":"530e595026403103360ff9fe","sis_id":"427573397","state_id":"597846245","student_number":"427573397","id":"530e5963049e75a9262d01fa"},"uri":"/v1.1/students/530e5963049e75a9262d01fa"},{"data":{"created":"2014-02-26T21:15:15.500Z","credentials":{"district_username":"francesw53","district_password":"uic2shuZohbi"},"district":"4fd43cc56d11340000000005","dob":"8/8/1998","ell_status":"N","email":"frances.w@example.org","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.191Z","location":{"zip":"11208"},"name":{"first":"Frances","middle":"J","last":"Walker"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"427609153","state_id":"835874554","student_number":"427609153","id":"530e5963049e75a9262d01fb"},"uri":"/v1.1/students/530e5963049e75a9262d01fb"},{"data":{"created":"2014-02-26T21:15:15.507Z","credentials":{"district_username":"robertj14","district_password":"eeNgei6ei"},"district":"4fd43cc56d11340000000005","dob":"6/29/1996","ell_status":"Y","email":"j.robert@example.net","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.195Z","location":{"zip":"11004"},"name":{"first":"Robert","middle":"T","last":"Jakubowski"},"race":"Two
445
- or More Races","school":"530e595026403103360ff9fd","sis_id":"428536014","state_id":"224377980","student_number":"428536014","id":"530e5963049e75a9262d01fc"},"uri":"/v1.1/students/530e5963049e75a9262d01fc"},{"data":{"created":"2014-02-26T21:15:15.514Z","credentials":{"district_username":"angelb58","district_password":"vohGhai6Oh"},"district":"4fd43cc56d11340000000005","dob":"9/21/1996","ell_status":"N","email":"angel.b@example.net","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.197Z","location":{"zip":"10001"},"name":{"first":"Angel","middle":"C","last":"Bins"},"race":"American
446
- Indian","school":"530e595026403103360ff9fd","sis_id":"429953058","state_id":"596399011","student_number":"429953058","id":"530e5963049e75a9262d01fd"},"uri":"/v1.1/students/530e5963049e75a9262d01fd"},{"data":{"created":"2014-02-26T21:15:15.519Z","credentials":{"district_username":"teresah64","district_password":"ohFah0iqu8sh"},"district":"4fd43cc56d11340000000005","dob":"12/31/2003","ell_status":"N","email":"teresa.h@example.org","frl_status":"Paid","gender":"F","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.201Z","location":{"zip":"10021"},"name":{"first":"Teresa","middle":"G","last":"Hermann"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"430690364","state_id":"577031988","student_number":"430690364","id":"530e5963049e75a9262d01fe"},"uri":"/v1.1/students/530e5963049e75a9262d01fe"},{"data":{"created":"2014-02-26T21:15:15.523Z","credentials":{"district_username":"bettym61","district_password":"viu7he2U"},"district":"4fd43cc56d11340000000005","dob":"7/16/1997","ell_status":"Y","email":"betty_m@example.net","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.206Z","location":{"zip":"11695"},"name":{"first":"Betty","middle":"J","last":"Mertz"},"race":"Black
447
- or African American","school":"530e595026403103360ff9fd","sis_id":"430849861","state_id":"878718726","student_number":"430849861","id":"530e5963049e75a9262d01ff"},"uri":"/v1.1/students/530e5963049e75a9262d01ff"},{"data":{"created":"2014-02-26T21:15:15.528Z","credentials":{"district_username":"melissaw72","district_password":"UjaebaiFe2"},"district":"4fd43cc56d11340000000005","dob":"9/3/2000","ell_status":"Y","email":"w_melissa@example.com","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.210Z","location":{"zip":"10454"},"name":{"first":"Melissa","middle":"J","last":"West"},"race":"Black
448
- or African American","school":"530e595026403103360ff9ff","sis_id":"431022472","state_id":"214384376","student_number":"431022472","id":"530e5963049e75a9262d0200"},"uri":"/v1.1/students/530e5963049e75a9262d0200"},{"data":{"created":"2014-02-26T21:15:15.537Z","credentials":{"district_username":"fredericks92","district_password":"Iel1ijook7"},"district":"4fd43cc56d11340000000005","dob":"3/5/2005","ell_status":"Y","email":"s.frederick@example.com","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.213Z","location":{"zip":"11208"},"name":{"first":"Frederick","middle":"M","last":"Satterfield"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"432302192","state_id":"292658471","student_number":"432302192","id":"530e5963049e75a9262d0201"},"uri":"/v1.1/students/530e5963049e75a9262d0201"},{"data":{"created":"2014-02-26T21:15:15.549Z","credentials":{"district_username":"angelad60","district_password":"wah4Aeyah"},"district":"4fd43cc56d11340000000005","dob":"11/22/1997","ell_status":"N","email":"angela.d@example.net","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.217Z","location":{"zip":"10462"},"name":{"first":"Angela","middle":"S","last":"Dach"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"434174160","state_id":"372937782","student_number":"434174160","id":"530e5963049e75a9262d0202"},"uri":"/v1.1/students/530e5963049e75a9262d0202"},{"data":{"created":"2014-02-26T21:15:15.556Z","credentials":{"district_username":"grantf18","district_password":"thiet4Cai"},"district":"4fd43cc56d11340000000005","dob":"4/2/1998","ell_status":"N","email":"f_grant@example.org","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.222Z","location":{"zip":"11225"},"name":{"first":"Grant","middle":"E","last":"Fay"},"race":"Black
449
- or African American","school":"530e595026403103360ff9fd","sis_id":"434704818","state_id":"595359162","student_number":"434704818","id":"530e5963049e75a9262d0203"},"uri":"/v1.1/students/530e5963049e75a9262d0203"},{"data":{"created":"2014-02-26T21:15:15.566Z","credentials":{"district_username":"kevink31","district_password":"aib7Aish"},"district":"4fd43cc56d11340000000005","dob":"5/22/2001","ell_status":"Y","email":"kevin.k@example.net","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.225Z","location":{"zip":"10461"},"name":{"first":"Kevin","middle":"L","last":"Kerluke"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"436866931","state_id":"156886152","student_number":"436866931","id":"530e5963049e75a9262d0204"},"uri":"/v1.1/students/530e5963049e75a9262d0204"},{"data":{"created":"2014-02-26T21:15:15.572Z","credentials":{"district_username":"rebekaht66","district_password":"ohD2ju6u"},"district":"4fd43cc56d11340000000005","dob":"7/11/1996","ell_status":"N","email":"t_rebekah@example.org","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.228Z","location":{"zip":"11213"},"name":{"first":"Rebekah","middle":"C","last":"Torp"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"437320066","state_id":"807869273","student_number":"437320066","id":"530e5963049e75a9262d0205"},"uri":"/v1.1/students/530e5963049e75a9262d0205"},{"data":{"created":"2014-02-26T21:15:15.577Z","credentials":{"district_username":"hazelb78","district_password":"aiX9oonaesh"},"district":"4fd43cc56d11340000000005","dob":"10/24/2000","ell_status":"N","email":"hazel.b@example.net","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.232Z","location":{"zip":"10312"},"name":{"first":"Hazel","middle":"T","last":"Batz"},"race":"Black
450
- or African American","school":"530e595026403103360ff9ff","sis_id":"437462578","state_id":"716076337","student_number":"437462578","id":"530e5963049e75a9262d0206"},"uri":"/v1.1/students/530e5963049e75a9262d0206"},{"data":{"created":"2014-02-26T21:15:15.583Z","credentials":{"district_username":"valeried44","district_password":"eiNiequa8"},"district":"4fd43cc56d11340000000005","dob":"1/8/1997","ell_status":"Y","email":"d.valerie@example.net","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.237Z","location":{"zip":"11215"},"name":{"first":"Valerie","middle":"C","last":"Dooley"},"race":"Black
451
- or African American","school":"530e595026403103360ff9fd","sis_id":"438078044","state_id":"270732580","student_number":"438078044","id":"530e5963049e75a9262d0207"},"uri":"/v1.1/students/530e5963049e75a9262d0207"},{"data":{"created":"2014-02-26T21:15:15.592Z","credentials":{"district_username":"carlosb69","district_password":"Tau7in0ph"},"district":"4fd43cc56d11340000000005","dob":"11/28/1995","ell_status":"N","email":"carlos_b@example.org","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.241Z","location":{"zip":"11220"},"name":{"first":"Carlos","middle":"R","last":"Berge"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"439358469","state_id":"510169749","student_number":"439358469","id":"530e5963049e75a9262d0209"},"uri":"/v1.1/students/530e5963049e75a9262d0209"},{"data":{"created":"2014-02-26T21:15:15.598Z","credentials":{"district_username":"joeo55","district_password":"Faizie2au3nae"},"district":"4fd43cc56d11340000000005","dob":"10/10/1995","ell_status":"Y","email":"o_joe@example.org","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.251Z","location":{"zip":"11239"},"name":{"first":"Joe","middle":"V","last":"Oberbrunner"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"439769755","state_id":"720860183","student_number":"439769755","id":"530e5963049e75a9262d020b"},"uri":"/v1.1/students/530e5963049e75a9262d020b"},{"data":{"created":"2014-02-26T21:15:15.602Z","credentials":{"district_username":"sandrar86","district_password":"naJ8zeeF5Sh"},"district":"4fd43cc56d11340000000005","dob":"3/3/1995","ell_status":"N","email":"sandra_r@example.net","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.255Z","location":{"zip":"10310"},"name":{"first":"Sandra","middle":"A","last":"Rolfson"},"race":"Black
452
- or African American","school":"530e595026403103360ff9fd","sis_id":"439810286","state_id":"394796526","student_number":"439810286","id":"530e5963049e75a9262d020d"},"uri":"/v1.1/students/530e5963049e75a9262d020d"},{"data":{"created":"2014-02-26T21:15:15.617Z","credentials":{"district_username":"georgec09","district_password":"Cei0jaivae8"},"district":"4fd43cc56d11340000000005","dob":"4/7/1998","ell_status":"N","email":"george.c@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.260Z","location":{"zip":"10461"},"name":{"first":"George","middle":"K","last":"Christiansen"},"race":"Two
453
- or More Races","school":"530e595026403103360ff9fd","sis_id":"440288509","state_id":"525546151","student_number":"440288509","id":"530e5963049e75a9262d020f"},"uri":"/v1.1/students/530e5963049e75a9262d020f"},{"data":{"created":"2014-02-26T21:15:15.622Z","credentials":{"district_username":"josephr99","district_password":"euRai5seit"},"district":"4fd43cc56d11340000000005","dob":"6/1/1998","ell_status":"Y","email":"joseph.r@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.264Z","location":{"zip":"11368"},"name":{"first":"Joseph","middle":"W","last":"Rosenbaum"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"440638399","state_id":"756160802","student_number":"440638399","id":"530e5963049e75a9262d0211"},"uri":"/v1.1/students/530e5963049e75a9262d0211"},{"data":{"created":"2014-02-26T21:15:15.640Z","credentials":{"district_username":"leont05","district_password":"azoo1AeXo5oh"},"district":"4fd43cc56d11340000000005","dob":"6/3/2006","ell_status":"Y","email":"leon.t@example.net","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.266Z","location":{"zip":"11421"},"name":{"first":"Leon","middle":"S","last":"Thompson"},"race":"Black
454
- or African American","school":"530e595026403103360ff9fe","sis_id":"442057305","state_id":"874246372","student_number":"442057305","id":"530e5963049e75a9262d0216"},"uri":"/v1.1/students/530e5963049e75a9262d0216"},{"data":{"created":"2014-02-26T21:15:15.648Z","credentials":{"district_username":"sarahl13","district_password":"Naech9eirai"},"district":"4fd43cc56d11340000000005","dob":"6/29/2004","ell_status":"N","email":"l_sarah@example.org","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.271Z","location":{"zip":"11434"},"name":{"first":"Sarah","middle":"G","last":"Lang"},"race":"Two
455
- or More Races","school":"530e595026403103360ff9fe","sis_id":"442235513","state_id":"454833893","student_number":"442235513","id":"530e5963049e75a9262d0219"},"uri":"/v1.1/students/530e5963049e75a9262d0219"},{"data":{"created":"2014-02-26T21:15:15.653Z","credentials":{"district_username":"brianh58","district_password":"Nibul8or"},"district":"4fd43cc56d11340000000005","dob":"6/17/1998","ell_status":"Y","email":"brian.h@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.276Z","location":{"zip":"10007"},"name":{"first":"Brian","middle":"W","last":"Hegmann"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"442258358","state_id":"901993769","student_number":"442258358","id":"530e5963049e75a9262d021b"},"uri":"/v1.1/students/530e5963049e75a9262d021b"},{"data":{"created":"2014-02-26T21:15:15.659Z","credentials":{"district_username":"kristap81","district_password":"id1Ush1Y"},"district":"4fd43cc56d11340000000005","dob":"11/16/1995","ell_status":"Y","email":"p.krista@example.org","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.281Z","location":{"zip":"11433"},"name":{"first":"Krista","middle":"H","last":"Price"},"race":"Black
456
- or African American","school":"530e595026403103360ff9fd","sis_id":"442314881","state_id":"579063509","student_number":"442314881","id":"530e5963049e75a9262d021d"},"uri":"/v1.1/students/530e5963049e75a9262d021d"},{"data":{"created":"2014-02-26T21:15:15.669Z","credentials":{"district_username":"kylem31","district_password":"quuaJ7uk"},"district":"4fd43cc56d11340000000005","dob":"7/13/2001","ell_status":"N","email":"m.kyle@example.com","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.284Z","location":{"zip":"10309"},"name":{"first":"Kyle","middle":"D","last":"Mohr"},"race":"Two
457
- or More Races","school":"530e595026403103360ff9ff","sis_id":"443841431","state_id":"888501124","student_number":"443841431","id":"530e5963049e75a9262d0220"},"uri":"/v1.1/students/530e5963049e75a9262d0220"},{"data":{"created":"2014-02-26T21:15:15.683Z","credentials":{"district_username":"myrnaw92","district_password":"si7fuD3oh"},"district":"4fd43cc56d11340000000005","dob":"12/19/2006","ell_status":"Y","email":"w.myrna@example.com","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.288Z","location":{"zip":"10007"},"name":{"first":"Myrna","middle":"J","last":"Wilkinson"},"race":"Black
458
- or African American","school":"530e595026403103360ff9fe","sis_id":"447837192","state_id":"100034975","student_number":"447837192","id":"530e5963049e75a9262d0225"},"uri":"/v1.1/students/530e5963049e75a9262d0225"},{"data":{"created":"2014-02-26T21:15:15.691Z","credentials":{"district_username":"sharons28","district_password":"uo2eoL3aiZ"},"district":"4fd43cc56d11340000000005","dob":"12/7/1995","ell_status":"Y","email":"s_sharon@example.net","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.293Z","location":{"zip":"10309"},"name":{"first":"Sharon","middle":"R","last":"Schamberger"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"449269728","state_id":"870415736","student_number":"449269728","id":"530e5963049e75a9262d0227"},"uri":"/v1.1/students/530e5963049e75a9262d0227"},{"data":{"created":"2014-02-26T21:15:15.696Z","credentials":{"district_username":"christineh14","district_password":"aeWaib2ahs6"},"district":"4fd43cc56d11340000000005","dob":"11/13/1999","ell_status":"N","email":"christine.h@example.com","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.297Z","location":{"zip":"10466"},"name":{"first":"Christine","middle":"K","last":"Hoppe"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"450147614","state_id":"823859002","student_number":"450147614","id":"530e5963049e75a9262d0228"},"uri":"/v1.1/students/530e5963049e75a9262d0228"}],"links":[{"rel":"self","uri":"/v1.1/students?starting_after=530e5962049e75a9262d0160"},{"rel":"prev","uri":"/v1.1/students?ending_before=530e5962049e75a9262d0161"},{"rel":"next","uri":"/v1.1/students?starting_after=530e5963049e75a9262d0228"}]}'
459
- http_version:
460
- recorded_at: Sat, 13 Sep 2014 00:03:50 GMT
461
- - request:
462
- method: get
463
- uri: https://api.clever.com//v1.1/students?starting_after=530e5963049e75a9262d0228
464
- body:
465
- encoding: US-ASCII
466
- string: ''
467
- headers:
468
- Accept:
469
- - ! '*/*; q=0.5, application/xml'
470
- Accept-Encoding:
471
- - gzip, deflate
472
- Authorization:
473
- - Bearer DEMO_TOKEN
474
- User-Agent:
475
- - Ruby
476
- response:
477
- status:
478
- code: 200
479
- message: OK
480
- headers:
481
- Access-Control-Allow-Headers:
482
- - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
483
- Access-Control-Allow-Methods:
484
- - GET,PATCH,POST,DELETE
485
- Access-Control-Allow-Origin:
486
- - ! '*'
487
- Content-Type:
488
- - application/json; charset=utf-8
489
- Date:
490
- - Sat, 13 Sep 2014 00:03:51 GMT
491
- Etag:
492
- - ! '"1170102698"'
493
- Server:
494
- - nginx/1.4.7
495
- X-Powered-By:
496
- - Express
497
- Content-Length:
498
- - '66323'
499
- Connection:
500
- - keep-alive
501
- body:
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
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
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
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
507
- or African American","school":"530e595026403103360ff9fd","sis_id":"453398022","state_id":"574279012","student_number":"453398022","id":"530e5963049e75a9262d022c"},"uri":"/v1.1/students/530e5963049e75a9262d022c"},{"data":{"created":"2014-02-26T21:15:15.729Z","credentials":{"district_username":"jamesr44","district_password":"voowoa4S"},"district":"4fd43cc56d11340000000005","dob":"6/11/2000","ell_status":"Y","email":"james.r@example.net","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.315Z","location":{"zip":"11414"},"name":{"first":"James","middle":"A","last":"Reynolds"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"453871344","state_id":"967326911","student_number":"453871344","id":"530e5963049e75a9262d022d"},"uri":"/v1.1/students/530e5963049e75a9262d022d"},{"data":{"created":"2014-02-26T21:15:15.735Z","credentials":{"district_username":"rosaliep28","district_password":"neegh2dohYee"},"district":"4fd43cc56d11340000000005","dob":"6/3/1999","ell_status":"Y","email":"rosalie_p@example.org","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.319Z","location":{"zip":"10023"},"name":{"first":"Rosalie","middle":"J","last":"Predovic"},"race":"Black
508
- or African American","school":"530e595026403103360ff9ff","sis_id":"454620728","state_id":"979518815","student_number":"454620728","id":"530e5963049e75a9262d022e"},"uri":"/v1.1/students/530e5963049e75a9262d022e"},{"data":{"created":"2014-02-26T21:15:15.741Z","credentials":{"district_username":"morgand98","district_password":"Ohpaew2ohth"},"district":"4fd43cc56d11340000000005","dob":"12/5/1998","ell_status":"N","email":"morgan.d@example.com","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.322Z","location":{"zip":"11102"},"name":{"first":"Morgan","middle":"T","last":"Durgan"},"race":"Two
509
- or More Races","school":"530e595026403103360ff9fd","sis_id":"456945798","state_id":"867648901","student_number":"456945798","id":"530e5963049e75a9262d022f"},"uri":"/v1.1/students/530e5963049e75a9262d022f"},{"data":{"created":"2014-02-26T21:15:15.752Z","credentials":{"district_username":"davids36","district_password":"Ia0jei3ahcie"},"district":"4fd43cc56d11340000000005","dob":"9/2/2004","ell_status":"Y","email":"david_s@example.net","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.327Z","location":{"zip":"11422"},"name":{"first":"David","middle":"H","last":"Schiller"},"race":"Two
510
- or More Races","school":"530e595026403103360ff9fe","sis_id":"457582536","state_id":"224534842","student_number":"457582536","id":"530e5963049e75a9262d0230"},"uri":"/v1.1/students/530e5963049e75a9262d0230"},{"data":{"created":"2014-02-26T21:15:15.756Z","credentials":{"district_username":"susang63","district_password":"naech1Iejaqu"},"district":"4fd43cc56d11340000000005","dob":"3/30/1998","ell_status":"Y","email":"susan.g@example.com","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.331Z","location":{"zip":"10474"},"name":{"first":"Susan","middle":"T","last":"Grady"},"race":"Two
511
- or More Races","school":"530e595026403103360ff9fd","sis_id":"457984563","state_id":"347573046","student_number":"457984563","id":"530e5963049e75a9262d0231"},"uri":"/v1.1/students/530e5963049e75a9262d0231"},{"data":{"created":"2014-02-26T21:15:15.761Z","credentials":{"district_username":"arthurs20","district_password":"Kai9yaiquoh"},"district":"4fd43cc56d11340000000005","dob":"11/20/1995","ell_status":"N","email":"arthur_s@example.org","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.334Z","location":{"zip":"10468"},"name":{"first":"Arthur","middle":"A","last":"Stanton"},"race":"Black
512
- or African American","school":"530e595026403103360ff9fd","sis_id":"459441120","state_id":"795888332","student_number":"459441120","id":"530e5963049e75a9262d0232"},"uri":"/v1.1/students/530e5963049e75a9262d0232"},{"data":{"created":"2014-02-26T21:15:15.766Z","credentials":{"district_username":"sherrim67","district_password":"Eiroa9jah7ch"},"district":"4fd43cc56d11340000000005","dob":"2/13/2000","ell_status":"N","email":"m.sherri@example.net","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.338Z","location":{"zip":"11105"},"name":{"first":"Sherri","middle":"K","last":"Muller"},"race":"Black
513
- or African American","school":"530e595026403103360ff9ff","sis_id":"459621967","state_id":"785694298","student_number":"459621967","id":"530e5963049e75a9262d0233"},"uri":"/v1.1/students/530e5963049e75a9262d0233"},{"data":{"created":"2014-02-26T21:15:15.772Z","credentials":{"district_username":"paulm15","district_password":"IeGo3yiL"},"district":"4fd43cc56d11340000000005","dob":"5/14/2000","ell_status":"N","email":"m.paul@example.org","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.343Z","location":{"zip":"11228"},"name":{"first":"Paul","middle":"E","last":"Morissette"},"race":"Black
514
- or African American","school":"530e595026403103360ff9ff","sis_id":"459786515","state_id":"753354221","student_number":"459786515","id":"530e5963049e75a9262d0234"},"uri":"/v1.1/students/530e5963049e75a9262d0234"},{"data":{"created":"2014-02-26T21:15:15.777Z","credentials":{"district_username":"christopherb74","district_password":"IeDe4Vut4u"},"district":"4fd43cc56d11340000000005","dob":"6/2/2005","ell_status":"N","email":"christopher.b@example.com","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.347Z","location":{"zip":"11419"},"name":{"first":"Christopher","middle":"I","last":"Bahringer"},"race":"American
515
- Indian","school":"530e595026403103360ff9fe","sis_id":"461504974","state_id":"777449228","student_number":"461504974","id":"530e5963049e75a9262d0235"},"uri":"/v1.1/students/530e5963049e75a9262d0235"},{"data":{"created":"2014-02-26T21:15:15.784Z","credentials":{"district_username":"azzieb43","district_password":"eingaH3loh3"},"district":"4fd43cc56d11340000000005","dob":"1/2/2005","ell_status":"Y","email":"azzie.b@example.net","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.349Z","location":{"zip":"11205"},"name":{"first":"Azzie","middle":"E","last":"Brekke"},"race":"Black
516
- or African American","school":"530e595026403103360ff9fe","sis_id":"461583743","state_id":"734873821","student_number":"461583743","id":"530e5963049e75a9262d0237"},"uri":"/v1.1/students/530e5963049e75a9262d0237"},{"data":{"created":"2014-02-26T21:15:15.796Z","credentials":{"district_username":"sharonn83","district_password":"je3aeh1shi6Oof"},"district":"4fd43cc56d11340000000005","dob":"9/19/2000","ell_status":"Y","email":"n.sharon@example.org","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.353Z","location":{"zip":"11414"},"name":{"first":"Sharon","middle":"C","last":"Nolan"},"race":"Two
517
- or More Races","school":"530e595026403103360ff9ff","sis_id":"462277183","state_id":"467001596","student_number":"462277183","id":"530e5963049e75a9262d023a"},"uri":"/v1.1/students/530e5963049e75a9262d023a"},{"data":{"created":"2014-02-26T21:15:15.805Z","credentials":{"district_username":"kendrao33","district_password":"gee1Shoh"},"district":"4fd43cc56d11340000000005","dob":"6/21/2005","ell_status":"N","email":"o_kendra@example.com","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.358Z","location":{"zip":"11373"},"name":{"first":"Kendra","middle":"G","last":"Ondricka"},"race":"Black
518
- or African American","school":"530e595026403103360ff9fe","sis_id":"462843233","state_id":"807006411","student_number":"462843233","id":"530e5963049e75a9262d023d"},"uri":"/v1.1/students/530e5963049e75a9262d023d"},{"data":{"created":"2014-02-26T21:15:15.812Z","credentials":{"district_username":"hassieb09","district_password":"peinu6Nei"},"district":"4fd43cc56d11340000000005","dob":"11/8/1997","ell_status":"N","email":"hassie_b@example.net","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.362Z","location":{"zip":"11357"},"name":{"first":"Hassie","middle":"R","last":"Blanda"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"464347209","state_id":"244023941","student_number":"464347209","id":"530e5963049e75a9262d0240"},"uri":"/v1.1/students/530e5963049e75a9262d0240"},{"data":{"created":"2014-02-26T21:15:15.835Z","credentials":{"district_username":"samuelm75","district_password":"zeiV6doh8o"},"district":"4fd43cc56d11340000000005","dob":"6/25/1996","ell_status":"N","email":"samuel.m@example.org","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.365Z","location":{"zip":"10001"},"name":{"first":"Samuel","middle":"E","last":"Metz"},"race":"Black
519
- or African American","school":"530e595026403103360ff9fd","sis_id":"465337675","state_id":"750373182","student_number":"465337675","id":"530e5963049e75a9262d0243"},"uri":"/v1.1/students/530e5963049e75a9262d0243"},{"data":{"created":"2014-02-26T21:15:15.865Z","credentials":{"district_username":"jamesk15","district_password":"ioX5eebip"},"district":"4fd43cc56d11340000000005","dob":"10/4/1995","ell_status":"N","email":"k_james@example.com","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.368Z","location":{"zip":"10305"},"name":{"first":"James","middle":"S","last":"Kautzer"},"race":"Two
520
- or More Races","school":"530e595026403103360ff9fd","sis_id":"467685815","state_id":"737181058","student_number":"467685815","id":"530e5963049e75a9262d024a"},"uri":"/v1.1/students/530e5963049e75a9262d024a"},{"data":{"created":"2014-02-26T21:15:15.872Z","credentials":{"district_username":"yolandat06","district_password":"Ton7Vo1Ufoe"},"district":"4fd43cc56d11340000000005","dob":"6/1/1996","ell_status":"Y","email":"t_yolanda@example.net","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.374Z","location":{"zip":"10029"},"name":{"first":"Yolanda","middle":"J","last":"Tillman"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"468159006","state_id":"676222542","student_number":"468159006","id":"530e5963049e75a9262d024c"},"uri":"/v1.1/students/530e5963049e75a9262d024c"},{"data":{"created":"2014-02-26T21:15:15.901Z","credentials":{"district_username":"idaw46","district_password":"eig5ieThohph"},"district":"4fd43cc56d11340000000005","dob":"4/23/2005","ell_status":"N","email":"ida.w@example.net","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.379Z","location":{"zip":"10307"},"name":{"first":"Ida","middle":"K","last":"Wunsch"},"race":"Black
521
- or African American","school":"530e595026403103360ff9fe","sis_id":"471070046","state_id":"467631848","student_number":"471070046","id":"530e5963049e75a9262d0251"},"uri":"/v1.1/students/530e5963049e75a9262d0251"},{"data":{"created":"2014-02-26T21:15:15.907Z","credentials":{"district_username":"alvinr92","district_password":"thooCho7ie"},"district":"4fd43cc56d11340000000005","dob":"5/24/1999","ell_status":"N","email":"r_alvin@example.com","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.381Z","location":{"zip":"10021"},"name":{"first":"Alvin","middle":"A","last":"Rau"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"471210292","state_id":"347877592","student_number":"471210292","id":"530e5963049e75a9262d0252"},"uri":"/v1.1/students/530e5963049e75a9262d0252"},{"data":{"created":"2014-02-26T21:15:15.914Z","credentials":{"district_username":"reginac63","district_password":"Vaeye8quo0z"},"district":"4fd43cc56d11340000000005","dob":"1/13/1997","ell_status":"N","email":"regina_c@example.net","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.386Z","location":{"zip":"10024"},"name":{"first":"Regina","middle":"K","last":"Cummings"},"race":"American
522
- Indian","school":"530e595026403103360ff9fd","sis_id":"471723663","state_id":"385981177","student_number":"471723663","id":"530e5963049e75a9262d0253"},"uri":"/v1.1/students/530e5963049e75a9262d0253"},{"data":{"created":"2014-02-26T21:15:15.921Z","credentials":{"district_username":"marks47","district_password":"ohpi7LieNg"},"district":"4fd43cc56d11340000000005","dob":"1/11/1999","ell_status":"Y","email":"mark.s@example.com","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.391Z","location":{"zip":"11217"},"name":{"first":"Mark","middle":"E","last":"Smitham"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"472593647","state_id":"132848926","student_number":"472593647","id":"530e5963049e75a9262d0254"},"uri":"/v1.1/students/530e5963049e75a9262d0254"},{"data":{"created":"2014-02-26T21:15:15.947Z","credentials":{"district_username":"christinaa62","district_password":"ciu7Beixoo"},"district":"4fd43cc56d11340000000005","dob":"5/12/1996","ell_status":"N","email":"a_christina@example.com","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.395Z","location":{"zip":"11004"},"name":{"first":"Christina","middle":"C","last":"Ankunding"},"race":"Black
523
- or African American","school":"530e595026403103360ff9fd","sis_id":"475766262","state_id":"489246816","student_number":"475766262","id":"530e5963049e75a9262d0255"},"uri":"/v1.1/students/530e5963049e75a9262d0255"},{"data":{"created":"2014-02-26T21:15:15.955Z","credentials":{"district_username":"alberto25","district_password":"ohthie7Ei"},"district":"4fd43cc56d11340000000005","dob":"7/27/2005","ell_status":"N","email":"o.albert@example.org","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.398Z","location":{"zip":"11414"},"name":{"first":"Albert","middle":"J","last":"O''Kon"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"476287125","state_id":"383727012","student_number":"476287125","id":"530e5963049e75a9262d0256"},"uri":"/v1.1/students/530e5963049e75a9262d0256"},{"data":{"created":"2014-02-26T21:15:15.970Z","credentials":{"district_username":"tylerf31","district_password":"aeXaeBos8ie"},"district":"4fd43cc56d11340000000005","dob":"5/19/1996","ell_status":"N","email":"f.tyler@example.net","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.401Z","location":{"zip":"10455"},"name":{"first":"Tyler","middle":"C","last":"Ferry"},"race":"Two
524
- or More Races","school":"530e595026403103360ff9fd","sis_id":"476760331","state_id":"990512865","student_number":"476760331","id":"530e5963049e75a9262d0259"},"uri":"/v1.1/students/530e5963049e75a9262d0259"},{"data":{"created":"2014-02-26T21:15:15.980Z","credentials":{"district_username":"dorothye56","district_password":"Gu7Aiza0Od"},"district":"4fd43cc56d11340000000005","dob":"9/13/2006","ell_status":"Y","email":"e_dorothy@example.net","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.407Z","location":{"zip":"11370"},"name":{"first":"Dorothy","middle":"R","last":"Ernser"},"race":"Two
525
- or More Races","school":"530e595026403103360ff9fe","sis_id":"477104956","state_id":"589678510","student_number":"477104956","id":"530e5963049e75a9262d025c"},"uri":"/v1.1/students/530e5963049e75a9262d025c"},{"data":{"created":"2014-02-26T21:15:15.989Z","credentials":{"district_username":"rickl17","district_password":"OhChai0aequ"},"district":"4fd43cc56d11340000000005","dob":"7/30/2001","ell_status":"N","email":"l.rick@example.net","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.410Z","location":{"zip":"10128"},"name":{"first":"Rick","middle":"G","last":"Littel"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"477159017","state_id":"711341691","student_number":"477159017","id":"530e5963049e75a9262d025e"},"uri":"/v1.1/students/530e5963049e75a9262d025e"},{"data":{"created":"2014-02-26T21:15:15.995Z","credentials":{"district_username":"jodyz31","district_password":"pu8Quei4eeN"},"district":"4fd43cc56d11340000000005","dob":"11/24/2001","ell_status":"N","email":"jody_z@example.com","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.413Z","location":{"zip":"11412"},"name":{"first":"Jody","middle":"M","last":"Zulauf"},"race":"American
526
- Indian","school":"530e595026403103360ff9ff","sis_id":"477945031","state_id":"629540476","student_number":"477945031","id":"530e5963049e75a9262d0260"},"uri":"/v1.1/students/530e5963049e75a9262d0260"},{"data":{"created":"2014-02-26T21:15:16.004Z","credentials":{"district_username":"morgank68","district_password":"ooxap0ohBor"},"district":"4fd43cc56d11340000000005","dob":"9/19/1997","ell_status":"N","email":"k_morgan@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.417Z","location":{"zip":"10452"},"name":{"first":"Morgan","middle":"B","last":"Koss"},"race":"Black
527
- or African American","school":"530e595026403103360ff9fd","sis_id":"477960068","state_id":"479239255","student_number":"477960068","id":"530e5964049e75a9262d0262"},"uri":"/v1.1/students/530e5964049e75a9262d0262"},{"data":{"created":"2014-02-26T21:15:16.019Z","credentials":{"district_username":"charless77","district_password":"Loh0iu8dequ"},"district":"4fd43cc56d11340000000005","dob":"10/31/2001","ell_status":"Y","email":"charles.s@example.com","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.422Z","location":{"zip":"10280"},"name":{"first":"Charles","middle":"R","last":"Swift"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"479428877","state_id":"211683630","student_number":"479428877","id":"530e5964049e75a9262d0266"},"uri":"/v1.1/students/530e5964049e75a9262d0266"},{"data":{"created":"2014-02-26T21:15:16.030Z","credentials":{"district_username":"matthewr76","district_password":"vip5Hi3aeD"},"district":"4fd43cc56d11340000000005","dob":"4/12/2000","ell_status":"Y","email":"r_matthew@example.com","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.426Z","location":{"zip":"11377"},"name":{"first":"Matthew","middle":"E","last":"Rolfson"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"480080176","state_id":"144760855","student_number":"480080176","id":"530e5964049e75a9262d0269"},"uri":"/v1.1/students/530e5964049e75a9262d0269"},{"data":{"created":"2014-02-26T21:15:16.042Z","credentials":{"district_username":"philipw29","district_password":"ooVee1ey"},"district":"4fd43cc56d11340000000005","dob":"8/7/1997","ell_status":"N","email":"philip_w@example.org","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.428Z","location":{"zip":"10460"},"name":{"first":"Philip","middle":"E","last":"Welch"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"480435029","state_id":"742065364","student_number":"480435029","id":"530e5964049e75a9262d026c"},"uri":"/v1.1/students/530e5964049e75a9262d026c"},{"data":{"created":"2014-02-26T21:15:16.059Z","credentials":{"district_username":"michaelk55","district_password":"me9iekahk8Ao"},"district":"4fd43cc56d11340000000005","dob":"12/4/2004","ell_status":"Y","email":"k.michael@example.com","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.432Z","location":{"zip":"10460"},"name":{"first":"Michael","middle":"N","last":"Krajcik"},"race":"Black
528
- or African American","school":"530e595026403103360ff9fe","sis_id":"482184555","state_id":"208149448","student_number":"482184555","id":"530e5964049e75a9262d0270"},"uri":"/v1.1/students/530e5964049e75a9262d0270"},{"data":{"created":"2014-02-26T21:15:16.075Z","credentials":{"district_username":"johnj84","district_password":"Xah8eeg5oh"},"district":"4fd43cc56d11340000000005","dob":"4/3/2005","ell_status":"N","email":"j_john@example.net","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.437Z","location":{"zip":"10461"},"name":{"first":"John","middle":"E","last":"Jewess"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"484440084","state_id":"540282183","student_number":"484440084","id":"530e5964049e75a9262d0274"},"uri":"/v1.1/students/530e5964049e75a9262d0274"},{"data":{"created":"2014-02-26T21:15:16.081Z","credentials":{"district_username":"annieg21","district_password":"eja8Dahph"},"district":"4fd43cc56d11340000000005","dob":"2/3/2000","ell_status":"Y","email":"g_annie@example.com","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.449Z","location":{"zip":"11358"},"name":{"first":"Annie","middle":"N","last":"Glover"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"485261721","state_id":"177713924","student_number":"485261721","id":"530e5964049e75a9262d0275"},"uri":"/v1.1/students/530e5964049e75a9262d0275"},{"data":{"created":"2014-02-26T21:15:16.102Z","credentials":{"district_username":"ronaldk13","district_password":"Egaengah8Ne"},"district":"4fd43cc56d11340000000005","dob":"11/20/1998","ell_status":"Y","email":"k_ronald@example.org","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.452Z","location":{"zip":"11379"},"name":{"first":"Ronald","middle":"K","last":"Kessler"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"485665813","state_id":"162412047","student_number":"485665813","id":"530e5964049e75a9262d0276"},"uri":"/v1.1/students/530e5964049e75a9262d0276"},{"data":{"created":"2014-02-26T21:15:16.109Z","credentials":{"district_username":"jenniferf33","district_password":"ohmee8aeX2oh"},"district":"4fd43cc56d11340000000005","dob":"8/21/2002","ell_status":"N","email":"f.jennifer@example.com","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.455Z","location":{"zip":"11104"},"name":{"first":"Jennifer","middle":"G","last":"Feil"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"485759733","state_id":"306120484","student_number":"485759733","id":"530e5964049e75a9262d0277"},"uri":"/v1.1/students/530e5964049e75a9262d0277"},{"data":{"created":"2014-02-26T21:15:16.117Z","credentials":{"district_username":"priscillas31","district_password":"sei2uPiengah"},"district":"4fd43cc56d11340000000005","dob":"3/15/1995","ell_status":"N","email":"priscilla_s@example.com","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.461Z","location":{"zip":"10452"},"name":{"first":"Priscilla","middle":"K","last":"Schaden"},"race":"Two
529
- or More Races","school":"530e595026403103360ff9fd","sis_id":"486839131","state_id":"580349440","student_number":"486839131","id":"530e5964049e75a9262d0278"},"uri":"/v1.1/students/530e5964049e75a9262d0278"},{"data":{"created":"2014-02-26T21:15:16.127Z","credentials":{"district_username":"lisas88","district_password":"nie0Yahj0sh"},"district":"4fd43cc56d11340000000005","dob":"6/7/2002","ell_status":"N","email":"s_lisa@example.com","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.464Z","location":{"zip":"11233"},"name":{"first":"Lisa","middle":"S","last":"Schumm"},"race":"Black
530
- or African American","school":"530e595026403103360ff9fe","sis_id":"488101088","state_id":"850565227","student_number":"488101088","id":"530e5964049e75a9262d0279"},"uri":"/v1.1/students/530e5964049e75a9262d0279"},{"data":{"created":"2014-02-26T21:15:16.143Z","credentials":{"district_username":"clintonl56","district_password":"iu6nohk1Op7ei"},"district":"4fd43cc56d11340000000005","dob":"6/12/2007","ell_status":"N","email":"clinton_l@example.com","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.467Z","location":{"zip":"10475"},"name":{"first":"Clinton","middle":"L","last":"Langosh"},"race":"Black
531
- or African American","school":"530e595026403103360ff9fe","sis_id":"492861856","state_id":"157360696","student_number":"492861856","id":"530e5964049e75a9262d027a"},"uri":"/v1.1/students/530e5964049e75a9262d027a"},{"data":{"created":"2014-02-26T21:15:16.150Z","credentials":{"district_username":"theronc59","district_password":"eingeob1Th"},"district":"4fd43cc56d11340000000005","dob":"10/9/2005","ell_status":"N","email":"theron_c@example.org","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.471Z","location":{"zip":"11367"},"name":{"first":"Theron","middle":"T","last":"Casper"},"race":"Two
532
- or More Races","school":"530e595026403103360ff9fe","sis_id":"494000859","state_id":"745865681","student_number":"494000859","id":"530e5964049e75a9262d027b"},"uri":"/v1.1/students/530e5964049e75a9262d027b"},{"data":{"created":"2014-02-26T21:15:16.161Z","credentials":{"district_username":"grantn92","district_password":"quu3Thipham"},"district":"4fd43cc56d11340000000005","dob":"12/5/2006","ell_status":"N","email":"grant_n@example.com","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.476Z","location":{"zip":"10310"},"name":{"first":"Grant","middle":"M","last":"Nader"},"race":"Black
533
- or African American","school":"530e595026403103360ff9fe","sis_id":"495599892","state_id":"361275922","student_number":"495599892","id":"530e5964049e75a9262d027c"},"uri":"/v1.1/students/530e5964049e75a9262d027c"},{"data":{"created":"2014-02-26T21:15:16.168Z","credentials":{"district_username":"geraldineq86","district_password":"ohJ5thoht6"},"district":"4fd43cc56d11340000000005","dob":"7/5/2001","ell_status":"N","email":"geraldine.q@example.org","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.480Z","location":{"zip":"10021"},"name":{"first":"Geraldine","middle":"T","last":"Quitzon"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"495635486","state_id":"602261642","student_number":"495635486","id":"530e5964049e75a9262d027d"},"uri":"/v1.1/students/530e5964049e75a9262d027d"},{"data":{"created":"2014-02-26T21:15:16.175Z","credentials":{"district_username":"markh72","district_password":"ohpi7LieNg"},"district":"4fd43cc56d11340000000005","dob":"7/4/2007","ell_status":"N","email":"h.mark@example.org","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.482Z","location":{"zip":"11414"},"name":{"first":"Mark","middle":"E","last":"Hackett"},"race":"Black
534
- or African American","school":"530e595026403103360ff9fe","sis_id":"495684672","state_id":"370940588","student_number":"495684672","id":"530e5964049e75a9262d027e"},"uri":"/v1.1/students/530e5964049e75a9262d027e"},{"data":{"created":"2014-02-26T21:15:16.180Z","credentials":{"district_username":"charlenes15","district_password":"Shewee1Thush"},"district":"4fd43cc56d11340000000005","dob":"11/25/1995","ell_status":"Y","email":"charlene.s@example.org","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.486Z","location":{"zip":"11429"},"name":{"first":"Charlene","middle":"R","last":"Stracke"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"496720315","state_id":"182325424","student_number":"496720315","id":"530e5964049e75a9262d027f"},"uri":"/v1.1/students/530e5964049e75a9262d027f"},{"data":{"created":"2014-02-26T21:15:16.185Z","credentials":{"district_username":"williams21","district_password":"weiF0AhM"},"district":"4fd43cc56d11340000000005","dob":"7/2/2005","ell_status":"N","email":"william.s@example.com","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.491Z","location":{"zip":"10473"},"name":{"first":"William","middle":"R","last":"Streich"},"race":"Black
535
- or African American","school":"530e595026403103360ff9fe","sis_id":"497063121","state_id":"572625208","student_number":"497063121","id":"530e5964049e75a9262d0280"},"uri":"/v1.1/students/530e5964049e75a9262d0280"},{"data":{"created":"2014-02-26T21:15:16.189Z","credentials":{"district_username":"patriciau09","district_password":"xeexie9Ah"},"district":"4fd43cc56d11340000000005","dob":"12/8/1996","ell_status":"N","email":"patricia.u@example.org","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.495Z","location":{"zip":"11233"},"name":{"first":"Patricia","middle":"D","last":"Upton"},"race":"Black
536
- or African American","school":"530e595026403103360ff9fd","sis_id":"497546809","state_id":"248483929","student_number":"497546809","id":"530e5964049e75a9262d0281"},"uri":"/v1.1/students/530e5964049e75a9262d0281"},{"data":{"created":"2014-02-26T21:15:16.195Z","credentials":{"district_username":"franklind35","district_password":"Otu6Geinah"},"district":"4fd43cc56d11340000000005","dob":"8/2/1997","ell_status":"N","email":"d_franklin@example.com","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.498Z","location":{"zip":"11693"},"name":{"first":"Franklin","middle":"D","last":"Daugherty"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"497595735","state_id":"904175015","student_number":"497595735","id":"530e5964049e75a9262d0282"},"uri":"/v1.1/students/530e5964049e75a9262d0282"},{"data":{"created":"2014-02-26T21:15:16.205Z","credentials":{"district_username":"josephj58","district_password":"Ahseigae3"},"district":"4fd43cc56d11340000000005","dob":"12/15/1998","ell_status":"N","email":"j_joseph@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.502Z","location":{"zip":"10033"},"name":{"first":"Joseph","middle":"C","last":"Jerde"},"race":"American
537
- Indian","school":"530e595026403103360ff9fd","sis_id":"499024258","state_id":"218641560","student_number":"499024258","id":"530e5964049e75a9262d0284"},"uri":"/v1.1/students/530e5964049e75a9262d0284"},{"data":{"created":"2014-02-26T21:15:16.213Z","credentials":{"district_username":"ericr51","district_password":"eeXohb9fee"},"district":"4fd43cc56d11340000000005","dob":"2/23/1997","ell_status":"N","email":"eric_r@example.org","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.507Z","location":{"zip":"11354"},"name":{"first":"Eric","middle":"A","last":"Rosenbaum"},"race":"Black
538
- or African American","school":"530e595026403103360ff9fd","sis_id":"499616051","state_id":"343682724","student_number":"499616051","id":"530e5964049e75a9262d0286"},"uri":"/v1.1/students/530e5964049e75a9262d0286"},{"data":{"created":"2014-02-26T21:15:16.220Z","credentials":{"district_username":"robertb47","district_password":"Hoh0fooXees"},"district":"4fd43cc56d11340000000005","dob":"5/15/1997","ell_status":"N","email":"b_robert@example.com","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.510Z","location":{"zip":"11208"},"name":{"first":"Robert","middle":"P","last":"Bartell"},"race":"Black
539
- or African American","school":"530e595026403103360ff9fd","sis_id":"499813947","state_id":"642575026","student_number":"499813947","id":"530e5964049e75a9262d0288"},"uri":"/v1.1/students/530e5964049e75a9262d0288"},{"data":{"created":"2014-02-26T21:15:16.232Z","credentials":{"district_username":"jonahw13","district_password":"Jien0ut0Pi1"},"district":"4fd43cc56d11340000000005","dob":"3/27/2003","ell_status":"N","email":"w_jonah@example.com","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.513Z","location":{"zip":"10464"},"name":{"first":"Jonah","middle":"P","last":"Welch"},"race":"Two
540
- or More Races","school":"530e595026403103360ff9fe","sis_id":"500349013","state_id":"158188944","student_number":"500349013","id":"530e5964049e75a9262d028b"},"uri":"/v1.1/students/530e5964049e75a9262d028b"},{"data":{"created":"2014-02-26T21:15:16.242Z","credentials":{"district_username":"joyceg04","district_password":"kaim1tohHo"},"district":"4fd43cc56d11340000000005","dob":"4/21/1997","ell_status":"N","email":"g.joyce@example.org","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.517Z","location":{"zip":"10314"},"name":{"first":"Joyce","middle":"E","last":"Gulgowski"},"race":"Black
541
- or African American","school":"530e595026403103360ff9fd","sis_id":"501070804","state_id":"806565244","student_number":"501070804","id":"530e5964049e75a9262d028e"},"uri":"/v1.1/students/530e5964049e75a9262d028e"},{"data":{"created":"2014-02-26T21:15:16.255Z","credentials":{"district_username":"georgej19","district_password":"giekae7aiSh"},"district":"4fd43cc56d11340000000005","dob":"6/21/1999","ell_status":"N","email":"george.j@example.org","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.522Z","location":{"zip":"11201"},"name":{"first":"George","middle":"C","last":"Jacobs"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"501534019","state_id":"313433932","student_number":"501534019","id":"530e5964049e75a9262d0291"},"uri":"/v1.1/students/530e5964049e75a9262d0291"},{"data":{"created":"2014-02-26T21:15:16.268Z","credentials":{"district_username":"maryu71","district_password":"Aeja6ootuuz"},"district":"4fd43cc56d11340000000005","dob":"12/20/2007","ell_status":"Y","email":"u_mary@example.org","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.526Z","location":{"zip":"10466"},"name":{"first":"Mary","middle":"J","last":"Upton"},"race":"Black
542
- or African American","school":"530e595026403103360ff9fe","sis_id":"503016171","state_id":"666685439","student_number":"503016171","id":"530e5964049e75a9262d0295"},"uri":"/v1.1/students/530e5964049e75a9262d0295"},{"data":{"created":"2014-02-26T21:15:16.276Z","credentials":{"district_username":"lesliec12","district_password":"ri2haerooRu"},"district":"4fd43cc56d11340000000005","dob":"2/6/1997","ell_status":"Y","email":"leslie_c@example.com","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.528Z","location":{"zip":"10032"},"name":{"first":"Leslie","middle":"A","last":"Conroy"},"race":"American
543
- Indian","school":"530e595026403103360ff9fd","sis_id":"503056612","state_id":"635231467","student_number":"503056612","id":"530e5964049e75a9262d0297"},"uri":"/v1.1/students/530e5964049e75a9262d0297"},{"data":{"created":"2014-02-26T21:15:16.283Z","credentials":{"district_username":"thomass10","district_password":"aiquox8Ohth"},"district":"4fd43cc56d11340000000005","dob":"7/25/1998","ell_status":"Y","email":"thomas_s@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.533Z","location":{"zip":"11358"},"name":{"first":"Thomas","middle":"S","last":"Streich"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"503355910","state_id":"704588593","student_number":"503355910","id":"530e5964049e75a9262d0299"},"uri":"/v1.1/students/530e5964049e75a9262d0299"},{"data":{"created":"2014-02-26T21:15:16.290Z","credentials":{"district_username":"marcelinos47","district_password":"Phoofee5Oo"},"district":"4fd43cc56d11340000000005","dob":"3/24/2000","ell_status":"N","email":"s_marcelino@example.com","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.537Z","location":{"zip":"11211"},"name":{"first":"Marcelino","middle":"M","last":"Stark"},"race":"Black
544
- or African American","school":"530e595026403103360ff9ff","sis_id":"503724847","state_id":"952502982","student_number":"503724847","id":"530e5964049e75a9262d029b"},"uri":"/v1.1/students/530e5964049e75a9262d029b"},{"data":{"created":"2014-02-26T21:15:16.297Z","credentials":{"district_username":"margareth74","district_password":"AiGhei6zah1"},"district":"4fd43cc56d11340000000005","dob":"5/28/1996","ell_status":"N","email":"h.margaret@example.org","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.540Z","location":{"zip":"10012"},"name":{"first":"Margaret","middle":"J","last":"Harvey"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"503728474","state_id":"778630105","student_number":"503728474","id":"530e5964049e75a9262d029d"},"uri":"/v1.1/students/530e5964049e75a9262d029d"},{"data":{"created":"2014-02-26T21:15:16.306Z","credentials":{"district_username":"ruthm23","district_password":"iuChoo5Aiph"},"district":"4fd43cc56d11340000000005","dob":"10/2/2000","ell_status":"N","email":"m_ruth@example.org","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.544Z","location":{"zip":"11228"},"name":{"first":"Ruth","middle":"J","last":"Murazik"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"504745723","state_id":"517697683","student_number":"504745723","id":"530e5964049e75a9262d029f"},"uri":"/v1.1/students/530e5964049e75a9262d029f"},{"data":{"created":"2014-02-26T21:15:16.320Z","credentials":{"district_username":"patrickb63","district_password":"eiCoh5Ies"},"district":"4fd43cc56d11340000000005","dob":"10/11/1996","ell_status":"N","email":"b.patrick@example.com","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.548Z","location":{"zip":"10036"},"name":{"first":"Patrick","middle":"A","last":"Becker"},"race":"Black
545
- or African American","school":"530e595026403103360ff9fd","sis_id":"505665763","state_id":"972006643","student_number":"505665763","id":"530e5964049e75a9262d02a2"},"uri":"/v1.1/students/530e5964049e75a9262d02a2"},{"data":{"created":"2014-02-26T21:15:16.328Z","credentials":{"district_username":"christopherk00","district_password":"TeeSh8Ru"},"district":"4fd43cc56d11340000000005","dob":"4/18/2002","ell_status":"N","email":"k_christopher@example.net","frl_status":"Paid","gender":"M","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.551Z","location":{"zip":"11220"},"name":{"first":"Christopher","middle":"K","last":"Kirlin"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"506241000","state_id":"532802176","student_number":"506241000","id":"530e5964049e75a9262d02a4"},"uri":"/v1.1/students/530e5964049e75a9262d02a4"},{"data":{"created":"2014-02-26T21:15:16.335Z","credentials":{"district_username":"clarettac50","district_password":"Suokoh4thoh"},"district":"4fd43cc56d11340000000005","dob":"8/14/1996","ell_status":"N","email":"claretta_c@example.com","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.555Z","location":{"zip":"11222"},"name":{"first":"Claretta","middle":"C","last":"Corkery"},"race":"Two
546
- or More Races","school":"530e595026403103360ff9fd","sis_id":"507427650","state_id":"958466108","student_number":"507427650","id":"530e5964049e75a9262d02a5"},"uri":"/v1.1/students/530e5964049e75a9262d02a5"},{"data":{"created":"2014-02-26T21:15:16.341Z","credentials":{"district_username":"carltonb69","district_password":"aTheib4m"},"district":"4fd43cc56d11340000000005","dob":"5/23/2005","ell_status":"N","email":"carlton.b@example.net","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.559Z","location":{"zip":"10016"},"name":{"first":"Carlton","middle":"C","last":"Becker"},"race":"American
547
- Indian","school":"530e595026403103360ff9fe","sis_id":"507882469","state_id":"957247085","student_number":"507882469","id":"530e5964049e75a9262d02a6"},"uri":"/v1.1/students/530e5964049e75a9262d02a6"},{"data":{"created":"2014-02-26T21:15:16.347Z","credentials":{"district_username":"jonh90","district_password":"wo3jaiYu"},"district":"4fd43cc56d11340000000005","dob":"9/10/2007","ell_status":"Y","email":"jon_h@example.org","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.562Z","location":{"zip":"10307"},"name":{"first":"Jon","middle":"B","last":"Hintz"},"race":"American
548
- Indian","school":"530e595026403103360ff9fe","sis_id":"508115290","state_id":"971213200","student_number":"508115290","id":"530e5964049e75a9262d02a7"},"uri":"/v1.1/students/530e5964049e75a9262d02a7"},{"data":{"created":"2014-02-26T21:15:16.355Z","credentials":{"district_username":"lindaa12","district_password":"iay7iekish2F"},"district":"4fd43cc56d11340000000005","dob":"12/15/2007","ell_status":"Y","email":"linda.a@example.com","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.566Z","location":{"zip":"10001"},"name":{"first":"Linda","middle":"C","last":"Abernathy"},"race":"Two
549
- or More Races","school":"530e595026403103360ff9fe","sis_id":"508410312","state_id":"936575150","student_number":"508410312","id":"530e5964049e75a9262d02a8"},"uri":"/v1.1/students/530e5964049e75a9262d02a8"},{"data":{"created":"2014-02-26T21:15:16.363Z","credentials":{"district_username":"ethelr95","district_password":"oWieHeotee6"},"district":"4fd43cc56d11340000000005","dob":"12/1/1998","ell_status":"N","email":"r.ethel@example.com","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.570Z","location":{"zip":"11693"},"name":{"first":"Ethel","middle":"R","last":"Russel"},"race":"Two
550
- or More Races","school":"530e595026403103360ff9fd","sis_id":"509099395","state_id":"679060031","student_number":"509099395","id":"530e5964049e75a9262d02a9"},"uri":"/v1.1/students/530e5964049e75a9262d02a9"},{"data":{"created":"2014-02-26T21:15:16.383Z","credentials":{"district_username":"markg02","district_password":"Yiu4ohd7moh"},"district":"4fd43cc56d11340000000005","dob":"1/20/1997","ell_status":"Y","email":"mark_g@example.com","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.573Z","location":{"zip":"10005"},"name":{"first":"Mark","middle":"M","last":"Gutkowski"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"509899002","state_id":"529968971","student_number":"509899002","id":"530e5964049e75a9262d02aa"},"uri":"/v1.1/students/530e5964049e75a9262d02aa"},{"data":{"created":"2014-02-26T21:15:16.391Z","credentials":{"district_username":"julianned20","district_password":"AhB8leicah"},"district":"4fd43cc56d11340000000005","dob":"7/13/2007","ell_status":"N","email":"d.julianne@example.net","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.577Z","location":{"zip":"10005"},"name":{"first":"Julianne","middle":"C","last":"Dicki"},"race":"Two
551
- or More Races","school":"530e595026403103360ff9fe","sis_id":"510492620","state_id":"670848792","student_number":"510492620","id":"530e5964049e75a9262d02ab"},"uri":"/v1.1/students/530e5964049e75a9262d02ab"},{"data":{"created":"2014-02-26T21:15:16.400Z","credentials":{"district_username":"dorothyk69","district_password":"aa9ieC3ooboh"},"district":"4fd43cc56d11340000000005","dob":"4/17/1995","ell_status":"N","email":"dorothy_k@example.net","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.581Z","location":{"zip":"11360"},"name":{"first":"Dorothy","middle":"W","last":"Kihn"},"race":"American
552
- Indian","school":"530e595026403103360ff9fd","sis_id":"511724869","state_id":"709931831","student_number":"511724869","id":"530e5964049e75a9262d02ac"},"uri":"/v1.1/students/530e5964049e75a9262d02ac"},{"data":{"created":"2014-02-26T21:15:16.406Z","credentials":{"district_username":"wmp61","district_password":"iu4ohk5YahH"},"district":"4fd43cc56d11340000000005","dob":"11/5/1996","ell_status":"N","email":"wm.p@example.com","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.585Z","location":{"zip":"11360"},"name":{"first":"Wm","middle":"A","last":"Predovic"},"race":"Two
553
- or More Races","school":"530e595026403103360ff9fd","sis_id":"512198961","state_id":"352345968","student_number":"512198961","id":"530e5964049e75a9262d02ad"},"uri":"/v1.1/students/530e5964049e75a9262d02ad"},{"data":{"created":"2014-02-26T21:15:16.412Z","credentials":{"district_username":"anno98","district_password":"yo0Ui8af9"},"district":"4fd43cc56d11340000000005","dob":"2/20/2007","ell_status":"Y","email":"ann_o@example.com","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.588Z","location":{"zip":"11370"},"name":{"first":"Ann","middle":"E","last":"Oberbrunner"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"513062298","state_id":"140050536","student_number":"513062298","id":"530e5964049e75a9262d02ae"},"uri":"/v1.1/students/530e5964049e75a9262d02ae"},{"data":{"created":"2014-02-26T21:15:16.421Z","credentials":{"district_username":"ramond42","district_password":"Noav4hei"},"district":"4fd43cc56d11340000000005","dob":"2/6/2006","ell_status":"Y","email":"d_ramon@example.org","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.592Z","location":{"zip":"11377"},"name":{"first":"Ramon","middle":"L","last":"Dibbert"},"race":"Black
554
- or African American","school":"530e595026403103360ff9fe","sis_id":"513203042","state_id":"711362169","student_number":"513203042","id":"530e5964049e75a9262d02af"},"uri":"/v1.1/students/530e5964049e75a9262d02af"},{"data":{"created":"2014-02-26T21:15:16.426Z","credentials":{"district_username":"barbarao34","district_password":"Pee8yufie"},"district":"4fd43cc56d11340000000005","dob":"7/5/2004","ell_status":"N","email":"o.barbara@example.com","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.596Z","location":{"zip":"11363"},"name":{"first":"Barbara","middle":"K","last":"Oberbrunner"},"race":"Black
555
- or African American","school":"530e595026403103360ff9fe","sis_id":"513492434","state_id":"456635326","student_number":"513492434","id":"530e5964049e75a9262d02b0"},"uri":"/v1.1/students/530e5964049e75a9262d02b0"},{"data":{"created":"2014-02-26T21:15:16.434Z","credentials":{"district_username":"adamc87","district_password":"Aerae0Vu"},"district":"4fd43cc56d11340000000005","dob":"8/16/1996","ell_status":"N","email":"adam_c@example.org","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.646Z","location":{"zip":"10451"},"name":{"first":"Adam","middle":"M","last":"Cummerata"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"514604387","state_id":"662886560","student_number":"514604387","id":"530e5964049e75a9262d02b1"},"uri":"/v1.1/students/530e5964049e75a9262d02b1"},{"data":{"created":"2014-02-26T21:15:16.440Z","credentials":{"district_username":"maryj75","district_password":"Ohthieb2"},"district":"4fd43cc56d11340000000005","dob":"12/20/2001","ell_status":"N","email":"mary.j@example.com","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.647Z","location":{"zip":"11205"},"name":{"first":"Mary","middle":"L","last":"Jewess"},"race":"Two
556
- or More Races","school":"530e595026403103360ff9ff","sis_id":"515164675","state_id":"529826207","student_number":"515164675","id":"530e5964049e75a9262d02b2"},"uri":"/v1.1/students/530e5964049e75a9262d02b2"},{"data":{"created":"2014-02-26T21:15:16.452Z","credentials":{"district_username":"annat73","district_password":"Ieghee7d"},"district":"4fd43cc56d11340000000005","dob":"8/4/2001","ell_status":"N","email":"anna.t@example.net","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.648Z","location":{"zip":"10462"},"name":{"first":"Anna","middle":"C","last":"Torphy"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"515862273","state_id":"712820198","student_number":"515862273","id":"530e5964049e75a9262d02b3"},"uri":"/v1.1/students/530e5964049e75a9262d02b3"},{"data":{"created":"2014-02-26T21:15:16.464Z","credentials":{"district_username":"agness84","district_password":"kieL0mahCh"},"district":"4fd43cc56d11340000000005","dob":"3/10/2002","ell_status":"Y","email":"agnes_s@example.org","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.649Z","location":{"zip":"10462"},"name":{"first":"Agnes","middle":"S","last":"Sauer"},"race":"Black
557
- or African American","school":"530e595026403103360ff9fe","sis_id":"517673784","state_id":"113039364","student_number":"517673784","id":"530e5964049e75a9262d02b4"},"uri":"/v1.1/students/530e5964049e75a9262d02b4"},{"data":{"created":"2014-02-26T21:15:16.470Z","credentials":{"district_username":"randyb52","district_password":"Shohh6hoh"},"district":"4fd43cc56d11340000000005","dob":"10/30/1995","ell_status":"Y","email":"b_randy@example.org","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.650Z","location":{"zip":"11226"},"name":{"first":"Randy","middle":"D","last":"Blick"},"race":"Black
558
- or African American","school":"530e595026403103360ff9fd","sis_id":"518251452","state_id":"179980863","student_number":"518251452","id":"530e5964049e75a9262d02b5"},"uri":"/v1.1/students/530e5964049e75a9262d02b5"},{"data":{"created":"2014-02-26T21:15:16.484Z","credentials":{"district_username":"anthonyh09","district_password":"Zei3zeh2w"},"district":"4fd43cc56d11340000000005","dob":"10/12/1998","ell_status":"N","email":"anthony.h@example.org","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.651Z","location":{"zip":"11101"},"name":{"first":"Anthony","middle":"A","last":"Hintz"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"520470809","state_id":"626476978","student_number":"520470809","id":"530e5964049e75a9262d02b6"},"uri":"/v1.1/students/530e5964049e75a9262d02b6"},{"data":{"created":"2014-02-26T21:15:16.492Z","credentials":{"district_username":"paulf13","district_password":"Avu0Moh3Yia"},"district":"4fd43cc56d11340000000005","dob":"11/29/2001","ell_status":"N","email":"f_paul@example.com","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.652Z","location":{"zip":"11423"},"name":{"first":"Paul","middle":"A","last":"Fritsch"},"race":"Black
559
- or African American","school":"530e595026403103360ff9ff","sis_id":"521148613","state_id":"954293920","student_number":"521148613","id":"530e5964049e75a9262d02b8"},"uri":"/v1.1/students/530e5964049e75a9262d02b8"},{"data":{"created":"2014-02-26T21:15:16.509Z","credentials":{"district_username":"roser14","district_password":"Equei1ai"},"district":"4fd43cc56d11340000000005","dob":"1/2/1995","ell_status":"Y","email":"r.rose@example.org","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.653Z","location":{"zip":"11226"},"name":{"first":"Rose","middle":"J","last":"Rosenbaum"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"523837914","state_id":"751890670","student_number":"523837914","id":"530e5964049e75a9262d02bc"},"uri":"/v1.1/students/530e5964049e75a9262d02bc"},{"data":{"created":"2014-02-26T21:15:16.521Z","credentials":{"district_username":"robbyb36","district_password":"Mad9eiZee"},"district":"4fd43cc56d11340000000005","dob":"5/18/2000","ell_status":"N","email":"b.robby@example.org","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.654Z","location":{"zip":"11211"},"name":{"first":"Robby","middle":"J","last":"Brakus"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"524715236","state_id":"681406325","student_number":"524715236","id":"530e5964049e75a9262d02c0"},"uri":"/v1.1/students/530e5964049e75a9262d02c0"},{"data":{"created":"2014-02-26T21:15:16.536Z","credentials":{"district_username":"saml04","district_password":"gah3oePhap2"},"district":"4fd43cc56d11340000000005","dob":"11/1/1998","ell_status":"N","email":"sam_l@example.org","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.655Z","location":{"zip":"11420"},"name":{"first":"Sam","middle":"M","last":"Lemke"},"race":"Two
560
- or More Races","school":"530e595026403103360ff9fd","sis_id":"525449404","state_id":"803590512","student_number":"525449404","id":"530e5964049e75a9262d02c3"},"uri":"/v1.1/students/530e5964049e75a9262d02c3"},{"data":{"created":"2014-02-26T21:15:16.552Z","credentials":{"district_username":"jamesm02","district_password":"wahvuB5oh"},"district":"4fd43cc56d11340000000005","dob":"6/7/2006","ell_status":"N","email":"m_james@example.net","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.656Z","location":{"zip":"11354"},"name":{"first":"James","middle":"E","last":"Marks"},"race":"Black
561
- or African American","school":"530e595026403103360ff9fe","sis_id":"526083502","state_id":"871908378","student_number":"526083502","id":"530e5964049e75a9262d02c7"},"uri":"/v1.1/students/530e5964049e75a9262d02c7"},{"data":{"created":"2014-02-26T21:15:16.560Z","credentials":{"district_username":"stepheng21","district_password":"thahv3UB"},"district":"4fd43cc56d11340000000005","dob":"8/5/2003","ell_status":"N","email":"stephen_g@example.org","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.657Z","location":{"zip":"10014"},"name":{"first":"Stephen","middle":"K","last":"Gleichner"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"526565321","state_id":"432341567","student_number":"526565321","id":"530e5964049e75a9262d02c9"},"uri":"/v1.1/students/530e5964049e75a9262d02c9"},{"data":{"created":"2014-02-26T21:15:16.569Z","credentials":{"district_username":"barbaraj89","district_password":"xu6je8oTah"},"district":"4fd43cc56d11340000000005","dob":"7/2/1999","ell_status":"N","email":"j_barbara@example.org","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.659Z","location":{"zip":"11221"},"name":{"first":"Barbara","middle":"C","last":"Jacobs"},"race":"Black
562
- or African American","school":"530e595026403103360ff9ff","sis_id":"526702789","state_id":"583476072","student_number":"526702789","id":"530e5964049e75a9262d02cb"},"uri":"/v1.1/students/530e5964049e75a9262d02cb"},{"data":{"created":"2014-02-26T21:15:16.587Z","credentials":{"district_username":"dorothyg71","district_password":"aa9ieC3ooboh"},"district":"4fd43cc56d11340000000005","dob":"10/28/2004","ell_status":"Y","email":"dorothy_g@example.org","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.660Z","location":{"zip":"10013"},"name":{"first":"Dorothy","middle":"W","last":"Graham"},"race":"American
563
- Indian","school":"530e595026403103360ff9fe","sis_id":"527229371","state_id":"812482949","student_number":"527229371","id":"530e5964049e75a9262d02cf"},"uri":"/v1.1/students/530e5964049e75a9262d02cf"},{"data":{"created":"2014-02-26T21:15:16.612Z","credentials":{"district_username":"wena96","district_password":"kiephee6Va"},"district":"4fd43cc56d11340000000005","dob":"3/10/1998","ell_status":"Y","email":"wen.a@example.org","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.664Z","location":{"zip":"11215"},"name":{"first":"Wen","middle":"T","last":"Ankunding"},"race":"Black
564
- or African American","school":"530e595026403103360ff9fd","sis_id":"530262996","state_id":"595511637","student_number":"530262996","id":"530e5964049e75a9262d02d3"},"uri":"/v1.1/students/530e5964049e75a9262d02d3"},{"data":{"created":"2014-02-26T21:15:16.619Z","credentials":{"district_username":"wenw21","district_password":"kiephee6Va"},"district":"4fd43cc56d11340000000005","dob":"1/2/1995","ell_status":"Y","email":"w_wen@example.net","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.666Z","location":{"zip":"11214"},"name":{"first":"Wen","middle":"T","last":"Wuckert"},"race":"Two
565
- or More Races","school":"530e595026403103360ff9fd","sis_id":"530484321","state_id":"589724319","student_number":"530484321","id":"530e5964049e75a9262d02d4"},"uri":"/v1.1/students/530e5964049e75a9262d02d4"},{"data":{"created":"2014-02-26T21:15:16.632Z","credentials":{"district_username":"kimberlyk62","district_password":"nie6Ieb1"},"district":"4fd43cc56d11340000000005","dob":"12/28/1996","ell_status":"N","email":"k.kimberly@example.com","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.670Z","location":{"zip":"11691"},"name":{"first":"Kimberly","middle":"R","last":"Kutch"},"race":"Black
566
- or African American","school":"530e595026403103360ff9fd","sis_id":"531248862","state_id":"879810915","student_number":"531248862","id":"530e5964049e75a9262d02d5"},"uri":"/v1.1/students/530e5964049e75a9262d02d5"},{"data":{"created":"2014-02-26T21:15:16.638Z","credentials":{"district_username":"lindac62","district_password":"ki7AhahyahF"},"district":"4fd43cc56d11340000000005","dob":"12/9/1996","ell_status":"N","email":"linda_c@example.com","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.675Z","location":{"zip":"10303"},"name":{"first":"Linda","middle":"J","last":"Christiansen"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"531293162","state_id":"138529274","student_number":"531293162","id":"530e5964049e75a9262d02d6"},"uri":"/v1.1/students/530e5964049e75a9262d02d6"},{"data":{"created":"2014-02-26T21:15:16.644Z","credentials":{"district_username":"amberh85","district_password":"daiWei8kaif"},"district":"4fd43cc56d11340000000005","dob":"8/7/2004","ell_status":"N","email":"amber.h@example.net","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.679Z","location":{"zip":"10303"},"name":{"first":"Amber","middle":"A","last":"Hirthe"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"531441685","state_id":"272478114","student_number":"531441685","id":"530e5964049e75a9262d02d7"},"uri":"/v1.1/students/530e5964049e75a9262d02d7"},{"data":{"created":"2014-02-26T21:15:16.654Z","credentials":{"district_username":"kathyb22","district_password":"haeS2geeg3"},"district":"4fd43cc56d11340000000005","dob":"1/22/2007","ell_status":"N","email":"b.kathy@example.org","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.682Z","location":{"zip":"11432"},"name":{"first":"Kathy","middle":"A","last":"Braun"},"race":"Black
567
- or African American","school":"530e595026403103360ff9fe","sis_id":"532851322","state_id":"597350496","student_number":"532851322","id":"530e5964049e75a9262d02d8"},"uri":"/v1.1/students/530e5964049e75a9262d02d8"},{"data":{"created":"2014-02-26T21:15:16.678Z","credentials":{"district_username":"keithw08","district_password":"ahboh2EeBeY"},"district":"4fd43cc56d11340000000005","dob":"8/22/1996","ell_status":"N","email":"w.keith@example.org","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.685Z","location":{"zip":"10309"},"name":{"first":"Keith","middle":"V","last":"Wintheiser"},"race":"Black
568
- or African American","school":"530e595026403103360ff9fd","sis_id":"534675808","state_id":"651155420","student_number":"534675808","id":"530e5964049e75a9262d02d9"},"uri":"/v1.1/students/530e5964049e75a9262d02d9"},{"data":{"created":"2014-02-26T21:15:16.705Z","credentials":{"district_username":"vivians08","district_password":"Quieze4sh"},"district":"4fd43cc56d11340000000005","dob":"2/27/2000","ell_status":"N","email":"s_vivian@example.net","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.690Z","location":{"zip":"11355"},"name":{"first":"Vivian","middle":"K","last":"Schaefer"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"538539808","state_id":"195542681","student_number":"538539808","id":"530e5964049e75a9262d02de"},"uri":"/v1.1/students/530e5964049e75a9262d02de"},{"data":{"created":"2014-02-26T21:15:16.713Z","credentials":{"district_username":"williamf53","district_password":"ahng4Ceeth"},"district":"4fd43cc56d11340000000005","dob":"7/21/2003","ell_status":"Y","email":"william_f@example.net","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.694Z","location":{"zip":"11217"},"name":{"first":"William","middle":"M","last":"Franecki"},"race":"Two
569
- or More Races","school":"530e595026403103360ff9fe","sis_id":"538754153","state_id":"287289543","student_number":"538754153","id":"530e5964049e75a9262d02e1"},"uri":"/v1.1/students/530e5964049e75a9262d02e1"},{"data":{"created":"2014-02-26T21:15:16.740Z","credentials":{"district_username":"dianen73","district_password":"eel7Thohd"},"district":"4fd43cc56d11340000000005","dob":"6/16/1996","ell_status":"N","email":"n_diane@example.net","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.697Z","location":{"zip":"11691"},"name":{"first":"Diane","middle":"J","last":"Nader"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"541253373","state_id":"817987559","student_number":"541253373","id":"530e5964049e75a9262d02e7"},"uri":"/v1.1/students/530e5964049e75a9262d02e7"}],"links":[{"rel":"self","uri":"/v1.1/students?starting_after=530e5963049e75a9262d0228"},{"rel":"prev","uri":"/v1.1/students?ending_before=530e5963049e75a9262d0229"},{"rel":"next","uri":"/v1.1/students?starting_after=530e5964049e75a9262d02e7"}]}'
570
- http_version:
571
- recorded_at: Sat, 13 Sep 2014 00:03:51 GMT
572
- - request:
573
- method: get
574
- uri: https://api.clever.com//v1.1/students?starting_after=530e5964049e75a9262d02e7
575
- body:
576
- encoding: US-ASCII
577
- string: ''
578
- headers:
579
- Accept:
580
- - ! '*/*; q=0.5, application/xml'
581
- Accept-Encoding:
582
- - gzip, deflate
583
- Authorization:
584
- - Bearer DEMO_TOKEN
585
- User-Agent:
586
- - Ruby
587
- response:
588
- status:
589
- code: 200
590
- message: OK
591
- headers:
592
- Access-Control-Allow-Headers:
593
- - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
594
- Access-Control-Allow-Methods:
595
- - GET,PATCH,POST,DELETE
596
- Access-Control-Allow-Origin:
597
- - ! '*'
598
- Content-Type:
599
- - application/json; charset=utf-8
600
- Date:
601
- - Sat, 13 Sep 2014 00:03:51 GMT
602
- Etag:
603
- - ! '"901956348"'
604
- Server:
605
- - nginx/1.4.7
606
- X-Powered-By:
607
- - Express
608
- Content-Length:
609
- - '66230'
610
- Connection:
611
- - keep-alive
612
- body:
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
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
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
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
618
- or More Races","school":"530e595026403103360ff9ff","sis_id":"546520590","state_id":"148228250","student_number":"546520590","id":"530e5964049e75a9262d02f6"},"uri":"/v1.1/students/530e5964049e75a9262d02f6"},{"data":{"created":"2014-02-26T21:15:16.812Z","credentials":{"district_username":"tammyr08","district_password":"Ee6Fueh1"},"district":"4fd43cc56d11340000000005","dob":"8/14/2007","ell_status":"Y","email":"tammy_r@example.net","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.725Z","location":{"zip":"11416"},"name":{"first":"Tammy","middle":"R","last":"Robel"},"race":"Black
619
- or African American","school":"530e595026403103360ff9fe","sis_id":"547417208","state_id":"634932996","student_number":"547417208","id":"530e5964049e75a9262d02f7"},"uri":"/v1.1/students/530e5964049e75a9262d02f7"},{"data":{"created":"2014-02-26T21:15:16.824Z","credentials":{"district_username":"davids53","district_password":"Tail0fahng"},"district":"4fd43cc56d11340000000005","dob":"6/28/1995","ell_status":"N","email":"s.david@example.net","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.727Z","location":{"zip":"10302"},"name":{"first":"David","middle":"K","last":"Stoltenberg"},"race":"Black
620
- or African American","school":"530e595026403103360ff9fd","sis_id":"549412453","state_id":"240520857","student_number":"549412453","id":"530e5964049e75a9262d02f8"},"uri":"/v1.1/students/530e5964049e75a9262d02f8"},{"data":{"created":"2014-02-26T21:15:16.830Z","credentials":{"district_username":"teresaa14","district_password":"IMea3ooYei"},"district":"4fd43cc56d11340000000005","dob":"12/31/2005","ell_status":"Y","email":"teresa_a@example.net","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.731Z","location":{"zip":"11207"},"name":{"first":"Teresa","middle":"B","last":"Auer"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"550782514","state_id":"420112470","student_number":"550782514","id":"530e5964049e75a9262d02f9"},"uri":"/v1.1/students/530e5964049e75a9262d02f9"},{"data":{"created":"2014-02-26T21:15:16.837Z","credentials":{"district_username":"tammyf54","district_password":"xoo1Die9oh"},"district":"4fd43cc56d11340000000005","dob":"5/4/2002","ell_status":"N","email":"tammy.f@example.net","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.736Z","location":{"zip":"10017"},"name":{"first":"Tammy","middle":"D","last":"Fahey"},"race":"Two
621
- or More Races","school":"530e595026403103360ff9fe","sis_id":"550818754","state_id":"148295477","student_number":"550818754","id":"530e5964049e75a9262d02fa"},"uri":"/v1.1/students/530e5964049e75a9262d02fa"},{"data":{"created":"2014-02-26T21:15:16.843Z","credentials":{"district_username":"joaquink83","district_password":"Oojoot3Wee0"},"district":"4fd43cc56d11340000000005","dob":"11/24/2000","ell_status":"Y","email":"joaquin_k@example.org","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.740Z","location":{"zip":"10003"},"name":{"first":"Joaquin","middle":"G","last":"Konopelski"},"race":"Two
622
- or More Races","school":"530e595026403103360ff9ff","sis_id":"551278183","state_id":"131279964","student_number":"551278183","id":"530e5964049e75a9262d02fb"},"uri":"/v1.1/students/530e5964049e75a9262d02fb"},{"data":{"created":"2014-02-26T21:15:16.851Z","credentials":{"district_username":"donnat49","district_password":"OdaiKeu4uu8"},"district":"4fd43cc56d11340000000005","dob":"3/31/2004","ell_status":"Y","email":"donna.t@example.org","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.743Z","location":{"zip":"11417"},"name":{"first":"Donna","middle":"P","last":"Tromp"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"551327449","state_id":"458203213","student_number":"551327449","id":"530e5964049e75a9262d02fc"},"uri":"/v1.1/students/530e5964049e75a9262d02fc"},{"data":{"created":"2014-02-26T21:15:16.860Z","credentials":{"district_username":"paulf13","district_password":"wiequiW0doh"},"district":"4fd43cc56d11340000000005","dob":"3/18/1996","ell_status":"Y","email":"f_paul@example.org","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.747Z","location":{"zip":"10462"},"name":{"first":"Paul","middle":"P","last":"Fadel"},"race":"Black
623
- or African American","school":"530e595026403103360ff9fd","sis_id":"551596413","state_id":"767077366","student_number":"551596413","id":"530e5964049e75a9262d02fd"},"uri":"/v1.1/students/530e5964049e75a9262d02fd"},{"data":{"created":"2014-02-26T21:15:16.869Z","credentials":{"district_username":"trentv15","district_password":"xeKahKi6d"},"district":"4fd43cc56d11340000000005","dob":"3/10/1995","ell_status":"Y","email":"v.trent@example.com","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.752Z","location":{"zip":"11414"},"name":{"first":"Trent","middle":"A","last":"VonRueden"},"race":"Black
624
- or African American","school":"530e595026403103360ff9fd","sis_id":"552817515","state_id":"807204996","student_number":"552817515","id":"530e5964049e75a9262d02fe"},"uri":"/v1.1/students/530e5964049e75a9262d02fe"},{"data":{"created":"2014-02-26T21:15:16.882Z","credentials":{"district_username":"jamesg28","district_password":"AeH4tieSah"},"district":"4fd43cc56d11340000000005","dob":"11/9/2003","ell_status":"N","email":"g.james@example.com","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.756Z","location":{"zip":"10011"},"name":{"first":"James","middle":"I","last":"Gibson"},"race":"Two
625
- or More Races","school":"530e595026403103360ff9fe","sis_id":"553357728","state_id":"172812533","student_number":"553357728","id":"530e5964049e75a9262d02ff"},"uri":"/v1.1/students/530e5964049e75a9262d02ff"},{"data":{"created":"2014-02-26T21:15:16.891Z","credentials":{"district_username":"cherylk35","district_password":"WeeSahp0"},"district":"4fd43cc56d11340000000005","dob":"9/22/1997","ell_status":"Y","email":"k.cheryl@example.net","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.758Z","location":{"zip":"10038"},"name":{"first":"Cheryl","middle":"A","last":"Kozey"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"555232335","state_id":"883847797","student_number":"555232335","id":"530e5964049e75a9262d0300"},"uri":"/v1.1/students/530e5964049e75a9262d0300"},{"data":{"created":"2014-02-26T21:15:16.900Z","credentials":{"district_username":"odessag64","district_password":"Iet7Hi3emoi"},"district":"4fd43cc56d11340000000005","dob":"7/17/1995","ell_status":"Y","email":"odessa.g@example.org","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.763Z","location":{"zip":"10463"},"name":{"first":"Odessa","middle":"M","last":"Gusikowski"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"555581564","state_id":"327677580","student_number":"555581564","id":"530e5964049e75a9262d0301"},"uri":"/v1.1/students/530e5964049e75a9262d0301"},{"data":{"created":"2014-02-26T21:15:16.907Z","credentials":{"district_username":"verah09","district_password":"aif5Thahsh"},"district":"4fd43cc56d11340000000005","dob":"2/2/1997","ell_status":"Y","email":"h_vera@example.com","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.767Z","location":{"zip":"11211"},"name":{"first":"Vera","middle":"W","last":"Haag"},"race":"Black
626
- or African American","school":"530e595026403103360ff9fd","sis_id":"556256909","state_id":"655702530","student_number":"556256909","id":"530e5964049e75a9262d0302"},"uri":"/v1.1/students/530e5964049e75a9262d0302"},{"data":{"created":"2014-02-26T21:15:16.916Z","credentials":{"district_username":"moniqueg59","district_password":"EPhie9th"},"district":"4fd43cc56d11340000000005","dob":"8/31/1997","ell_status":"N","email":"monique.g@example.net","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-08-11T18:34:46.778Z","location":{"zip":"10020"},"name":{"first":"Monique","middle":"J","last":"Gutmann"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"556584559","state_id":"485279646","student_number":"556584559","id":"530e5964049e75a9262d0304"},"uri":"/v1.1/students/530e5964049e75a9262d0304"},{"data":{"created":"2014-02-26T21:15:16.931Z","credentials":{"district_username":"daniellel74","district_password":"au3Eegae5l"},"district":"4fd43cc56d11340000000005","dob":"4/9/2003","ell_status":"Y","email":"danielle.l@example.org","frl_status":"Paid","gender":"F","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.774Z","location":{"zip":"11427"},"name":{"first":"Danielle","middle":"M","last":"Littel"},"race":"Black
627
- or African American","school":"530e595026403103360ff9fe","sis_id":"558948774","state_id":"282477923","student_number":"558948774","id":"530e5964049e75a9262d0307"},"uri":"/v1.1/students/530e5964049e75a9262d0307"},{"data":{"created":"2014-02-26T21:15:16.938Z","credentials":{"district_username":"johnb49","district_password":"oceig9haY"},"district":"4fd43cc56d11340000000005","dob":"3/22/1998","ell_status":"Y","email":"b_john@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.779Z","location":{"zip":"10033"},"name":{"first":"John","middle":"W","last":"Brown"},"race":"Black
628
- or African American","school":"530e595026403103360ff9fd","sis_id":"559830749","state_id":"656623185","student_number":"559830749","id":"530e5964049e75a9262d0309"},"uri":"/v1.1/students/530e5964049e75a9262d0309"},{"data":{"created":"2014-02-26T21:15:16.948Z","credentials":{"district_username":"waynes49","district_password":"foax5ahl6Oong"},"district":"4fd43cc56d11340000000005","dob":"12/28/2006","ell_status":"N","email":"wayne.s@example.net","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.782Z","location":{"zip":"10017"},"name":{"first":"Wayne","middle":"B","last":"Stamm"},"race":"Black
629
- or African American","school":"530e595026403103360ff9fe","sis_id":"561189349","state_id":"189378827","student_number":"561189349","id":"530e5964049e75a9262d030c"},"uri":"/v1.1/students/530e5964049e75a9262d030c"},{"data":{"created":"2014-02-26T21:15:16.985Z","credentials":{"district_username":"dianeb79","district_password":"euM9OoHi3"},"district":"4fd43cc56d11340000000005","dob":"11/21/2004","ell_status":"N","email":"b_diane@example.com","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.785Z","location":{"zip":"10280"},"name":{"first":"Diane","middle":"J","last":"Bernhard"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"563699279","state_id":"902945467","student_number":"563699279","id":"530e5964049e75a9262d0312"},"uri":"/v1.1/students/530e5964049e75a9262d0312"},{"data":{"created":"2014-02-26T21:15:16.992Z","credentials":{"district_username":"williamh22","district_password":"aexieR9phae"},"district":"4fd43cc56d11340000000005","dob":"4/9/2000","ell_status":"Y","email":"william.h@example.net","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.789Z","location":{"zip":"10021"},"name":{"first":"William","middle":"R","last":"Harris"},"race":"Two
630
- or More Races","school":"530e595026403103360ff9ff","sis_id":"563719122","state_id":"279368302","student_number":"563719122","id":"530e5964049e75a9262d0314"},"uri":"/v1.1/students/530e5964049e75a9262d0314"},{"data":{"created":"2014-02-26T21:15:17.011Z","credentials":{"district_username":"melissab44","district_password":"tae9ooLoosh"},"district":"4fd43cc56d11340000000005","dob":"11/13/2005","ell_status":"Y","email":"b.melissa@example.net","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.794Z","location":{"zip":"10022"},"name":{"first":"Melissa","middle":"D","last":"Bayer"},"race":"Two
631
- or More Races","school":"530e595026403103360ff9fe","sis_id":"565336244","state_id":"584395680","student_number":"565336244","id":"530e5965049e75a9262d0318"},"uri":"/v1.1/students/530e5965049e75a9262d0318"},{"data":{"created":"2014-02-26T21:15:17.022Z","credentials":{"district_username":"eliab35","district_password":"waikai2ooDee"},"district":"4fd43cc56d11340000000005","dob":"5/9/1997","ell_status":"N","email":"elia_b@example.org","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.798Z","location":{"zip":"10040"},"name":{"first":"Elia","middle":"L","last":"Bernier"},"race":"Black
632
- or African American","school":"530e595026403103360ff9fd","sis_id":"566610735","state_id":"279483228","student_number":"566610735","id":"530e5965049e75a9262d031b"},"uri":"/v1.1/students/530e5965049e75a9262d031b"},{"data":{"created":"2014-02-26T21:15:17.029Z","credentials":{"district_username":"bethb30","district_password":"zieFoj0eic"},"district":"4fd43cc56d11340000000005","dob":"10/28/1999","ell_status":"N","email":"b.beth@example.org","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.800Z","location":{"zip":"10036"},"name":{"first":"Beth","middle":"R","last":"Bruen"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"566709830","state_id":"451163255","student_number":"566709830","id":"530e5965049e75a9262d031d"},"uri":"/v1.1/students/530e5965049e75a9262d031d"},{"data":{"created":"2014-02-26T21:15:17.056Z","credentials":{"district_username":"davidr29","district_password":"zahKeit4o"},"district":"4fd43cc56d11340000000005","dob":"11/24/2007","ell_status":"Y","email":"david.r@example.net","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.805Z","location":{"zip":"11206"},"name":{"first":"David","middle":"C","last":"Raynor"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"567427329","state_id":"576755310","student_number":"567427329","id":"530e5965049e75a9262d0320"},"uri":"/v1.1/students/530e5965049e75a9262d0320"},{"data":{"created":"2014-02-26T21:15:17.064Z","credentials":{"district_username":"wandac82","district_password":"Phae6ooPoo"},"district":"4fd43cc56d11340000000005","dob":"1/16/1999","ell_status":"N","email":"wanda.c@example.org","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.809Z","location":{"zip":"10465"},"name":{"first":"Wanda","middle":"R","last":"Collier"},"race":"Two
633
- or More Races","school":"530e595026403103360ff9ff","sis_id":"567548882","state_id":"115134922","student_number":"567548882","id":"530e5965049e75a9262d0321"},"uri":"/v1.1/students/530e5965049e75a9262d0321"},{"data":{"created":"2014-02-26T21:15:17.087Z","credentials":{"district_username":"oscarg24","district_password":"Unie7ovaot"},"district":"4fd43cc56d11340000000005","dob":"9/3/2002","ell_status":"Y","email":"oscar_g@example.org","frl_status":"Paid","gender":"M","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.812Z","location":{"zip":"10467"},"name":{"first":"Oscar","middle":"K","last":"Goodwin"},"race":"Black
634
- or African American","school":"530e595026403103360ff9fe","sis_id":"569993324","state_id":"947118844","student_number":"569993324","id":"530e5965049e75a9262d0322"},"uri":"/v1.1/students/530e5965049e75a9262d0322"},{"data":{"created":"2014-02-26T21:15:17.093Z","credentials":{"district_username":"saras38","district_password":"Aw1eipi0ee"},"district":"4fd43cc56d11340000000005","dob":"9/30/2000","ell_status":"Y","email":"s.sara@example.com","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.816Z","location":{"zip":"10453"},"name":{"first":"Sara","middle":"J","last":"Stracke"},"race":"Black
635
- or African American","school":"530e595026403103360ff9ff","sis_id":"570154538","state_id":"587562057","student_number":"570154538","id":"530e5965049e75a9262d0323"},"uri":"/v1.1/students/530e5965049e75a9262d0323"},{"data":{"created":"2014-02-26T21:15:17.100Z","credentials":{"district_username":"larryk81","district_password":"iehu5ohB6qu"},"district":"4fd43cc56d11340000000005","dob":"7/19/1995","ell_status":"N","email":"larry.k@example.org","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.821Z","location":{"zip":"11415"},"name":{"first":"Larry","middle":"C","last":"Koch"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"570336281","state_id":"754827624","student_number":"570336281","id":"530e5965049e75a9262d0324"},"uri":"/v1.1/students/530e5965049e75a9262d0324"},{"data":{"created":"2014-02-26T21:15:17.108Z","credentials":{"district_username":"davidd69","district_password":"ohle0ASah"},"district":"4fd43cc56d11340000000005","dob":"1/28/1998","ell_status":"Y","email":"d.david@example.org","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.833Z","location":{"zip":"11421"},"name":{"first":"David","middle":"G","last":"DuBuque"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"570868669","state_id":"589432853","student_number":"570868669","id":"530e5965049e75a9262d0325"},"uri":"/v1.1/students/530e5965049e75a9262d0325"},{"data":{"created":"2014-02-26T21:15:17.128Z","credentials":{"district_username":"micheleg59","district_password":"kahth7Quei6"},"district":"4fd43cc56d11340000000005","dob":"11/21/1995","ell_status":"N","email":"g.michele@example.com","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.835Z","location":{"zip":"10003"},"name":{"first":"Michele","middle":"T","last":"Goodwin"},"race":"Black
636
- or African American","school":"530e595026403103360ff9fd","sis_id":"573596759","state_id":"105858007","student_number":"573596759","id":"530e5965049e75a9262d0326"},"uri":"/v1.1/students/530e5965049e75a9262d0326"},{"data":{"created":"2014-02-26T21:15:17.139Z","credentials":{"district_username":"davidc32","district_password":"aekai0ohr4Lei"},"district":"4fd43cc56d11340000000005","dob":"6/18/2006","ell_status":"N","email":"c_david@example.org","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.839Z","location":{"zip":"11355"},"name":{"first":"David","middle":"M","last":"Considine"},"race":"Two
637
- or More Races","school":"530e595026403103360ff9fe","sis_id":"574095232","state_id":"657821010","student_number":"574095232","id":"530e5965049e75a9262d0327"},"uri":"/v1.1/students/530e5965049e75a9262d0327"},{"data":{"created":"2014-02-26T21:15:17.146Z","credentials":{"district_username":"aliceg86","district_password":"aey6eePh1"},"district":"4fd43cc56d11340000000005","dob":"1/1/1996","ell_status":"N","email":"alice.g@example.org","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.844Z","location":{"zip":"10475"},"name":{"first":"Alice","middle":"J","last":"Goyette"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"574374086","state_id":"491239550","student_number":"574374086","id":"530e5965049e75a9262d0328"},"uri":"/v1.1/students/530e5965049e75a9262d0328"},{"data":{"created":"2014-02-26T21:15:17.156Z","credentials":{"district_username":"janetc47","district_password":"eiTi4yoyung4"},"district":"4fd43cc56d11340000000005","dob":"3/8/2003","ell_status":"N","email":"c_janet@example.net","frl_status":"Paid","gender":"F","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.848Z","location":{"zip":"11366"},"name":{"first":"Janet","middle":"A","last":"Champlin"},"race":"Two
638
- or More Races","school":"530e595026403103360ff9fe","sis_id":"575053347","state_id":"291701147","student_number":"575053347","id":"530e5965049e75a9262d0329"},"uri":"/v1.1/students/530e5965049e75a9262d0329"},{"data":{"created":"2014-02-26T21:15:17.171Z","credentials":{"district_username":"susanh24","district_password":"ohY9Ohzie"},"district":"4fd43cc56d11340000000005","dob":"11/6/2003","ell_status":"Y","email":"h.susan@example.net","frl_status":"Paid","gender":"F","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.851Z","location":{"zip":"11426"},"name":{"first":"Susan","middle":"D","last":"Hegmann"},"race":"Black
639
- or African American","school":"530e595026403103360ff9fe","sis_id":"575610324","state_id":"998442301","student_number":"575610324","id":"530e5965049e75a9262d032c"},"uri":"/v1.1/students/530e5965049e75a9262d032c"},{"data":{"created":"2014-02-26T21:15:17.220Z","credentials":{"district_username":"winnifreds59","district_password":"xee7Shohy"},"district":"4fd43cc56d11340000000005","dob":"3/1/2005","ell_status":"Y","email":"winnifred.s@example.org","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.855Z","location":{"zip":"11416"},"name":{"first":"Winnifred","middle":"S","last":"Steuber"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"577226659","state_id":"144713431","student_number":"577226659","id":"530e5965049e75a9262d032f"},"uri":"/v1.1/students/530e5965049e75a9262d032f"},{"data":{"created":"2014-02-26T21:15:17.233Z","credentials":{"district_username":"bonniel30","district_password":"theiWofoa5o"},"district":"4fd43cc56d11340000000005","dob":"7/12/1995","ell_status":"Y","email":"bonnie.l@example.net","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.860Z","location":{"zip":"11238"},"name":{"first":"Bonnie","middle":"K","last":"Langosh"},"race":"Black
640
- or African American","school":"530e595026403103360ff9fd","sis_id":"577769930","state_id":"134931823","student_number":"577769930","id":"530e5965049e75a9262d0332"},"uri":"/v1.1/students/530e5965049e75a9262d0332"},{"data":{"created":"2014-02-26T21:15:17.242Z","credentials":{"district_username":"williama23","district_password":"ieC8ohkai8Ae"},"district":"4fd43cc56d11340000000005","dob":"11/4/1996","ell_status":"Y","email":"a_william@example.net","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.863Z","location":{"zip":"11429"},"name":{"first":"William","middle":"R","last":"Abshire"},"race":"Black
641
- or African American","school":"530e595026403103360ff9fd","sis_id":"578765523","state_id":"113980322","student_number":"578765523","id":"530e5965049e75a9262d0335"},"uri":"/v1.1/students/530e5965049e75a9262d0335"},{"data":{"created":"2014-02-26T21:15:17.249Z","credentials":{"district_username":"blancheg77","district_password":"avaiToo4Ph"},"district":"4fd43cc56d11340000000005","dob":"1/27/2006","ell_status":"Y","email":"g_blanche@example.org","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.866Z","location":{"zip":"11432"},"name":{"first":"Blanche","middle":"C","last":"Gusikowski"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"578943677","state_id":"590420146","student_number":"578943677","id":"530e5965049e75a9262d0338"},"uri":"/v1.1/students/530e5965049e75a9262d0338"},{"data":{"created":"2014-02-26T21:15:17.254Z","credentials":{"district_username":"dinot93","district_password":"wae7iLahya"},"district":"4fd43cc56d11340000000005","dob":"4/10/2002","ell_status":"N","email":"dino_t@example.com","frl_status":"Paid","gender":"M","grade":"5","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.870Z","location":{"zip":"11235"},"name":{"first":"Dino","middle":"G","last":"Towne"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"579739793","state_id":"150269991","student_number":"579739793","id":"530e5965049e75a9262d033a"},"uri":"/v1.1/students/530e5965049e75a9262d033a"},{"data":{"created":"2014-02-26T21:15:17.260Z","credentials":{"district_username":"allisona40","district_password":"goo9lae4Ie"},"district":"4fd43cc56d11340000000005","dob":"9/1/1998","ell_status":"N","email":"allison_a@example.org","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.875Z","location":{"zip":"10009"},"name":{"first":"Allison","middle":"J","last":"Adams"},"race":"Two
642
- or More Races","school":"530e595026403103360ff9fd","sis_id":"579799840","state_id":"863626780","student_number":"579799840","id":"530e5965049e75a9262d033c"},"uri":"/v1.1/students/530e5965049e75a9262d033c"},{"data":{"created":"2014-02-26T21:15:17.270Z","credentials":{"district_username":"shaung78","district_password":"heoVi4Xo1gi"},"district":"4fd43cc56d11340000000005","dob":"7/21/1998","ell_status":"N","email":"shaun.g@example.com","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.879Z","location":{"zip":"11412"},"name":{"first":"Shaun","middle":"K","last":"Goodwin"},"race":"Black
643
- or African American","school":"530e595026403103360ff9fd","sis_id":"580215878","state_id":"629864016","student_number":"580215878","id":"530e5965049e75a9262d033f"},"uri":"/v1.1/students/530e5965049e75a9262d033f"},{"data":{"created":"2014-02-26T21:15:17.275Z","credentials":{"district_username":"timothyd53","district_password":"Iquaeg5ie"},"district":"4fd43cc56d11340000000005","dob":"4/15/2004","ell_status":"N","email":"timothy.d@example.org","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.881Z","location":{"zip":"10044"},"name":{"first":"Timothy","middle":"K","last":"DuBuque"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"580958453","state_id":"576293909","student_number":"580958453","id":"530e5965049e75a9262d0341"},"uri":"/v1.1/students/530e5965049e75a9262d0341"},{"data":{"created":"2014-02-26T21:15:17.282Z","credentials":{"district_username":"dorothym47","district_password":"Pa1Tahfuwaeb"},"district":"4fd43cc56d11340000000005","dob":"12/21/2004","ell_status":"N","email":"dorothy.m@example.org","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.885Z","location":{"zip":"11210"},"name":{"first":"Dorothy","middle":"C","last":"Muller"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"581011547","state_id":"439168647","student_number":"581011547","id":"530e5965049e75a9262d0343"},"uri":"/v1.1/students/530e5965049e75a9262d0343"},{"data":{"created":"2014-02-26T21:15:17.293Z","credentials":{"district_username":"kimberlys73","district_password":"woor2Nohcea"},"district":"4fd43cc56d11340000000005","dob":"5/20/2000","ell_status":"N","email":"s_kimberly@example.net","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.890Z","location":{"zip":"11238"},"name":{"first":"Kimberly","middle":"T","last":"Schuppe"},"race":"American
644
- Indian","school":"530e595026403103360ff9ff","sis_id":"582001873","state_id":"483980889","student_number":"582001873","id":"530e5965049e75a9262d0347"},"uri":"/v1.1/students/530e5965049e75a9262d0347"},{"data":{"created":"2014-02-26T21:15:17.302Z","credentials":{"district_username":"carries30","district_password":"ta4qua8E"},"district":"4fd43cc56d11340000000005","dob":"7/23/1995","ell_status":"N","email":"s_carrie@example.org","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.894Z","location":{"zip":"11221"},"name":{"first":"Carrie","middle":"R","last":"Stiedemann"},"race":"Two
645
- or More Races","school":"530e595026403103360ff9fd","sis_id":"582823730","state_id":"950480385","student_number":"582823730","id":"530e5965049e75a9262d0349"},"uri":"/v1.1/students/530e5965049e75a9262d0349"},{"data":{"created":"2014-02-26T21:15:17.310Z","credentials":{"district_username":"jamesa02","district_password":"chaph8AhPh"},"district":"4fd43cc56d11340000000005","dob":"1/28/2000","ell_status":"Y","email":"a.james@example.org","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.897Z","location":{"zip":"11414"},"name":{"first":"James","middle":"L","last":"Ankunding"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"583471602","state_id":"377458919","student_number":"583471602","id":"530e5965049e75a9262d034a"},"uri":"/v1.1/students/530e5965049e75a9262d034a"},{"data":{"created":"2014-02-26T21:15:17.315Z","credentials":{"district_username":"eliak92","district_password":"waikai2ooDee"},"district":"4fd43cc56d11340000000005","dob":"6/15/2006","ell_status":"Y","email":"elia.k@example.org","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.900Z","location":{"zip":"10002"},"name":{"first":"Elia","middle":"L","last":"Kirlin"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"583594892","state_id":"636163091","student_number":"583594892","id":"530e5965049e75a9262d034b"},"uri":"/v1.1/students/530e5965049e75a9262d034b"},{"data":{"created":"2014-02-26T21:15:17.322Z","credentials":{"district_username":"maryr84","district_password":"Mequi5th"},"district":"4fd43cc56d11340000000005","dob":"9/23/2001","ell_status":"N","email":"mary.r@example.net","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.905Z","location":{"zip":"11220"},"name":{"first":"Mary","middle":"J","last":"Ratke"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"584583284","state_id":"980071123","student_number":"584583284","id":"530e5965049e75a9262d034c"},"uri":"/v1.1/students/530e5965049e75a9262d034c"},{"data":{"created":"2014-02-26T21:15:17.330Z","credentials":{"district_username":"katies53","district_password":"Moh6each0"},"district":"4fd43cc56d11340000000005","dob":"6/28/2005","ell_status":"N","email":"katie.s@example.net","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.910Z","location":{"zip":"10451"},"name":{"first":"Katie","middle":"C","last":"Sawayn"},"race":"Black
646
- or African American","school":"530e595026403103360ff9fe","sis_id":"585086153","state_id":"919677982","student_number":"585086153","id":"530e5965049e75a9262d034d"},"uri":"/v1.1/students/530e5965049e75a9262d034d"},{"data":{"created":"2014-02-26T21:15:17.339Z","credentials":{"district_username":"johnw23","district_password":"Eixae4Seex"},"district":"4fd43cc56d11340000000005","dob":"3/6/2002","ell_status":"Y","email":"john.w@example.com","frl_status":"Paid","gender":"M","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.912Z","location":{"zip":"10305"},"name":{"first":"John","middle":"A","last":"Weissnat"},"race":"Black
647
- or African American","school":"530e595026403103360ff9fe","sis_id":"586043323","state_id":"995957038","student_number":"586043323","id":"530e5965049e75a9262d034e"},"uri":"/v1.1/students/530e5965049e75a9262d034e"},{"data":{"created":"2014-02-26T21:15:17.352Z","credentials":{"district_username":"jamesr22","district_password":"aiWahxai1"},"district":"4fd43cc56d11340000000005","dob":"6/11/1998","ell_status":"Y","email":"r.james@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.916Z","location":{"zip":"11355"},"name":{"first":"James","middle":"K","last":"Rath"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"588043822","state_id":"606001649","student_number":"588043822","id":"530e5965049e75a9262d034f"},"uri":"/v1.1/students/530e5965049e75a9262d034f"},{"data":{"created":"2014-02-26T21:15:17.373Z","credentials":{"district_username":"jeremyl39","district_password":"Bahjaecee2"},"district":"4fd43cc56d11340000000005","dob":"4/17/2000","ell_status":"N","email":"l.jeremy@example.com","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.921Z","location":{"zip":"10036"},"name":{"first":"Jeremy","middle":"B","last":"Leannon"},"race":"Black
648
- or African American","school":"530e595026403103360ff9ff","sis_id":"589003639","state_id":"965061909","student_number":"589003639","id":"530e5965049e75a9262d0354"},"uri":"/v1.1/students/530e5965049e75a9262d0354"},{"data":{"created":"2014-02-26T21:15:17.380Z","credentials":{"district_username":"zacharyl08","district_password":"Mee7meiwah"},"district":"4fd43cc56d11340000000005","dob":"2/5/1999","ell_status":"Y","email":"l.zachary@example.org","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.925Z","location":{"zip":"10468"},"name":{"first":"Zachary","middle":"C","last":"Langosh"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"589205708","state_id":"335516305","student_number":"589205708","id":"530e5965049e75a9262d0356"},"uri":"/v1.1/students/530e5965049e75a9262d0356"},{"data":{"created":"2014-02-26T21:15:17.411Z","credentials":{"district_username":"patricias12","district_password":"Eigh1eiG4ob"},"district":"4fd43cc56d11340000000005","dob":"1/30/2005","ell_status":"N","email":"s_patricia@example.net","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.928Z","location":{"zip":"11229"},"name":{"first":"Patricia","middle":"B","last":"Swaniawski"},"race":"Two
649
- or More Races","school":"530e595026403103360ff9fe","sis_id":"593732012","state_id":"606607223","student_number":"593732012","id":"530e5965049e75a9262d0360"},"uri":"/v1.1/students/530e5965049e75a9262d0360"},{"data":{"created":"2014-02-26T21:15:17.421Z","credentials":{"district_username":"williams21","district_password":"weiF0AhM"},"district":"4fd43cc56d11340000000005","dob":"12/28/1995","ell_status":"N","email":"s_william@example.com","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.931Z","location":{"zip":"11435"},"name":{"first":"William","middle":"R","last":"Simonis"},"race":"Black
650
- or African American","school":"530e595026403103360ff9fd","sis_id":"595630521","state_id":"111142787","student_number":"595630521","id":"530e5965049e75a9262d0363"},"uri":"/v1.1/students/530e5965049e75a9262d0363"},{"data":{"created":"2014-02-26T21:15:17.433Z","credentials":{"district_username":"sylviaw90","district_password":"Ohv6omag1"},"district":"4fd43cc56d11340000000005","dob":"7/1/2005","ell_status":"N","email":"sylvia_w@example.org","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.936Z","location":{"zip":"11005"},"name":{"first":"Sylvia","middle":"D","last":"Watsica"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"596385290","state_id":"453047908","student_number":"596385290","id":"530e5965049e75a9262d0367"},"uri":"/v1.1/students/530e5965049e75a9262d0367"},{"data":{"created":"2014-02-26T21:15:17.442Z","credentials":{"district_username":"lloydw34","district_password":"eeMie7pee"},"district":"4fd43cc56d11340000000005","dob":"9/27/2005","ell_status":"Y","email":"w.lloyd@example.com","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.940Z","location":{"zip":"11232"},"name":{"first":"Lloyd","middle":"M","last":"West"},"race":"Black
651
- or African American","school":"530e595026403103360ff9fe","sis_id":"597623334","state_id":"891486616","student_number":"597623334","id":"530e5965049e75a9262d0369"},"uri":"/v1.1/students/530e5965049e75a9262d0369"},{"data":{"created":"2014-02-26T21:15:17.456Z","credentials":{"district_username":"darrelb32","district_password":"ooMooD7nai"},"district":"4fd43cc56d11340000000005","dob":"4/30/2002","ell_status":"Y","email":"darrel_b@example.org","frl_status":"Paid","gender":"M","grade":"5","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.943Z","location":{"zip":"11233"},"name":{"first":"Darrel","middle":"K","last":"Boyer"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"597919832","state_id":"205251100","student_number":"597919832","id":"530e5965049e75a9262d036a"},"uri":"/v1.1/students/530e5965049e75a9262d036a"},{"data":{"created":"2014-02-26T21:15:17.463Z","credentials":{"district_username":"josephs52","district_password":"aije9Go0"},"district":"4fd43cc56d11340000000005","dob":"7/30/2001","ell_status":"N","email":"joseph_s@example.com","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.948Z","location":{"zip":"11378"},"name":{"first":"Joseph","middle":"B","last":"Sanford"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"598039252","state_id":"284695886","student_number":"598039252","id":"530e5965049e75a9262d036b"},"uri":"/v1.1/students/530e5965049e75a9262d036b"},{"data":{"created":"2014-02-26T21:15:17.471Z","credentials":{"district_username":"charlesg30","district_password":"Aegisuch0o"},"district":"4fd43cc56d11340000000005","dob":"5/16/1998","ell_status":"N","email":"g_charles@example.org","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.951Z","location":{"zip":"11413"},"name":{"first":"Charles","middle":"J","last":"Gutmann"},"race":"Two
652
- or More Races","school":"530e595026403103360ff9fd","sis_id":"598712830","state_id":"808609967","student_number":"598712830","id":"530e5965049e75a9262d036c"},"uri":"/v1.1/students/530e5965049e75a9262d036c"},{"data":{"created":"2014-02-26T21:15:17.476Z","credentials":{"district_username":"charlenel19","district_password":"Shewee1Thush"},"district":"4fd43cc56d11340000000005","dob":"11/3/2005","ell_status":"Y","email":"l_charlene@example.net","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.955Z","location":{"zip":"10025"},"name":{"first":"Charlene","middle":"R","last":"Legros"},"race":"Two
653
- or More Races","school":"530e595026403103360ff9fe","sis_id":"598820119","state_id":"455915794","student_number":"598820119","id":"530e5965049e75a9262d036d"},"uri":"/v1.1/students/530e5965049e75a9262d036d"},{"data":{"created":"2014-02-26T21:15:17.482Z","credentials":{"district_username":"edgarw19","district_password":"Au0nohy7"},"district":"4fd43cc56d11340000000005","dob":"6/22/2000","ell_status":"Y","email":"w_edgar@example.com","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.960Z","location":{"zip":"10475"},"name":{"first":"Edgar","middle":"P","last":"Windler"},"race":"Black
654
- or African American","school":"530e595026403103360ff9ff","sis_id":"598940819","state_id":"981894572","student_number":"598940819","id":"530e5965049e75a9262d036e"},"uri":"/v1.1/students/530e5965049e75a9262d036e"},{"data":{"created":"2014-02-26T21:15:17.499Z","credentials":{"district_username":"marianc29","district_password":"keG5Eujei"},"district":"4fd43cc56d11340000000005","dob":"2/7/1995","ell_status":"N","email":"marian_c@example.net","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.964Z","location":{"zip":"10033"},"name":{"first":"Marian","middle":"T","last":"Cronin"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"601851929","state_id":"441042632","student_number":"601851929","id":"530e5965049e75a9262d0372"},"uri":"/v1.1/students/530e5965049e75a9262d0372"},{"data":{"created":"2014-02-26T21:15:17.520Z","credentials":{"district_username":"glenns82","district_password":"QuahTi7Oh"},"district":"4fd43cc56d11340000000005","dob":"1/16/1995","ell_status":"N","email":"glenn_s@example.org","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.967Z","location":{"zip":"10305"},"name":{"first":"Glenn","middle":"L","last":"Streich"},"race":"Two
655
- or More Races","school":"530e595026403103360ff9fd","sis_id":"604428482","state_id":"233774429","student_number":"604428482","id":"530e5965049e75a9262d0379"},"uri":"/v1.1/students/530e5965049e75a9262d0379"},{"data":{"created":"2014-02-26T21:15:17.531Z","credentials":{"district_username":"francesb90","district_password":"ievahf0Y"},"district":"4fd43cc56d11340000000005","dob":"12/25/1996","ell_status":"Y","email":"b_frances@example.com","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.970Z","location":{"zip":"10031"},"name":{"first":"Frances","middle":"R","last":"Bergstrom"},"race":"Black
656
- or African American","school":"530e595026403103360ff9fd","sis_id":"606183990","state_id":"930856702","student_number":"606183990","id":"530e5965049e75a9262d037c"},"uri":"/v1.1/students/530e5965049e75a9262d037c"},{"data":{"created":"2014-02-26T21:15:17.539Z","credentials":{"district_username":"sandrak49","district_password":"eiLoc9thiu"},"district":"4fd43cc56d11340000000005","dob":"12/14/1995","ell_status":"N","email":"sandra_k@example.net","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.975Z","location":{"zip":"11413"},"name":{"first":"Sandra","middle":"J","last":"Keebler"},"race":"Black
657
- or African American","school":"530e595026403103360ff9fd","sis_id":"606274549","state_id":"360473993","student_number":"606274549","id":"530e5965049e75a9262d037f"},"uri":"/v1.1/students/530e5965049e75a9262d037f"},{"data":{"created":"2014-02-26T21:15:17.544Z","credentials":{"district_username":"aliciak12","district_password":"Aetho3iech"},"district":"4fd43cc56d11340000000005","dob":"6/1/1997","ell_status":"Y","email":"alicia_k@example.net","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.979Z","location":{"zip":"11222"},"name":{"first":"Alicia","middle":"S","last":"Keebler"},"race":"Two
658
- or More Races","school":"530e595026403103360ff9fd","sis_id":"607142112","state_id":"593726603","student_number":"607142112","id":"530e5965049e75a9262d0381"},"uri":"/v1.1/students/530e5965049e75a9262d0381"},{"data":{"created":"2014-02-26T21:15:17.550Z","credentials":{"district_username":"bethc06","district_password":"aifoh6naeJei"},"district":"4fd43cc56d11340000000005","dob":"6/18/1997","ell_status":"N","email":"c.beth@example.org","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.982Z","location":{"zip":"10312"},"name":{"first":"Beth","middle":"R","last":"Crooks"},"race":"Black
659
- or African American","school":"530e595026403103360ff9fd","sis_id":"607270006","state_id":"951485862","student_number":"607270006","id":"530e5965049e75a9262d0383"},"uri":"/v1.1/students/530e5965049e75a9262d0383"},{"data":{"created":"2014-02-26T21:15:17.559Z","credentials":{"district_username":"stevenb12","district_password":"aeWu7ahs"},"district":"4fd43cc56d11340000000005","dob":"12/13/2002","ell_status":"N","email":"b_steven@example.org","frl_status":"Paid","gender":"M","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.986Z","location":{"zip":"11106"},"name":{"first":"Steven","middle":"S","last":"Bauch"},"race":"Black
660
- or African American","school":"530e595026403103360ff9fe","sis_id":"609106512","state_id":"953940818","student_number":"609106512","id":"530e5965049e75a9262d0386"},"uri":"/v1.1/students/530e5965049e75a9262d0386"},{"data":{"created":"2014-02-26T21:15:17.571Z","credentials":{"district_username":"elizabethr27","district_password":"nah4Oca3ie"},"district":"4fd43cc56d11340000000005","dob":"2/11/2001","ell_status":"Y","email":"elizabeth.r@example.org","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:42.991Z","location":{"zip":"10012"},"name":{"first":"Elizabeth","middle":"F","last":"Rempel"},"race":"Two
661
- or More Races","school":"530e595026403103360ff9ff","sis_id":"611277927","state_id":"397793417","student_number":"611277927","id":"530e5965049e75a9262d0389"},"uri":"/v1.1/students/530e5965049e75a9262d0389"},{"data":{"created":"2014-02-26T21:15:17.580Z","credentials":{"district_username":"tonig78","district_password":"mi6Saiph7Th"},"district":"4fd43cc56d11340000000005","dob":"8/26/1995","ell_status":"N","email":"g.toni@example.org","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.995Z","location":{"zip":"11369"},"name":{"first":"Toni","middle":"S","last":"Gislason"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"612257578","state_id":"129405012","student_number":"612257578","id":"530e5965049e75a9262d038b"},"uri":"/v1.1/students/530e5965049e75a9262d038b"},{"data":{"created":"2014-02-26T21:15:17.587Z","credentials":{"district_username":"victoriac23","district_password":"noneey8ieN5"},"district":"4fd43cc56d11340000000005","dob":"2/20/1999","ell_status":"N","email":"victoria_c@example.com","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:42.997Z","location":{"zip":"10456"},"name":{"first":"Victoria","middle":"K","last":"Cartwright"},"race":"Two
662
- or More Races","school":"530e595026403103360ff9ff","sis_id":"612551023","state_id":"751167627","student_number":"612551023","id":"530e5965049e75a9262d038c"},"uri":"/v1.1/students/530e5965049e75a9262d038c"},{"data":{"created":"2014-02-26T21:15:17.597Z","credentials":{"district_username":"georgeb21","district_password":"Cei0jaivae8"},"district":"4fd43cc56d11340000000005","dob":"7/29/2004","ell_status":"N","email":"b_george@example.com","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.001Z","location":{"zip":"11363"},"name":{"first":"George","middle":"K","last":"Bogan"},"race":"Two
663
- or More Races","school":"530e595026403103360ff9fe","sis_id":"614221421","state_id":"170667288","student_number":"614221421","id":"530e5965049e75a9262d038d"},"uri":"/v1.1/students/530e5965049e75a9262d038d"},{"data":{"created":"2014-02-26T21:15:17.607Z","credentials":{"district_username":"cliffordw57","district_password":"Aejie3eem1"},"district":"4fd43cc56d11340000000005","dob":"3/4/1998","ell_status":"Y","email":"clifford.w@example.com","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.006Z","location":{"zip":"10014"},"name":{"first":"Clifford","middle":"L","last":"Wisoky"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"616907857","state_id":"580435771","student_number":"616907857","id":"530e5965049e75a9262d038e"},"uri":"/v1.1/students/530e5965049e75a9262d038e"},{"data":{"created":"2014-02-26T21:15:17.612Z","credentials":{"district_username":"williamh09","district_password":"roosh5Oo"},"district":"4fd43cc56d11340000000005","dob":"11/4/1998","ell_status":"N","email":"h_william@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-08-11T18:34:46.918Z","location":{"zip":"11428"},"name":{"first":"William","middle":"M","last":"Hodkiewicz"},"race":"Black
664
- or African American","school":"530e595026403103360ff9fd","sis_id":"617499409","state_id":"979518299","student_number":"617499409","id":"530e5965049e75a9262d038f"},"uri":"/v1.1/students/530e5965049e75a9262d038f"},{"data":{"created":"2014-02-26T21:15:17.617Z","credentials":{"district_username":"miguelm37","district_password":"oopah6Ahgo"},"district":"4fd43cc56d11340000000005","dob":"4/2/2003","ell_status":"N","email":"miguel.m@example.org","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.013Z","location":{"zip":"10453"},"name":{"first":"Miguel","middle":"R","last":"Mayer"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"617583737","state_id":"548549342","student_number":"617583737","id":"530e5965049e75a9262d0390"},"uri":"/v1.1/students/530e5965049e75a9262d0390"},{"data":{"created":"2014-02-26T21:15:17.621Z","credentials":{"district_username":"dough73","district_password":"Riej4iph"},"district":"4fd43cc56d11340000000005","dob":"3/25/1996","ell_status":"N","email":"h.doug@example.org","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.016Z","location":{"zip":"11101"},"name":{"first":"Doug","middle":"B","last":"Homenick"},"race":"Black
665
- or African American","school":"530e595026403103360ff9fd","sis_id":"619416673","state_id":"159076662","student_number":"619416673","id":"530e5965049e75a9262d0391"},"uri":"/v1.1/students/530e5965049e75a9262d0391"},{"data":{"created":"2014-02-26T21:15:17.625Z","credentials":{"district_username":"davide84","district_password":"ohy6Wooqu"},"district":"4fd43cc56d11340000000005","dob":"1/29/2002","ell_status":"N","email":"david_e@example.net","frl_status":"Paid","gender":"M","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.029Z","location":{"zip":"11228"},"name":{"first":"David","middle":"C","last":"Erdman"},"race":"Black
666
- or African American","school":"530e595026403103360ff9fe","sis_id":"619604984","state_id":"418477264","student_number":"619604984","id":"530e5965049e75a9262d0392"},"uri":"/v1.1/students/530e5965049e75a9262d0392"},{"data":{"created":"2014-02-26T21:15:17.633Z","credentials":{"district_username":"stephent18","district_password":"ooPh9Eiqu"},"district":"4fd43cc56d11340000000005","dob":"2/11/1999","ell_status":"N","email":"stephen.t@example.com","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.034Z","location":{"zip":"10280"},"name":{"first":"Stephen","middle":"L","last":"Tillman"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"620362918","state_id":"803943287","student_number":"620362918","id":"530e5965049e75a9262d0393"},"uri":"/v1.1/students/530e5965049e75a9262d0393"},{"data":{"created":"2014-02-26T21:15:17.640Z","credentials":{"district_username":"morganr91","district_password":"ooxap0ohBor"},"district":"4fd43cc56d11340000000005","dob":"1/3/2005","ell_status":"N","email":"morgan_r@example.com","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.037Z","location":{"zip":"10032"},"name":{"first":"Morgan","middle":"B","last":"Rempel"},"race":"Two
667
- or More Races","school":"530e595026403103360ff9fe","sis_id":"621061691","state_id":"248019636","student_number":"621061691","id":"530e5965049e75a9262d0394"},"uri":"/v1.1/students/530e5965049e75a9262d0394"},{"data":{"created":"2014-02-26T21:15:17.646Z","credentials":{"district_username":"paulg39","district_password":"bah6EaGus6y"},"district":"4fd43cc56d11340000000005","dob":"3/22/1999","ell_status":"Y","email":"g_paul@example.com","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.040Z","location":{"zip":"11411"},"name":{"first":"Paul","middle":"M","last":"Gislason"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"621235139","state_id":"663170417","student_number":"621235139","id":"530e5965049e75a9262d0395"},"uri":"/v1.1/students/530e5965049e75a9262d0395"},{"data":{"created":"2014-02-26T21:15:17.651Z","credentials":{"district_username":"juanw07","district_password":"kaishiike0Qu"},"district":"4fd43cc56d11340000000005","dob":"12/1/1999","ell_status":"N","email":"w.juan@example.org","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.044Z","location":{"zip":"10468"},"name":{"first":"Juan","middle":"E","last":"Wintheiser"},"race":"Two
668
- or More Races","school":"530e595026403103360ff9ff","sis_id":"622652907","state_id":"414538817","student_number":"622652907","id":"530e5965049e75a9262d0396"},"uri":"/v1.1/students/530e5965049e75a9262d0396"},{"data":{"created":"2014-02-26T21:15:17.664Z","credentials":{"district_username":"johnnieb54","district_password":"lax9aes5Ae"},"district":"4fd43cc56d11340000000005","dob":"6/25/2002","ell_status":"N","email":"b_johnnie@example.com","frl_status":"Paid","gender":"M","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.049Z","location":{"zip":"11224"},"name":{"first":"Johnnie","middle":"L","last":"Breitenberg"},"race":"Two
669
- or More Races","school":"530e595026403103360ff9fe","sis_id":"624610854","state_id":"740156022","student_number":"624610854","id":"530e5965049e75a9262d0399"},"uri":"/v1.1/students/530e5965049e75a9262d0399"},{"data":{"created":"2014-02-26T21:15:17.680Z","credentials":{"district_username":"nicholasw89","district_password":"eePie5ee"},"district":"4fd43cc56d11340000000005","dob":"4/24/1999","ell_status":"Y","email":"nicholas.w@example.org","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.053Z","location":{"zip":"11362"},"name":{"first":"Nicholas","middle":"L","last":"Windler"},"race":"Two
670
- or More Races","school":"530e595026403103360ff9ff","sis_id":"625091889","state_id":"299562430","student_number":"625091889","id":"530e5965049e75a9262d039c"},"uri":"/v1.1/students/530e5965049e75a9262d039c"},{"data":{"created":"2014-02-26T21:15:17.686Z","credentials":{"district_username":"lillianc94","district_password":"xaeTh4queoh"},"district":"4fd43cc56d11340000000005","dob":"1/31/1997","ell_status":"N","email":"lillian_c@example.org","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.056Z","location":{"zip":"11427"},"name":{"first":"Lillian","middle":"E","last":"Cormier"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"626335794","state_id":"290358083","student_number":"626335794","id":"530e5965049e75a9262d039e"},"uri":"/v1.1/students/530e5965049e75a9262d039e"},{"data":{"created":"2014-02-26T21:15:17.692Z","credentials":{"district_username":"timothyg00","district_password":"aimaeQu7eer9"},"district":"4fd43cc56d11340000000005","dob":"3/10/1999","ell_status":"N","email":"timothy_g@example.org","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.060Z","location":{"zip":"11372"},"name":{"first":"Timothy","middle":"G","last":"Greenfelder"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"627034900","state_id":"728439062","student_number":"627034900","id":"530e5965049e75a9262d03a0"},"uri":"/v1.1/students/530e5965049e75a9262d03a0"},{"data":{"created":"2014-02-26T21:15:17.698Z","credentials":{"district_username":"eliap65","district_password":"waikai2ooDee"},"district":"4fd43cc56d11340000000005","dob":"4/25/1998","ell_status":"N","email":"elia_p@example.org","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.065Z","location":{"zip":"11415"},"name":{"first":"Elia","middle":"L","last":"Pfannerstill"},"race":"Black
671
- or African American","school":"530e595026403103360ff9fd","sis_id":"627522665","state_id":"249235933","student_number":"627522665","id":"530e5965049e75a9262d03a2"},"uri":"/v1.1/students/530e5965049e75a9262d03a2"},{"data":{"created":"2014-02-26T21:15:17.706Z","credentials":{"district_username":"carolm77","district_password":"Ietegae3I"},"district":"4fd43cc56d11340000000005","dob":"4/29/1998","ell_status":"Y","email":"m_carol@example.org","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.069Z","location":{"zip":"11232"},"name":{"first":"Carol","middle":"S","last":"Murray"},"race":"Two
672
- or More Races","school":"530e595026403103360ff9fd","sis_id":"628077377","state_id":"894875186","student_number":"628077377","id":"530e5965049e75a9262d03a5"},"uri":"/v1.1/students/530e5965049e75a9262d03a5"},{"data":{"created":"2014-02-26T21:15:17.712Z","credentials":{"district_username":"rhondab90","district_password":"QuiZogh1"},"district":"4fd43cc56d11340000000005","dob":"5/22/2004","ell_status":"Y","email":"rhonda.b@example.com","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.071Z","location":{"zip":"11204"},"name":{"first":"Rhonda","middle":"R","last":"Batz"},"race":"Black
673
- or African American","school":"530e595026403103360ff9fe","sis_id":"628481290","state_id":"164393377","student_number":"628481290","id":"530e5965049e75a9262d03a7"},"uri":"/v1.1/students/530e5965049e75a9262d03a7"},{"data":{"created":"2014-02-26T21:15:17.721Z","credentials":{"district_username":"chelseam21","district_password":"daeFo6veh"},"district":"4fd43cc56d11340000000005","dob":"12/23/2000","ell_status":"N","email":"chelsea_m@example.org","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.075Z","location":{"zip":"10029"},"name":{"first":"Chelsea","middle":"J","last":"Morissette"},"race":"Two
674
- or More Races","school":"530e595026403103360ff9ff","sis_id":"631403921","state_id":"579608287","student_number":"631403921","id":"530e5965049e75a9262d03aa"},"uri":"/v1.1/students/530e5965049e75a9262d03aa"},{"data":{"created":"2014-02-26T21:15:17.739Z","credentials":{"district_username":"henryf37","district_password":"ahZae1eesh"},"district":"4fd43cc56d11340000000005","dob":"5/29/2003","ell_status":"N","email":"henry.f@example.com","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.080Z","location":{"zip":"11421"},"name":{"first":"Henry","middle":"L","last":"Farrell"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"634370737","state_id":"111780023","student_number":"634370737","id":"530e5965049e75a9262d03b0"},"uri":"/v1.1/students/530e5965049e75a9262d03b0"},{"data":{"created":"2014-02-26T21:15:17.745Z","credentials":{"district_username":"marciar30","district_password":"yaeNai6oyu0"},"district":"4fd43cc56d11340000000005","dob":"5/22/2007","ell_status":"Y","email":"r_marcia@example.org","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.084Z","location":{"zip":"11428"},"name":{"first":"Marcia","middle":"R","last":"Rippin"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"635560230","state_id":"356834343","student_number":"635560230","id":"530e5965049e75a9262d03b2"},"uri":"/v1.1/students/530e5965049e75a9262d03b2"},{"data":{"created":"2014-02-26T21:15:17.753Z","credentials":{"district_username":"catherines92","district_password":"sheeN0im0vee"},"district":"4fd43cc56d11340000000005","dob":"1/29/2006","ell_status":"N","email":"catherine_s@example.net","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.087Z","location":{"zip":"10022"},"name":{"first":"Catherine","middle":"M","last":"Schaefer"},"race":"Black
675
- or African American","school":"530e595026403103360ff9fe","sis_id":"636094492","state_id":"187787907","student_number":"636094492","id":"530e5965049e75a9262d03b5"},"uri":"/v1.1/students/530e5965049e75a9262d03b5"},{"data":{"created":"2014-02-26T21:15:17.758Z","credentials":{"district_username":"marvink72","district_password":"XieC1pha0Aa"},"district":"4fd43cc56d11340000000005","dob":"7/29/1997","ell_status":"Y","email":"k.marvin@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.090Z","location":{"zip":"10033"},"name":{"first":"Marvin","middle":"R","last":"Kerluke"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"636206672","state_id":"513617328","student_number":"636206672","id":"530e5965049e75a9262d03b6"},"uri":"/v1.1/students/530e5965049e75a9262d03b6"},{"data":{"created":"2014-02-26T21:15:17.764Z","credentials":{"district_username":"brandons01","district_password":"uuGhie5poo"},"district":"4fd43cc56d11340000000005","dob":"2/9/2001","ell_status":"Y","email":"s.brandon@example.com","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.095Z","location":{"zip":"10303"},"name":{"first":"Brandon","middle":"D","last":"Satterfield"},"race":"Black
676
- or African American","school":"530e595026403103360ff9ff","sis_id":"636675101","state_id":"341635613","student_number":"636675101","id":"530e5965049e75a9262d03b7"},"uri":"/v1.1/students/530e5965049e75a9262d03b7"},{"data":{"created":"2014-02-26T21:15:17.768Z","credentials":{"district_username":"bettyg52","district_password":"ahd1eiceeV"},"district":"4fd43cc56d11340000000005","dob":"8/21/1999","ell_status":"Y","email":"g_betty@example.net","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.099Z","location":{"zip":"10026"},"name":{"first":"Betty","middle":"A","last":"Graham"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"636776752","state_id":"694201438","student_number":"636776752","id":"530e5965049e75a9262d03b8"},"uri":"/v1.1/students/530e5965049e75a9262d03b8"}],"links":[{"rel":"self","uri":"/v1.1/students?starting_after=530e5964049e75a9262d02e7"},{"rel":"prev","uri":"/v1.1/students?ending_before=530e5964049e75a9262d02e9"},{"rel":"next","uri":"/v1.1/students?starting_after=530e5965049e75a9262d03b8"}]}'
677
- http_version:
678
- recorded_at: Sat, 13 Sep 2014 00:03:51 GMT
679
- - request:
680
- method: get
681
- uri: https://api.clever.com//v1.1/students?starting_after=530e5965049e75a9262d03b8
682
- body:
683
- encoding: US-ASCII
684
- string: ''
685
- headers:
686
- Accept:
687
- - ! '*/*; q=0.5, application/xml'
688
- Accept-Encoding:
689
- - gzip, deflate
690
- Authorization:
691
- - Bearer DEMO_TOKEN
692
- User-Agent:
693
- - Ruby
694
- response:
695
- status:
696
- code: 200
697
- message: OK
698
- headers:
699
- Access-Control-Allow-Headers:
700
- - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
701
- Access-Control-Allow-Methods:
702
- - GET,PATCH,POST,DELETE
703
- Access-Control-Allow-Origin:
704
- - ! '*'
705
- Content-Type:
706
- - application/json; charset=utf-8
707
- Date:
708
- - Sat, 13 Sep 2014 00:03:52 GMT
709
- Etag:
710
- - ! '"419409629"'
711
- Server:
712
- - nginx/1.4.7
713
- X-Powered-By:
714
- - Express
715
- Content-Length:
716
- - '66261'
717
- Connection:
718
- - keep-alive
719
- body:
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
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
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
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
725
- or African American","school":"530e595026403103360ff9fe","sis_id":"642055693","state_id":"254944008","student_number":"642055693","id":"530e5965049e75a9262d03c1"},"uri":"/v1.1/students/530e5965049e75a9262d03c1"},{"data":{"created":"2014-02-26T21:15:17.814Z","credentials":{"district_username":"fredo84","district_password":"Eithei5ael"},"district":"4fd43cc56d11340000000005","dob":"7/25/1999","ell_status":"N","email":"o.fred@example.net","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.138Z","location":{"zip":"10029"},"name":{"first":"Fred","middle":"K","last":"O''Hara"},"race":"American
726
- Indian","school":"530e595026403103360ff9ff","sis_id":"642175884","state_id":"899083807","student_number":"642175884","id":"530e5965049e75a9262d03c2"},"uri":"/v1.1/students/530e5965049e75a9262d03c2"},{"data":{"created":"2014-02-26T21:15:17.819Z","credentials":{"district_username":"donaldw78","district_password":"iPha9oomoh"},"district":"4fd43cc56d11340000000005","dob":"7/10/2001","ell_status":"Y","email":"w_donald@example.com","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.143Z","location":{"zip":"10304"},"name":{"first":"Donald","middle":"E","last":"Waelchi"},"race":"Black
727
- or African American","school":"530e595026403103360ff9ff","sis_id":"642482378","state_id":"249238815","student_number":"642482378","id":"530e5965049e75a9262d03c3"},"uri":"/v1.1/students/530e5965049e75a9262d03c3"},{"data":{"created":"2014-02-26T21:15:17.823Z","credentials":{"district_username":"sabrinah70","district_password":"gePhoo9we"},"district":"4fd43cc56d11340000000005","dob":"8/7/2004","ell_status":"Y","email":"sabrina.h@example.com","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.147Z","location":{"zip":"11228"},"name":{"first":"Sabrina","middle":"P","last":"Hane"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"642600270","state_id":"814086670","student_number":"642600270","id":"530e5965049e75a9262d03c4"},"uri":"/v1.1/students/530e5965049e75a9262d03c4"},{"data":{"created":"2014-02-26T21:15:17.827Z","credentials":{"district_username":"annm01","district_password":"phaeb4Eiy"},"district":"4fd43cc56d11340000000005","dob":"9/3/2001","ell_status":"N","email":"ann_m@example.com","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.149Z","location":{"zip":"11412"},"name":{"first":"Ann","middle":"J","last":"Mayer"},"race":"Two
728
- or More Races","school":"530e595026403103360ff9ff","sis_id":"643079801","state_id":"215619855","student_number":"643079801","id":"530e5965049e75a9262d03c5"},"uri":"/v1.1/students/530e5965049e75a9262d03c5"},{"data":{"created":"2014-02-26T21:15:17.833Z","credentials":{"district_username":"scottyg60","district_password":"NoX6bah3bah"},"district":"4fd43cc56d11340000000005","dob":"9/6/2007","ell_status":"N","email":"scotty.g@example.org","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.153Z","location":{"zip":"11691"},"name":{"first":"Scotty","middle":"J","last":"Grant"},"race":"Two
729
- or More Races","school":"530e595026403103360ff9fe","sis_id":"643519160","state_id":"935239522","student_number":"643519160","id":"530e5965049e75a9262d03c6"},"uri":"/v1.1/students/530e5965049e75a9262d03c6"},{"data":{"created":"2014-02-26T21:15:17.842Z","credentials":{"district_username":"johnm59","district_password":"waeGhaes6qu"},"district":"4fd43cc56d11340000000005","dob":"12/2/2000","ell_status":"Y","email":"m_john@example.com","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.158Z","location":{"zip":"11422"},"name":{"first":"John","middle":"R","last":"Murphy"},"race":"Black
730
- or African American","school":"530e595026403103360ff9ff","sis_id":"645135159","state_id":"311957464","student_number":"645135159","id":"530e5965049e75a9262d03c7"},"uri":"/v1.1/students/530e5965049e75a9262d03c7"},{"data":{"created":"2014-02-26T21:15:17.847Z","credentials":{"district_username":"manuelw42","district_password":"uSh2ir4ee"},"district":"4fd43cc56d11340000000005","dob":"12/28/2003","ell_status":"N","email":"w.manuel@example.org","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.162Z","location":{"zip":"11239"},"name":{"first":"Manuel","middle":"E","last":"Willms"},"race":"Black
731
- or African American","school":"530e595026403103360ff9fe","sis_id":"645294442","state_id":"489377271","student_number":"645294442","id":"530e5965049e75a9262d03c8"},"uri":"/v1.1/students/530e5965049e75a9262d03c8"},{"data":{"created":"2014-02-26T21:15:17.855Z","credentials":{"district_username":"caryw48","district_password":"joo4Aet4eehee"},"district":"4fd43cc56d11340000000005","dob":"2/23/2002","ell_status":"Y","email":"cary.w@example.com","frl_status":"Paid","gender":"M","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.165Z","location":{"zip":"11360"},"name":{"first":"Cary","middle":"M","last":"Wisozk"},"race":"Black
732
- or African American","school":"530e595026403103360ff9fe","sis_id":"646374648","state_id":"768424826","student_number":"646374648","id":"530e5965049e75a9262d03c9"},"uri":"/v1.1/students/530e5965049e75a9262d03c9"},{"data":{"created":"2014-02-26T21:15:17.863Z","credentials":{"district_username":"georgeh56","district_password":"riaP6eej"},"district":"4fd43cc56d11340000000005","dob":"8/12/2003","ell_status":"N","email":"george.h@example.org","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.168Z","location":{"zip":"10011"},"name":{"first":"George","middle":"W","last":"Homenick"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"647971756","state_id":"122122772","student_number":"647971756","id":"530e5965049e75a9262d03ca"},"uri":"/v1.1/students/530e5965049e75a9262d03ca"},{"data":{"created":"2014-02-26T21:15:17.870Z","credentials":{"district_username":"jenniferc22","district_password":"Ge7ooyoo5"},"district":"4fd43cc56d11340000000005","dob":"4/22/2006","ell_status":"N","email":"c.jennifer@example.com","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.174Z","location":{"zip":"11221"},"name":{"first":"Jennifer","middle":"C","last":"Crist"},"race":"Two
733
- or More Races","school":"530e595026403103360ff9fe","sis_id":"648517322","state_id":"799383084","student_number":"648517322","id":"530e5965049e75a9262d03cb"},"uri":"/v1.1/students/530e5965049e75a9262d03cb"},{"data":{"created":"2014-02-26T21:15:17.876Z","credentials":{"district_username":"marthab24","district_password":"iiban1oB6"},"district":"4fd43cc56d11340000000005","dob":"10/21/1995","ell_status":"N","email":"martha_b@example.org","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.178Z","location":{"zip":"10466"},"name":{"first":"Martha","middle":"T","last":"Borer"},"race":"Black
734
- or African American","school":"530e595026403103360ff9fd","sis_id":"648931624","state_id":"547289803","student_number":"648931624","id":"530e5965049e75a9262d03cd"},"uri":"/v1.1/students/530e5965049e75a9262d03cd"},{"data":{"created":"2014-02-26T21:15:17.881Z","credentials":{"district_username":"albertl36","district_password":"teeP8eighaiSh"},"district":"4fd43cc56d11340000000005","dob":"10/25/1997","ell_status":"N","email":"l.albert@example.org","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.181Z","location":{"zip":"11413"},"name":{"first":"Albert","middle":"S","last":"Langworth"},"race":"Black
735
- or African American","school":"530e595026403103360ff9fd","sis_id":"649181136","state_id":"618214754","student_number":"649181136","id":"530e5965049e75a9262d03cf"},"uri":"/v1.1/students/530e5965049e75a9262d03cf"},{"data":{"created":"2014-02-26T21:15:17.897Z","credentials":{"district_username":"celinan04","district_password":"phaifeCho0"},"district":"4fd43cc56d11340000000005","dob":"5/28/1997","ell_status":"N","email":"celina_n@example.com","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.185Z","location":{"zip":"11105"},"name":{"first":"Celina","middle":"C","last":"Nitzsche"},"race":"Black
736
- or African American","school":"530e595026403103360ff9fd","sis_id":"649203804","state_id":"172754979","student_number":"649203804","id":"530e5965049e75a9262d03d2"},"uri":"/v1.1/students/530e5965049e75a9262d03d2"},{"data":{"created":"2014-02-26T21:15:17.904Z","credentials":{"district_username":"lisaw86","district_password":"eehah4ooVei"},"district":"4fd43cc56d11340000000005","dob":"12/9/1999","ell_status":"N","email":"w_lisa@example.com","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.190Z","location":{"zip":"10454"},"name":{"first":"Lisa","middle":"P","last":"Weissnat"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"649455886","state_id":"163667209","student_number":"649455886","id":"530e5965049e75a9262d03d5"},"uri":"/v1.1/students/530e5965049e75a9262d03d5"},{"data":{"created":"2014-02-26T21:15:17.918Z","credentials":{"district_username":"bryanf51","district_password":"euR5oong"},"district":"4fd43cc56d11340000000005","dob":"6/12/2000","ell_status":"Y","email":"bryan_f@example.org","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.195Z","location":{"zip":"11429"},"name":{"first":"Bryan","middle":"J","last":"Fisher"},"race":"Black
737
- or African American","school":"530e595026403103360ff9ff","sis_id":"650662151","state_id":"519655342","student_number":"650662151","id":"530e5965049e75a9262d03d8"},"uri":"/v1.1/students/530e5965049e75a9262d03d8"},{"data":{"created":"2014-02-26T21:15:17.923Z","credentials":{"district_username":"selinah75","district_password":"Io1sohzaewie"},"district":"4fd43cc56d11340000000005","dob":"2/16/2005","ell_status":"N","email":"h.selina@example.net","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.198Z","location":{"zip":"11228"},"name":{"first":"Selina","middle":"C","last":"Hilpert"},"race":"Black
738
- or African American","school":"530e595026403103360ff9fe","sis_id":"650695875","state_id":"337874751","student_number":"650695875","id":"530e5965049e75a9262d03da"},"uri":"/v1.1/students/530e5965049e75a9262d03da"},{"data":{"created":"2014-02-26T21:15:17.930Z","credentials":{"district_username":"gracec16","district_password":"Jae0oomee"},"district":"4fd43cc56d11340000000005","dob":"6/8/2000","ell_status":"Y","email":"grace_c@example.com","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.203Z","location":{"zip":"11106"},"name":{"first":"Grace","middle":"E","last":"Connelly"},"race":"Black
739
- or African American","school":"530e595026403103360ff9ff","sis_id":"651673216","state_id":"143944448","student_number":"651673216","id":"530e5965049e75a9262d03dd"},"uri":"/v1.1/students/530e5965049e75a9262d03dd"},{"data":{"created":"2014-02-26T21:15:17.935Z","credentials":{"district_username":"jamesv98","district_password":"Jahthei2Woh"},"district":"4fd43cc56d11340000000005","dob":"4/11/2000","ell_status":"Y","email":"v_james@example.net","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.209Z","location":{"zip":"10031"},"name":{"first":"James","middle":"F","last":"Vandervort"},"race":"Black
740
- or African American","school":"530e595026403103360ff9ff","sis_id":"651971298","state_id":"547963262","student_number":"651971298","id":"530e5965049e75a9262d03df"},"uri":"/v1.1/students/530e5965049e75a9262d03df"},{"data":{"created":"2014-02-26T21:15:17.956Z","credentials":{"district_username":"markm63","district_password":"ooy7ahyaGoh"},"district":"4fd43cc56d11340000000005","dob":"3/18/1995","ell_status":"Y","email":"mark.m@example.net","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.213Z","location":{"zip":"11233"},"name":{"first":"Mark","middle":"R","last":"Moore"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"653695663","state_id":"453459725","student_number":"653695663","id":"530e5965049e75a9262d03e5"},"uri":"/v1.1/students/530e5965049e75a9262d03e5"},{"data":{"created":"2014-02-26T21:15:17.963Z","credentials":{"district_username":"sandyc56","district_password":"shai6EWitaqu"},"district":"4fd43cc56d11340000000005","dob":"8/22/1997","ell_status":"Y","email":"c_sandy@example.net","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.217Z","location":{"zip":"10303"},"name":{"first":"Sandy","middle":"S","last":"Conn"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"654104256","state_id":"149944185","student_number":"654104256","id":"530e5965049e75a9262d03e8"},"uri":"/v1.1/students/530e5965049e75a9262d03e8"},{"data":{"created":"2014-02-26T21:15:17.972Z","credentials":{"district_username":"williamj54","district_password":"thahP3Rei"},"district":"4fd43cc56d11340000000005","dob":"4/2/1999","ell_status":"N","email":"j.william@example.com","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.230Z","location":{"zip":"10305"},"name":{"first":"William","middle":"N","last":"Johns"},"race":"American
741
- Indian","school":"530e595026403103360ff9ff","sis_id":"655275354","state_id":"255868070","student_number":"655275354","id":"530e5965049e75a9262d03ea"},"uri":"/v1.1/students/530e5965049e75a9262d03ea"},{"data":{"created":"2014-02-26T21:15:17.978Z","credentials":{"district_username":"amberm75","district_password":"xei3oS3zu3l"},"district":"4fd43cc56d11340000000005","dob":"3/10/2005","ell_status":"N","email":"amber.m@example.com","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.236Z","location":{"zip":"10301"},"name":{"first":"Amber","middle":"J","last":"Moen"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"657014975","state_id":"911509760","student_number":"657014975","id":"530e5965049e75a9262d03eb"},"uri":"/v1.1/students/530e5965049e75a9262d03eb"},{"data":{"created":"2014-02-26T21:15:17.985Z","credentials":{"district_username":"candyy10","district_password":"Ou0ohQu4"},"district":"4fd43cc56d11340000000005","dob":"10/18/2003","ell_status":"Y","email":"candy.y@example.net","frl_status":"Paid","gender":"F","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.240Z","location":{"zip":"10002"},"name":{"first":"Candy","middle":"C","last":"Yost"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"658715110","state_id":"556091516","student_number":"658715110","id":"530e5965049e75a9262d03ec"},"uri":"/v1.1/students/530e5965049e75a9262d03ec"},{"data":{"created":"2014-02-26T21:15:17.991Z","credentials":{"district_username":"andrewr30","district_password":"pisaiLi2ie"},"district":"4fd43cc56d11340000000005","dob":"9/11/2006","ell_status":"Y","email":"r.andrew@example.com","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.242Z","location":{"zip":"11359"},"name":{"first":"Andrew","middle":"K","last":"Reilly"},"race":"American
742
- Indian","school":"530e595026403103360ff9fe","sis_id":"659578830","state_id":"746205214","student_number":"659578830","id":"530e5965049e75a9262d03ed"},"uri":"/v1.1/students/530e5965049e75a9262d03ed"},{"data":{"created":"2014-02-26T21:15:17.995Z","credentials":{"district_username":"lilliant51","district_password":"xaeTh4queoh"},"district":"4fd43cc56d11340000000005","dob":"4/7/1995","ell_status":"N","email":"t_lillian@example.org","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.246Z","location":{"zip":"11102"},"name":{"first":"Lillian","middle":"E","last":"Torphy"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"659613151","state_id":"363781585","student_number":"659613151","id":"530e5965049e75a9262d03ee"},"uri":"/v1.1/students/530e5965049e75a9262d03ee"},{"data":{"created":"2014-02-26T21:15:17.999Z","credentials":{"district_username":"freddiec49","district_password":"SieKoCohy2m"},"district":"4fd43cc56d11340000000005","dob":"12/21/2006","ell_status":"N","email":"freddie_c@example.net","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.252Z","location":{"zip":"11375"},"name":{"first":"Freddie","middle":"M","last":"Cormier"},"race":"Two
743
- or More Races","school":"530e595026403103360ff9fe","sis_id":"660345149","state_id":"313540891","student_number":"660345149","id":"530e5965049e75a9262d03ef"},"uri":"/v1.1/students/530e5965049e75a9262d03ef"},{"data":{"created":"2014-02-26T21:15:18.008Z","credentials":{"district_username":"edwardk79","district_password":"lohmooTu1ae"},"district":"4fd43cc56d11340000000005","dob":"10/5/1999","ell_status":"N","email":"k_edward@example.com","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.256Z","location":{"zip":"10027"},"name":{"first":"Edward","middle":"Y","last":"Kohler"},"race":"American
744
- Indian","school":"530e595026403103360ff9ff","sis_id":"661009179","state_id":"751562625","student_number":"661009179","id":"530e5966049e75a9262d03f0"},"uri":"/v1.1/students/530e5966049e75a9262d03f0"},{"data":{"created":"2014-02-26T21:15:18.012Z","credentials":{"district_username":"fernandal18","district_password":"Oh3thah1oo"},"district":"4fd43cc56d11340000000005","dob":"2/9/2005","ell_status":"Y","email":"fernanda_l@example.net","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.258Z","location":{"zip":"10460"},"name":{"first":"Fernanda","middle":"C","last":"Labadie"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"661157318","state_id":"361920109","student_number":"661157318","id":"530e5966049e75a9262d03f1"},"uri":"/v1.1/students/530e5966049e75a9262d03f1"},{"data":{"created":"2014-02-26T21:15:18.018Z","credentials":{"district_username":"carolyna50","district_password":"eiph0iQu"},"district":"4fd43cc56d11340000000005","dob":"7/13/1996","ell_status":"N","email":"a.carolyn@example.org","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.262Z","location":{"zip":"10467"},"name":{"first":"Carolyn","middle":"A","last":"Auer"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"664785050","state_id":"900494431","student_number":"664785050","id":"530e5966049e75a9262d03f2"},"uri":"/v1.1/students/530e5966049e75a9262d03f2"},{"data":{"created":"2014-02-26T21:15:18.025Z","credentials":{"district_username":"thomasr07","district_password":"Pai3dav5"},"district":"4fd43cc56d11340000000005","dob":"2/20/1995","ell_status":"N","email":"thomas_r@example.org","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.268Z","location":{"zip":"11427"},"name":{"first":"Thomas","middle":"M","last":"Rutherford"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"665036307","state_id":"896758176","student_number":"665036307","id":"530e5966049e75a9262d03f3"},"uri":"/v1.1/students/530e5966049e75a9262d03f3"},{"data":{"created":"2014-02-26T21:15:18.030Z","credentials":{"district_username":"matthewm86","district_password":"shohS2eela"},"district":"4fd43cc56d11340000000005","dob":"8/24/2003","ell_status":"N","email":"matthew.m@example.org","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.272Z","location":{"zip":"10472"},"name":{"first":"Matthew","middle":"S","last":"Mitchell"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"665673686","state_id":"824962030","student_number":"665673686","id":"530e5966049e75a9262d03f4"},"uri":"/v1.1/students/530e5966049e75a9262d03f4"},{"data":{"created":"2014-02-26T21:15:18.039Z","credentials":{"district_username":"marjoriel38","district_password":"ien7fam3Ai"},"district":"4fd43cc56d11340000000005","dob":"2/10/1997","ell_status":"N","email":"marjorie_l@example.com","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.275Z","location":{"zip":"10474"},"name":{"first":"Marjorie","middle":"J","last":"Leannon"},"race":"Two
745
- or More Races","school":"530e595026403103360ff9fd","sis_id":"667971238","state_id":"449513919","student_number":"667971238","id":"530e5966049e75a9262d03f5"},"uri":"/v1.1/students/530e5966049e75a9262d03f5"},{"data":{"created":"2014-02-26T21:15:18.046Z","credentials":{"district_username":"angelar65","district_password":"CeimeoHo7r"},"district":"4fd43cc56d11340000000005","dob":"5/13/1995","ell_status":"N","email":"angela_r@example.org","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.279Z","location":{"zip":"10475"},"name":{"first":"Angela","middle":"S","last":"Ryan"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"669011065","state_id":"832891433","student_number":"669011065","id":"530e5966049e75a9262d03f6"},"uri":"/v1.1/students/530e5966049e75a9262d03f6"},{"data":{"created":"2014-02-26T21:15:18.053Z","credentials":{"district_username":"julied89","district_password":"dohquooY6cah"},"district":"4fd43cc56d11340000000005","dob":"9/13/1998","ell_status":"N","email":"d.julie@example.org","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.284Z","location":{"zip":"10019"},"name":{"first":"Julie","middle":"T","last":"Davis"},"race":"Black
746
- or African American","school":"530e595026403103360ff9fd","sis_id":"669460589","state_id":"342163429","student_number":"669460589","id":"530e5966049e75a9262d03f8"},"uri":"/v1.1/students/530e5966049e75a9262d03f8"},{"data":{"created":"2014-02-26T21:15:18.059Z","credentials":{"district_username":"trisham27","district_password":"Eizei4AeZa"},"district":"4fd43cc56d11340000000005","dob":"11/7/2001","ell_status":"Y","email":"m.trisha@example.com","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.288Z","location":{"zip":"10044"},"name":{"first":"Trisha","middle":"H","last":"Mante"},"race":"Two
747
- or More Races","school":"530e595026403103360ff9ff","sis_id":"670263627","state_id":"324061512","student_number":"670263627","id":"530e5966049e75a9262d03fa"},"uri":"/v1.1/students/530e5966049e75a9262d03fa"},{"data":{"created":"2014-02-26T21:15:18.067Z","credentials":{"district_username":"corinaw11","district_password":"Eiph5aeX"},"district":"4fd43cc56d11340000000005","dob":"5/17/1998","ell_status":"N","email":"corina.w@example.com","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-08-11T18:34:47.070Z","location":{"zip":"10004"},"name":{"first":"Corina","middle":"L","last":"Watsica"},"race":"American
748
- Indian","school":"530e595026403103360ff9fd","sis_id":"670807511","state_id":"814185233","student_number":"670807511","id":"530e5966049e75a9262d03fc"},"uri":"/v1.1/students/530e5966049e75a9262d03fc"},{"data":{"created":"2014-02-26T21:15:18.080Z","credentials":{"district_username":"josephk32","district_password":"ohpaishiv0E"},"district":"4fd43cc56d11340000000005","dob":"2/22/2004","ell_status":"N","email":"joseph.k@example.net","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.294Z","location":{"zip":"11415"},"name":{"first":"Joseph","middle":"D","last":"King"},"race":"Black
749
- or African American","school":"530e595026403103360ff9fe","sis_id":"671902232","state_id":"756365513","student_number":"671902232","id":"530e5966049e75a9262d0401"},"uri":"/v1.1/students/530e5966049e75a9262d0401"},{"data":{"created":"2014-02-26T21:15:18.110Z","credentials":{"district_username":"charlesk70","district_password":"Oogh5ia5ei"},"district":"4fd43cc56d11340000000005","dob":"10/2/1996","ell_status":"Y","email":"charles_k@example.org","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.299Z","location":{"zip":"10044"},"name":{"first":"Charles","middle":"T","last":"Kessler"},"race":"American
750
- Indian","school":"530e595026403103360ff9fd","sis_id":"674120970","state_id":"522083031","student_number":"674120970","id":"530e5966049e75a9262d0408"},"uri":"/v1.1/students/530e5966049e75a9262d0408"},{"data":{"created":"2014-02-26T21:15:18.116Z","credentials":{"district_username":"florencer56","district_password":"ahdais3ahDai"},"district":"4fd43cc56d11340000000005","dob":"5/16/2007","ell_status":"Y","email":"florence_r@example.org","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.303Z","location":{"zip":"11422"},"name":{"first":"Florence","middle":"P","last":"Rowe"},"race":"Two
751
- or More Races","school":"530e595026403103360ff9fe","sis_id":"674331356","state_id":"471195555","student_number":"674331356","id":"530e5966049e75a9262d040a"},"uri":"/v1.1/students/530e5966049e75a9262d040a"},{"data":{"created":"2014-02-26T21:15:18.121Z","credentials":{"district_username":"michaelm52","district_password":"eisu1ua0ahT"},"district":"4fd43cc56d11340000000005","dob":"8/30/1997","ell_status":"N","email":"m_michael@example.org","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.306Z","location":{"zip":"10039"},"name":{"first":"Michael","middle":"M","last":"Mertz"},"race":"Two
752
- or More Races","school":"530e595026403103360ff9fd","sis_id":"674519152","state_id":"506308109","student_number":"674519152","id":"530e5966049e75a9262d040c"},"uri":"/v1.1/students/530e5966049e75a9262d040c"},{"data":{"created":"2014-02-26T21:15:18.130Z","credentials":{"district_username":"victoriag22","district_password":"Cibaexo8o"},"district":"4fd43cc56d11340000000005","dob":"5/10/1995","ell_status":"N","email":"g_victoria@example.com","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.310Z","location":{"zip":"10469"},"name":{"first":"Victoria","middle":"T","last":"Gerlach"},"race":"Two
753
- or More Races","school":"530e595026403103360ff9fd","sis_id":"675767222","state_id":"714871884","student_number":"675767222","id":"530e5966049e75a9262d040f"},"uri":"/v1.1/students/530e5966049e75a9262d040f"},{"data":{"created":"2014-02-26T21:15:18.138Z","credentials":{"district_username":"arthurm55","district_password":"Oov8xee0sh"},"district":"4fd43cc56d11340000000005","dob":"12/28/2004","ell_status":"N","email":"arthur_m@example.com","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.315Z","location":{"zip":"10309"},"name":{"first":"Arthur","middle":"S","last":"Moen"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"677001855","state_id":"383922738","student_number":"677001855","id":"530e5966049e75a9262d0412"},"uri":"/v1.1/students/530e5966049e75a9262d0412"},{"data":{"created":"2014-02-26T21:15:18.145Z","credentials":{"district_username":"samanthae38","district_password":"idahl2Eiw"},"district":"4fd43cc56d11340000000005","dob":"9/22/1999","ell_status":"N","email":"e_samantha@example.net","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.319Z","location":{"zip":"11691"},"name":{"first":"Samantha","middle":"S","last":"Effertz"},"race":"Two
754
- or More Races","school":"530e595026403103360ff9ff","sis_id":"678117438","state_id":"543168528","student_number":"678117438","id":"530e5966049e75a9262d0414"},"uri":"/v1.1/students/530e5966049e75a9262d0414"},{"data":{"created":"2014-02-26T21:15:18.150Z","credentials":{"district_username":"eugenew90","district_password":"Oke5doog"},"district":"4fd43cc56d11340000000005","dob":"3/2/2004","ell_status":"N","email":"eugene_w@example.net","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.321Z","location":{"zip":"10024"},"name":{"first":"Eugene","middle":"R","last":"Weber"},"race":"Two
755
- or More Races","school":"530e595026403103360ff9fe","sis_id":"678199190","state_id":"119778058","student_number":"678199190","id":"530e5966049e75a9262d0415"},"uri":"/v1.1/students/530e5966049e75a9262d0415"},{"data":{"created":"2014-02-26T21:15:18.153Z","credentials":{"district_username":"maries76","district_password":"rah9RahThi"},"district":"4fd43cc56d11340000000005","dob":"11/17/1996","ell_status":"Y","email":"s_marie@example.net","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.325Z","location":{"zip":"10309"},"name":{"first":"Marie","middle":"D","last":"Streich"},"race":"Black
756
- or African American","school":"530e595026403103360ff9fd","sis_id":"678327576","state_id":"990717624","student_number":"678327576","id":"530e5966049e75a9262d0416"},"uri":"/v1.1/students/530e5966049e75a9262d0416"},{"data":{"created":"2014-02-26T21:15:18.157Z","credentials":{"district_username":"dona97","district_password":"eewizoo3U"},"district":"4fd43cc56d11340000000005","dob":"3/11/2000","ell_status":"Y","email":"don.a@example.org","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.330Z","location":{"zip":"10014"},"name":{"first":"Don","middle":"M","last":"Ankunding"},"race":"Black
757
- or African American","school":"530e595026403103360ff9ff","sis_id":"678578197","state_id":"916066397","student_number":"678578197","id":"530e5966049e75a9262d0417"},"uri":"/v1.1/students/530e5966049e75a9262d0417"},{"data":{"created":"2014-02-26T21:15:18.161Z","credentials":{"district_username":"fredt83","district_password":"Eithei5ael"},"district":"4fd43cc56d11340000000005","dob":"3/9/1997","ell_status":"Y","email":"t.fred@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.334Z","location":{"zip":"11238"},"name":{"first":"Fred","middle":"K","last":"Thompson"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"679118383","state_id":"298005519","student_number":"679118383","id":"530e5966049e75a9262d0418"},"uri":"/v1.1/students/530e5966049e75a9262d0418"},{"data":{"created":"2014-02-26T21:15:18.168Z","credentials":{"district_username":"royv29","district_password":"AeQu6iJuqu"},"district":"4fd43cc56d11340000000005","dob":"11/11/2000","ell_status":"N","email":"v.roy@example.org","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.337Z","location":{"zip":"10028"},"name":{"first":"Roy","middle":"K","last":"VonRueden"},"race":"Black
758
- or African American","school":"530e595026403103360ff9ff","sis_id":"681249529","state_id":"823816027","student_number":"681249529","id":"530e5966049e75a9262d0419"},"uri":"/v1.1/students/530e5966049e75a9262d0419"},{"data":{"created":"2014-02-26T21:15:18.173Z","credentials":{"district_username":"rosalieh31","district_password":"neegh2dohYee"},"district":"4fd43cc56d11340000000005","dob":"5/15/2001","ell_status":"N","email":"h_rosalie@example.net","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.340Z","location":{"zip":"11234"},"name":{"first":"Rosalie","middle":"J","last":"Hessel"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"681268431","state_id":"750252560","student_number":"681268431","id":"530e5966049e75a9262d041a"},"uri":"/v1.1/students/530e5966049e75a9262d041a"},{"data":{"created":"2014-02-26T21:15:18.177Z","credentials":{"district_username":"margaretc10","district_password":"AuDohNg7Phoh"},"district":"4fd43cc56d11340000000005","dob":"2/14/1999","ell_status":"N","email":"margaret_c@example.com","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.345Z","location":{"zip":"11429"},"name":{"first":"Margaret","middle":"C","last":"Crist"},"race":"Two
759
- or More Races","school":"530e595026403103360ff9ff","sis_id":"682236210","state_id":"987673260","student_number":"682236210","id":"530e5966049e75a9262d041b"},"uri":"/v1.1/students/530e5966049e75a9262d041b"},{"data":{"created":"2014-02-26T21:15:18.181Z","credentials":{"district_username":"curtism32","district_password":"ooc5Shee"},"district":"4fd43cc56d11340000000005","dob":"6/3/1997","ell_status":"N","email":"curtis_m@example.org","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.349Z","location":{"zip":"11697"},"name":{"first":"Curtis","middle":"J","last":"Mosciski"},"race":"Black
760
- or African American","school":"530e595026403103360ff9fd","sis_id":"684054632","state_id":"448177879","student_number":"684054632","id":"530e5966049e75a9262d041c"},"uri":"/v1.1/students/530e5966049e75a9262d041c"},{"data":{"created":"2014-02-26T21:15:18.186Z","credentials":{"district_username":"carrieh73","district_password":"zoh6doh4Ie"},"district":"4fd43cc56d11340000000005","dob":"4/19/2002","ell_status":"N","email":"carrie.h@example.org","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.352Z","location":{"zip":"10009"},"name":{"first":"Carrie","middle":"M","last":"Hayes"},"race":"Black
761
- or African American","school":"530e595026403103360ff9fe","sis_id":"684092173","state_id":"398403057","student_number":"684092173","id":"530e5966049e75a9262d041d"},"uri":"/v1.1/students/530e5966049e75a9262d041d"},{"data":{"created":"2014-02-26T21:15:18.191Z","credentials":{"district_username":"jaleesam49","district_password":"ohshu4Ebiesh"},"district":"4fd43cc56d11340000000005","dob":"9/25/2001","ell_status":"N","email":"m.jaleesa@example.net","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.356Z","location":{"zip":"11413"},"name":{"first":"Jaleesa","middle":"J","last":"Mann"},"race":"Two
762
- or More Races","school":"530e595026403103360ff9ff","sis_id":"686072649","state_id":"847192675","student_number":"686072649","id":"530e5966049e75a9262d041e"},"uri":"/v1.1/students/530e5966049e75a9262d041e"},{"data":{"created":"2014-02-26T21:15:18.197Z","credentials":{"district_username":"katherinej50","district_password":"ahShaip3e"},"district":"4fd43cc56d11340000000005","dob":"5/30/2000","ell_status":"N","email":"katherine.j@example.com","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.361Z","location":{"zip":"11415"},"name":{"first":"Katherine","middle":"E","last":"Jacobi"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"686615050","state_id":"667106403","student_number":"686615050","id":"530e5966049e75a9262d041f"},"uri":"/v1.1/students/530e5966049e75a9262d041f"},{"data":{"created":"2014-02-26T21:15:18.204Z","credentials":{"district_username":"florencel16","district_password":"Ooj7jaelahn3"},"district":"4fd43cc56d11340000000005","dob":"2/25/1996","ell_status":"N","email":"florence.l@example.com","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.365Z","location":{"zip":"11360"},"name":{"first":"Florence","middle":"A","last":"Larkin"},"race":"Two
763
- or More Races","school":"530e595026403103360ff9fd","sis_id":"686950016","state_id":"313142998","student_number":"686950016","id":"530e5966049e75a9262d0420"},"uri":"/v1.1/students/530e5966049e75a9262d0420"},{"data":{"created":"2014-02-26T21:15:18.226Z","credentials":{"district_username":"elliottt19","district_password":"Eo6haich"},"district":"4fd43cc56d11340000000005","dob":"8/7/1999","ell_status":"Y","email":"t.elliott@example.com","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.371Z","location":{"zip":"11238"},"name":{"first":"Elliott","middle":"D","last":"Torphy"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"692348919","state_id":"275654042","student_number":"692348919","id":"530e5966049e75a9262d0421"},"uri":"/v1.1/students/530e5966049e75a9262d0421"},{"data":{"created":"2014-02-26T21:15:18.232Z","credentials":{"district_username":"johnf02","district_password":"Mae4eigoh"},"district":"4fd43cc56d11340000000005","dob":"5/6/2005","ell_status":"N","email":"john.f@example.net","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.369Z","location":{"zip":"11428"},"name":{"first":"John","middle":"L","last":"Farrell"},"race":"Two
764
- or More Races","school":"530e595026403103360ff9fe","sis_id":"692005402","state_id":"507691060","student_number":"692005402","id":"530e5966049e75a9262d0423"},"uri":"/v1.1/students/530e5966049e75a9262d0423"},{"data":{"created":"2014-02-26T21:15:18.239Z","credentials":{"district_username":"rosss76","district_password":"ahyas8aeNee"},"district":"4fd43cc56d11340000000005","dob":"12/6/2003","ell_status":"N","email":"ross.s@example.org","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.375Z","location":{"zip":"11357"},"name":{"first":"Ross","middle":"K","last":"Schuster"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"692940276","state_id":"825692717","student_number":"692940276","id":"530e5966049e75a9262d0425"},"uri":"/v1.1/students/530e5966049e75a9262d0425"},{"data":{"created":"2014-02-26T21:15:18.245Z","credentials":{"district_username":"robertd70","district_password":"uZ9ixi6ch"},"district":"4fd43cc56d11340000000005","dob":"9/25/2005","ell_status":"N","email":"d.robert@example.net","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.380Z","location":{"zip":"11221"},"name":{"first":"Robert","middle":"L","last":"Dickens"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"693354670","state_id":"104441798","student_number":"693354670","id":"530e5966049e75a9262d0427"},"uri":"/v1.1/students/530e5966049e75a9262d0427"},{"data":{"created":"2014-02-26T21:15:18.251Z","credentials":{"district_username":"samueld69","district_password":"hah3eiB6ew"},"district":"4fd43cc56d11340000000005","dob":"8/25/1999","ell_status":"Y","email":"samuel_d@example.org","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.384Z","location":{"zip":"11368"},"name":{"first":"Samuel","middle":"D","last":"Dibbert"},"race":"Black
765
- or African American","school":"530e595026403103360ff9ff","sis_id":"693498069","state_id":"206027608","student_number":"693498069","id":"530e5966049e75a9262d0429"},"uri":"/v1.1/students/530e5966049e75a9262d0429"},{"data":{"created":"2014-02-26T21:15:18.255Z","credentials":{"district_username":"drusillas44","district_password":"thee2eeRaW6"},"district":"4fd43cc56d11340000000005","dob":"6/5/1998","ell_status":"Y","email":"drusilla.s@example.org","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.386Z","location":{"zip":"11691"},"name":{"first":"Drusilla","middle":"J","last":"Schmeler"},"race":"Black
766
- or African American","school":"530e595026403103360ff9fd","sis_id":"694713044","state_id":"270231774","student_number":"694713044","id":"530e5966049e75a9262d042b"},"uri":"/v1.1/students/530e5966049e75a9262d042b"},{"data":{"created":"2014-02-26T21:15:18.261Z","credentials":{"district_username":"evanc12","district_password":"Oobe2eseph0i"},"district":"4fd43cc56d11340000000005","dob":"4/8/2007","ell_status":"Y","email":"c.evan@example.com","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.391Z","location":{"zip":"10472"},"name":{"first":"Evan","middle":"M","last":"Cummings"},"race":"Black
767
- or African American","school":"530e595026403103360ff9fe","sis_id":"695797712","state_id":"536664419","student_number":"695797712","id":"530e5966049e75a9262d042d"},"uri":"/v1.1/students/530e5966049e75a9262d042d"},{"data":{"created":"2014-02-26T21:15:18.280Z","credentials":{"district_username":"maryw91","district_password":"Boeth9fuv7Oo"},"district":"4fd43cc56d11340000000005","dob":"5/31/2001","ell_status":"Y","email":"w.mary@example.org","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.395Z","location":{"zip":"11214"},"name":{"first":"Mary","middle":"E","last":"Windler"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"697027591","state_id":"434110874","student_number":"697027591","id":"530e5966049e75a9262d0433"},"uri":"/v1.1/students/530e5966049e75a9262d0433"},{"data":{"created":"2014-02-26T21:15:18.287Z","credentials":{"district_username":"eldonr39","district_password":"Ahgohxo3wie"},"district":"4fd43cc56d11340000000005","dob":"8/20/2005","ell_status":"N","email":"eldon.r@example.net","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.399Z","location":{"zip":"10312"},"name":{"first":"Eldon","middle":"D","last":"Rempel"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"697958339","state_id":"998628002","student_number":"697958339","id":"530e5966049e75a9262d0436"},"uri":"/v1.1/students/530e5966049e75a9262d0436"},{"data":{"created":"2014-02-26T21:15:18.297Z","credentials":{"district_username":"loisr72","district_password":"rah1vaiW7x"},"district":"4fd43cc56d11340000000005","dob":"11/11/2004","ell_status":"Y","email":"r_lois@example.com","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.402Z","location":{"zip":"11214"},"name":{"first":"Lois","middle":"J","last":"Rogahn"},"race":"Black
768
- or African American","school":"530e595026403103360ff9fe","sis_id":"698092572","state_id":"343445752","student_number":"698092572","id":"530e5966049e75a9262d0439"},"uri":"/v1.1/students/530e5966049e75a9262d0439"},{"data":{"created":"2014-02-26T21:15:18.305Z","credentials":{"district_username":"dianee06","district_password":"euM9OoHi3"},"district":"4fd43cc56d11340000000005","dob":"2/9/1997","ell_status":"Y","email":"diane.e@example.com","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.406Z","location":{"zip":"11205"},"name":{"first":"Diane","middle":"J","last":"Ebert"},"race":"Black
769
- or African American","school":"530e595026403103360ff9fd","sis_id":"699580506","state_id":"863045084","student_number":"699580506","id":"530e5966049e75a9262d043c"},"uri":"/v1.1/students/530e5966049e75a9262d043c"},{"data":{"created":"2014-02-26T21:15:18.310Z","credentials":{"district_username":"alicet43","district_password":"ahVu5ush0"},"district":"4fd43cc56d11340000000005","dob":"8/21/1995","ell_status":"Y","email":"t_alice@example.net","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.411Z","location":{"zip":"10021"},"name":{"first":"Alice","middle":"J","last":"Treutel"},"race":"Black
770
- or African American","school":"530e595026403103360ff9fd","sis_id":"700035243","state_id":"379665155","student_number":"700035243","id":"530e5966049e75a9262d043e"},"uri":"/v1.1/students/530e5966049e75a9262d043e"},{"data":{"created":"2014-02-26T21:15:18.324Z","credentials":{"district_username":"tracys35","district_password":"ahn1lohD"},"district":"4fd43cc56d11340000000005","dob":"1/24/2005","ell_status":"N","email":"tracy_s@example.com","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.415Z","location":{"zip":"11206"},"name":{"first":"Tracy","middle":"J","last":"Schroeder"},"race":"Black
771
- or African American","school":"530e595026403103360ff9fe","sis_id":"700263035","state_id":"310454914","student_number":"700263035","id":"530e5966049e75a9262d0440"},"uri":"/v1.1/students/530e5966049e75a9262d0440"},{"data":{"created":"2014-02-26T21:15:18.331Z","credentials":{"district_username":"rosae00","district_password":"Xah2eemei"},"district":"4fd43cc56d11340000000005","dob":"9/20/2002","ell_status":"Y","email":"e.rosa@example.org","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.418Z","location":{"zip":"10012"},"name":{"first":"Rosa","middle":"A","last":"Ebert"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"701045900","state_id":"402430326","student_number":"701045900","id":"530e5966049e75a9262d0442"},"uri":"/v1.1/students/530e5966049e75a9262d0442"},{"data":{"created":"2014-02-26T21:15:18.338Z","credentials":{"district_username":"cliftonm29","district_password":"cheikoh1Ies"},"district":"4fd43cc56d11340000000005","dob":"9/16/2003","ell_status":"Y","email":"m.clifton@example.com","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.430Z","location":{"zip":"10009"},"name":{"first":"Clifton","middle":"A","last":"McKenzie"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"703069929","state_id":"175252129","student_number":"703069929","id":"530e5966049e75a9262d0443"},"uri":"/v1.1/students/530e5966049e75a9262d0443"},{"data":{"created":"2014-02-26T21:15:18.343Z","credentials":{"district_username":"ronaldt05","district_password":"ahGae9Cha"},"district":"4fd43cc56d11340000000005","dob":"2/5/2003","ell_status":"N","email":"t_ronald@example.org","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.436Z","location":{"zip":"10014"},"name":{"first":"Ronald","middle":"M","last":"Turcotte"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"703543805","state_id":"616778201","student_number":"703543805","id":"530e5966049e75a9262d0444"},"uri":"/v1.1/students/530e5966049e75a9262d0444"},{"data":{"created":"2014-02-26T21:15:18.347Z","credentials":{"district_username":"juliar16","district_password":"bohTunaequ1oh"},"district":"4fd43cc56d11340000000005","dob":"6/16/2004","ell_status":"N","email":"r_julia@example.com","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.439Z","location":{"zip":"10312"},"name":{"first":"Julia","middle":"B","last":"Rodriguez"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"703845916","state_id":"828919461","student_number":"703845916","id":"530e5966049e75a9262d0445"},"uri":"/v1.1/students/530e5966049e75a9262d0445"},{"data":{"created":"2014-02-26T21:15:18.354Z","credentials":{"district_username":"tonyad48","district_password":"Quei2iab5v"},"district":"4fd43cc56d11340000000005","dob":"9/8/1999","ell_status":"N","email":"tonya.d@example.net","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.442Z","location":{"zip":"11374"},"name":{"first":"Tonya","middle":"R","last":"Dach"},"race":"Black
772
- or African American","school":"530e595026403103360ff9ff","sis_id":"705431848","state_id":"410108147","student_number":"705431848","id":"530e5966049e75a9262d0446"},"uri":"/v1.1/students/530e5966049e75a9262d0446"},{"data":{"created":"2014-02-26T21:15:18.364Z","credentials":{"district_username":"roberts74","district_password":"noongieDah5"},"district":"4fd43cc56d11340000000005","dob":"9/9/1995","ell_status":"N","email":"s_robert@example.com","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.446Z","location":{"zip":"11364"},"name":{"first":"Robert","middle":"C","last":"Schneider"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"707457674","state_id":"995121789","student_number":"707457674","id":"530e5966049e75a9262d0447"},"uri":"/v1.1/students/530e5966049e75a9262d0447"},{"data":{"created":"2014-02-26T21:15:18.389Z","credentials":{"district_username":"maryr80","district_password":"Kubieng6ee"},"district":"4fd43cc56d11340000000005","dob":"2/14/2007","ell_status":"Y","email":"r.mary@example.com","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.451Z","location":{"zip":"10306"},"name":{"first":"Mary","middle":"P","last":"Rosenbaum"},"race":"Two
773
- or More Races","school":"530e595026403103360ff9fe","sis_id":"710689080","state_id":"348706569","student_number":"710689080","id":"530e5966049e75a9262d0449"},"uri":"/v1.1/students/530e5966049e75a9262d0449"},{"data":{"created":"2014-02-26T21:15:18.397Z","credentials":{"district_username":"bradb94","district_password":"Eidaephesh5b"},"district":"4fd43cc56d11340000000005","dob":"10/6/1995","ell_status":"Y","email":"brad.b@example.org","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.455Z","location":{"zip":"11233"},"name":{"first":"Brad","middle":"B","last":"Borer"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"711071194","state_id":"294985930","student_number":"711071194","id":"530e5966049e75a9262d044c"},"uri":"/v1.1/students/530e5966049e75a9262d044c"},{"data":{"created":"2014-02-26T21:15:18.402Z","credentials":{"district_username":"williamp23","district_password":"Zah6la1fee"},"district":"4fd43cc56d11340000000005","dob":"9/15/1996","ell_status":"Y","email":"william.p@example.com","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.458Z","location":{"zip":"10031"},"name":{"first":"William","middle":"A","last":"Prosacco"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"711917623","state_id":"224362582","student_number":"711917623","id":"530e5966049e75a9262d044e"},"uri":"/v1.1/students/530e5966049e75a9262d044e"},{"data":{"created":"2014-02-26T21:15:18.408Z","credentials":{"district_username":"vanessas65","district_password":"einae2Ich9"},"district":"4fd43cc56d11340000000005","dob":"2/20/2007","ell_status":"Y","email":"s_vanessa@example.com","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.461Z","location":{"zip":"10475"},"name":{"first":"Vanessa","middle":"A","last":"Steuber"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"712538865","state_id":"910741880","student_number":"712538865","id":"530e5966049e75a9262d0451"},"uri":"/v1.1/students/530e5966049e75a9262d0451"},{"data":{"created":"2014-02-26T21:15:18.421Z","credentials":{"district_username":"nolaq47","district_password":"veL3queiNg4k"},"district":"4fd43cc56d11340000000005","dob":"5/16/1997","ell_status":"Y","email":"nola.q@example.net","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.467Z","location":{"zip":"10464"},"name":{"first":"Nola","middle":"D","last":"Quitzon"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"714236347","state_id":"810590544","student_number":"714236347","id":"530e5966049e75a9262d0455"},"uri":"/v1.1/students/530e5966049e75a9262d0455"},{"data":{"created":"2014-02-26T21:15:18.430Z","credentials":{"district_username":"donnab33","district_password":"UegoCh7u"},"district":"4fd43cc56d11340000000005","dob":"8/1/2004","ell_status":"N","email":"donna_b@example.net","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.471Z","location":{"zip":"10029"},"name":{"first":"Donna","middle":"M","last":"Bahringer"},"race":"Two
774
- or More Races","school":"530e595026403103360ff9fe","sis_id":"714376333","state_id":"158332283","student_number":"714376333","id":"530e5966049e75a9262d0458"},"uri":"/v1.1/students/530e5966049e75a9262d0458"},{"data":{"created":"2014-02-26T21:15:18.436Z","credentials":{"district_username":"kims35","district_password":"phee7kah3R"},"district":"4fd43cc56d11340000000005","dob":"11/12/2005","ell_status":"Y","email":"kim.s@example.net","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.473Z","location":{"zip":"10457"},"name":{"first":"Kim","middle":"J","last":"Schumm"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"716759335","state_id":"812092353","student_number":"716759335","id":"530e5966049e75a9262d045a"},"uri":"/v1.1/students/530e5966049e75a9262d045a"},{"data":{"created":"2014-02-26T21:15:18.443Z","credentials":{"district_username":"donnas70","district_password":"hahb3euQu"},"district":"4fd43cc56d11340000000005","dob":"9/15/1996","ell_status":"Y","email":"s.donna@example.com","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.477Z","location":{"zip":"11209"},"name":{"first":"Donna","middle":"J","last":"Sipes"},"race":"Black
775
- or African American","school":"530e595026403103360ff9fd","sis_id":"716781270","state_id":"567503224","student_number":"716781270","id":"530e5966049e75a9262d045c"},"uri":"/v1.1/students/530e5966049e75a9262d045c"},{"data":{"created":"2014-02-26T21:15:18.448Z","credentials":{"district_username":"robertt23","district_password":"TeeGe1ooY3A"},"district":"4fd43cc56d11340000000005","dob":"5/12/1998","ell_status":"N","email":"robert_t@example.com","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.482Z","location":{"zip":"10024"},"name":{"first":"Robert","middle":"K","last":"Turcotte"},"race":"Two
776
- or More Races","school":"530e595026403103360ff9fd","sis_id":"717744723","state_id":"674373603","student_number":"717744723","id":"530e5966049e75a9262d045e"},"uri":"/v1.1/students/530e5966049e75a9262d045e"},{"data":{"created":"2014-02-26T21:15:18.453Z","credentials":{"district_username":"connieb12","district_password":"Ohbo2sha8ie"},"district":"4fd43cc56d11340000000005","dob":"7/30/2001","ell_status":"Y","email":"connie.b@example.net","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.486Z","location":{"zip":"11218"},"name":{"first":"Connie","middle":"R","last":"Borer"},"race":"Black
777
- or African American","school":"530e595026403103360ff9ff","sis_id":"718013112","state_id":"626504535","student_number":"718013112","id":"530e5966049e75a9262d0460"},"uri":"/v1.1/students/530e5966049e75a9262d0460"},{"data":{"created":"2014-02-26T21:15:18.464Z","credentials":{"district_username":"christad03","district_password":"unahs6iQu"},"district":"4fd43cc56d11340000000005","dob":"1/10/2004","ell_status":"N","email":"christa.d@example.com","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.489Z","location":{"zip":"11433"},"name":{"first":"Christa","middle":"A","last":"Deckow"},"race":"American
778
- Indian","school":"530e595026403103360ff9fe","sis_id":"719954603","state_id":"376407789","student_number":"719954603","id":"530e5966049e75a9262d0463"},"uri":"/v1.1/students/530e5966049e75a9262d0463"},{"data":{"created":"2014-02-26T21:15:18.475Z","credentials":{"district_username":"eugenem16","district_password":"au6ui6Pha"},"district":"4fd43cc56d11340000000005","dob":"5/7/1995","ell_status":"N","email":"eugene_m@example.com","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.492Z","location":{"zip":"10302"},"name":{"first":"Eugene","middle":"A","last":"Macejkovic"},"race":"Two
779
- or More Races","school":"530e595026403103360ff9fd","sis_id":"721838016","state_id":"609551014","student_number":"721838016","id":"530e5966049e75a9262d0467"},"uri":"/v1.1/students/530e5966049e75a9262d0467"},{"data":{"created":"2014-02-26T21:15:18.479Z","credentials":{"district_username":"bradu99","district_password":"Lahy9aengua"},"district":"4fd43cc56d11340000000005","dob":"10/11/1998","ell_status":"N","email":"u_brad@example.org","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.498Z","location":{"zip":"10022"},"name":{"first":"Brad","middle":"L","last":"Upton"},"race":"Black
780
- or African American","school":"530e595026403103360ff9fd","sis_id":"722099499","state_id":"605869243","student_number":"722099499","id":"530e5966049e75a9262d0468"},"uri":"/v1.1/students/530e5966049e75a9262d0468"},{"data":{"created":"2014-02-26T21:15:18.494Z","credentials":{"district_username":"jaker39","district_password":"Een9weZu"},"district":"4fd43cc56d11340000000005","dob":"12/10/2004","ell_status":"N","email":"r_jake@example.org","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.501Z","location":{"zip":"10032"},"name":{"first":"Jake","middle":"M","last":"Ryan"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"724236139","state_id":"594240714","student_number":"724236139","id":"530e5966049e75a9262d0469"},"uri":"/v1.1/students/530e5966049e75a9262d0469"},{"data":{"created":"2014-02-26T21:15:18.500Z","credentials":{"district_username":"katherineh66","district_password":"mieyood1Ah"},"district":"4fd43cc56d11340000000005","dob":"1/15/1998","ell_status":"Y","email":"h_katherine@example.com","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.504Z","location":{"zip":"11229"},"name":{"first":"Katherine","middle":"M","last":"Hane"},"race":"Black
781
- or African American","school":"530e595026403103360ff9fd","sis_id":"726579566","state_id":"381380085","student_number":"726579566","id":"530e5966049e75a9262d046a"},"uri":"/v1.1/students/530e5966049e75a9262d046a"},{"data":{"created":"2014-02-26T21:15:18.506Z","credentials":{"district_username":"stevenk81","district_password":"eil8oM1koo"},"district":"4fd43cc56d11340000000005","dob":"6/23/1996","ell_status":"Y","email":"k_steven@example.net","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.508Z","location":{"zip":"10456"},"name":{"first":"Steven","middle":"B","last":"Kub"},"race":"Black
782
- or African American","school":"530e595026403103360ff9fd","sis_id":"727160681","state_id":"381222631","student_number":"727160681","id":"530e5966049e75a9262d046b"},"uri":"/v1.1/students/530e5966049e75a9262d046b"},{"data":{"created":"2014-02-26T21:15:18.511Z","credentials":{"district_username":"chesterw93","district_password":"co5Eepohng"},"district":"4fd43cc56d11340000000005","dob":"11/15/1998","ell_status":"Y","email":"w_chester@example.org","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.513Z","location":{"zip":"11233"},"name":{"first":"Chester","middle":"R","last":"Watsica"},"race":"Black
783
- or African American","school":"530e595026403103360ff9fd","sis_id":"728386393","state_id":"921766728","student_number":"728386393","id":"530e5966049e75a9262d046c"},"uri":"/v1.1/students/530e5966049e75a9262d046c"}],"links":[{"rel":"self","uri":"/v1.1/students?starting_after=530e5965049e75a9262d03b8"},{"rel":"prev","uri":"/v1.1/students?ending_before=530e5965049e75a9262d03b9"},{"rel":"next","uri":"/v1.1/students?starting_after=530e5966049e75a9262d046c"}]}'
784
- http_version:
785
- recorded_at: Sat, 13 Sep 2014 00:03:52 GMT
786
- - request:
787
- method: get
788
- uri: https://api.clever.com//v1.1/students?starting_after=530e5966049e75a9262d046c
789
- body:
790
- encoding: US-ASCII
791
- string: ''
792
- headers:
793
- Accept:
794
- - ! '*/*; q=0.5, application/xml'
795
- Accept-Encoding:
796
- - gzip, deflate
797
- Authorization:
798
- - Bearer DEMO_TOKEN
799
- User-Agent:
800
- - Ruby
801
- response:
802
- status:
803
- code: 200
804
- message: OK
805
- headers:
806
- Access-Control-Allow-Headers:
807
- - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
808
- Access-Control-Allow-Methods:
809
- - GET,PATCH,POST,DELETE
810
- Access-Control-Allow-Origin:
811
- - ! '*'
812
- Content-Type:
813
- - application/json; charset=utf-8
814
- Date:
815
- - Sat, 13 Sep 2014 00:03:52 GMT
816
- Etag:
817
- - ! '"-1806770542"'
818
- Server:
819
- - nginx/1.4.7
820
- X-Powered-By:
821
- - Express
822
- Content-Length:
823
- - '66277'
824
- Connection:
825
- - keep-alive
826
- body:
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
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
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
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
832
- or African American","school":"530e595026403103360ff9fe","sis_id":"730743296","state_id":"399339412","student_number":"730743296","id":"530e5966049e75a9262d0470"},"uri":"/v1.1/students/530e5966049e75a9262d0470"},{"data":{"created":"2014-02-26T21:15:18.551Z","credentials":{"district_username":"christopherw71","district_password":"TeeSh8Ru"},"district":"4fd43cc56d11340000000005","dob":"9/27/1998","ell_status":"Y","email":"christopher.w@example.org","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.532Z","location":{"zip":"10301"},"name":{"first":"Christopher","middle":"K","last":"Wisozk"},"race":"Black
833
- or African American","school":"530e595026403103360ff9fd","sis_id":"730889671","state_id":"574502347","student_number":"730889671","id":"530e5966049e75a9262d0471"},"uri":"/v1.1/students/530e5966049e75a9262d0471"},{"data":{"created":"2014-02-26T21:15:18.561Z","credentials":{"district_username":"victork87","district_password":"ouxae8Dei"},"district":"4fd43cc56d11340000000005","dob":"4/6/2001","ell_status":"N","email":"victor_k@example.org","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.536Z","location":{"zip":"11368"},"name":{"first":"Victor","middle":"K","last":"Kemmer"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"732309687","state_id":"695550830","student_number":"732309687","id":"530e5966049e75a9262d0472"},"uri":"/v1.1/students/530e5966049e75a9262d0472"},{"data":{"created":"2014-02-26T21:15:18.574Z","credentials":{"district_username":"patriciam27","district_password":"oaQuaeng5zei"},"district":"4fd43cc56d11340000000005","dob":"2/6/1997","ell_status":"N","email":"patricia.m@example.com","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.540Z","location":{"zip":"11362"},"name":{"first":"Patricia","middle":"B","last":"Mohr"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"733618727","state_id":"653999375","student_number":"733618727","id":"530e5966049e75a9262d0475"},"uri":"/v1.1/students/530e5966049e75a9262d0475"},{"data":{"created":"2014-02-26T21:15:18.588Z","credentials":{"district_username":"emilyb93","district_password":"aiCheeke3qu"},"district":"4fd43cc56d11340000000005","dob":"7/21/2007","ell_status":"N","email":"b_emily@example.net","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.543Z","location":{"zip":"10013"},"name":{"first":"Emily","middle":"C","last":"Bode"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"734498793","state_id":"330779240","student_number":"734498793","id":"530e5966049e75a9262d0479"},"uri":"/v1.1/students/530e5966049e75a9262d0479"},{"data":{"created":"2014-02-26T21:15:18.604Z","credentials":{"district_username":"dorisw69","district_password":"faef1aeZief"},"district":"4fd43cc56d11340000000005","dob":"10/17/1996","ell_status":"Y","email":"doris_w@example.org","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.546Z","location":{"zip":"11418"},"name":{"first":"Doris","middle":"T","last":"Willms"},"race":"Black
834
- or African American","school":"530e595026403103360ff9fd","sis_id":"735585469","state_id":"880653699","student_number":"735585469","id":"530e5966049e75a9262d047e"},"uri":"/v1.1/students/530e5966049e75a9262d047e"},{"data":{"created":"2014-02-26T21:15:18.610Z","credentials":{"district_username":"juliag10","district_password":"ooBoom9I"},"district":"4fd43cc56d11340000000005","dob":"1/27/2003","ell_status":"N","email":"g.julia@example.net","frl_status":"Paid","gender":"F","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.552Z","location":{"zip":"11367"},"name":{"first":"Julia","middle":"P","last":"Gibson"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"736291710","state_id":"492724482","student_number":"736291710","id":"530e5966049e75a9262d0480"},"uri":"/v1.1/students/530e5966049e75a9262d0480"},{"data":{"created":"2014-02-26T21:15:18.630Z","credentials":{"district_username":"charlesf11","district_password":"aikohG9v"},"district":"4fd43cc56d11340000000005","dob":"3/12/2005","ell_status":"Y","email":"charles_f@example.org","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.555Z","location":{"zip":"11375"},"name":{"first":"Charles","middle":"A","last":"Flatley"},"race":"Two
835
- or More Races","school":"530e595026403103360ff9fe","sis_id":"737956711","state_id":"656007895","student_number":"737956711","id":"530e5966049e75a9262d0486"},"uri":"/v1.1/students/530e5966049e75a9262d0486"},{"data":{"created":"2014-02-26T21:15:18.637Z","credentials":{"district_username":"marys54","district_password":"quaiF3aegh"},"district":"4fd43cc56d11340000000005","dob":"3/1/2000","ell_status":"Y","email":"s.mary@example.com","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.558Z","location":{"zip":"10014"},"name":{"first":"Mary","middle":"L","last":"Shanahan"},"race":"Two
836
- or More Races","school":"530e595026403103360ff9ff","sis_id":"738021454","state_id":"129086637","student_number":"738021454","id":"530e5966049e75a9262d0489"},"uri":"/v1.1/students/530e5966049e75a9262d0489"},{"data":{"created":"2014-02-26T21:15:18.642Z","credentials":{"district_username":"shirleyl37","district_password":"paer5DooCai"},"district":"4fd43cc56d11340000000005","dob":"5/26/1995","ell_status":"Y","email":"shirley_l@example.net","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.562Z","location":{"zip":"11236"},"name":{"first":"Shirley","middle":"R","last":"Lebsack"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"738664637","state_id":"622445542","student_number":"738664637","id":"530e5966049e75a9262d048b"},"uri":"/v1.1/students/530e5966049e75a9262d048b"},{"data":{"created":"2014-02-26T21:15:18.647Z","credentials":{"district_username":"dianes10","district_password":"eel7Thohd"},"district":"4fd43cc56d11340000000005","dob":"11/1/1998","ell_status":"Y","email":"diane.s@example.org","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.567Z","location":{"zip":"11433"},"name":{"first":"Diane","middle":"J","last":"Schmeler"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"738733110","state_id":"114327752","student_number":"738733110","id":"530e5966049e75a9262d048d"},"uri":"/v1.1/students/530e5966049e75a9262d048d"},{"data":{"created":"2014-02-26T21:15:18.656Z","credentials":{"district_username":"marciar31","district_password":"oPh1aeghah"},"district":"4fd43cc56d11340000000005","dob":"9/12/1996","ell_status":"N","email":"r.marcia@example.net","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.571Z","location":{"zip":"11201"},"name":{"first":"Marcia","middle":"J","last":"Ritchie"},"race":"Black
837
- or African American","school":"530e595026403103360ff9fd","sis_id":"738811531","state_id":"945839747","student_number":"738811531","id":"530e5966049e75a9262d048f"},"uri":"/v1.1/students/530e5966049e75a9262d048f"},{"data":{"created":"2014-02-26T21:15:18.666Z","credentials":{"district_username":"emogener17","district_password":"keij1agie8W"},"district":"4fd43cc56d11340000000005","dob":"4/6/2002","ell_status":"N","email":"emogene_r@example.com","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.574Z","location":{"zip":"11374"},"name":{"first":"Emogene","middle":"L","last":"Ruecker"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"741282117","state_id":"253538115","student_number":"741282117","id":"530e5966049e75a9262d0490"},"uri":"/v1.1/students/530e5966049e75a9262d0490"},{"data":{"created":"2014-02-26T21:15:18.672Z","credentials":{"district_username":"cynthiah90","district_password":"ieBeo2Ahngai"},"district":"4fd43cc56d11340000000005","dob":"10/1/2007","ell_status":"Y","email":"h.cynthia@example.net","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.577Z","location":{"zip":"11355"},"name":{"first":"Cynthia","middle":"M","last":"Hilpert"},"race":"Black
838
- or African American","school":"530e595026403103360ff9fe","sis_id":"742217190","state_id":"643920941","student_number":"742217190","id":"530e5966049e75a9262d0491"},"uri":"/v1.1/students/530e5966049e75a9262d0491"},{"data":{"created":"2014-02-26T21:15:18.683Z","credentials":{"district_username":"tiffanyk37","district_password":"Che0ahvoh"},"district":"4fd43cc56d11340000000005","dob":"8/24/1995","ell_status":"N","email":"k.tiffany@example.org","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.582Z","location":{"zip":"10458"},"name":{"first":"Tiffany","middle":"S","last":"Koelpin"},"race":"Black
839
- or African American","school":"530e595026403103360ff9fd","sis_id":"744895137","state_id":"560051263","student_number":"744895137","id":"530e5966049e75a9262d0492"},"uri":"/v1.1/students/530e5966049e75a9262d0492"},{"data":{"created":"2014-02-26T21:15:18.687Z","credentials":{"district_username":"paulh34","district_password":"roweJ2ahch"},"district":"4fd43cc56d11340000000005","dob":"5/29/2006","ell_status":"N","email":"h_paul@example.org","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.587Z","location":{"zip":"11239"},"name":{"first":"Paul","middle":"A","last":"Hintz"},"race":"Two
840
- or More Races","school":"530e595026403103360ff9fe","sis_id":"745029534","state_id":"970907629","student_number":"745029534","id":"530e5966049e75a9262d0493"},"uri":"/v1.1/students/530e5966049e75a9262d0493"},{"data":{"created":"2014-02-26T21:15:18.692Z","credentials":{"district_username":"youngh07","district_password":"athohB7Aif"},"district":"4fd43cc56d11340000000005","dob":"12/5/2001","ell_status":"N","email":"h_young@example.org","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.589Z","location":{"zip":"11365"},"name":{"first":"Young","middle":"A","last":"Hegmann"},"race":"Black
841
- or African American","school":"530e595026403103360ff9ff","sis_id":"745830107","state_id":"570176809","student_number":"745830107","id":"530e5966049e75a9262d0494"},"uri":"/v1.1/students/530e5966049e75a9262d0494"},{"data":{"created":"2014-02-26T21:15:18.696Z","credentials":{"district_username":"kennethb59","district_password":"fai1Ooch"},"district":"4fd43cc56d11340000000005","dob":"10/22/1998","ell_status":"N","email":"kenneth_b@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.593Z","location":{"zip":"10468"},"name":{"first":"Kenneth","middle":"L","last":"Berge"},"race":"Two
842
- or More Races","school":"530e595026403103360ff9fd","sis_id":"746403759","state_id":"117437430","student_number":"746403759","id":"530e5966049e75a9262d0495"},"uri":"/v1.1/students/530e5966049e75a9262d0495"},{"data":{"created":"2014-02-26T21:15:18.702Z","credentials":{"district_username":"jeanned30","district_password":"ro6Ohtaomu7"},"district":"4fd43cc56d11340000000005","dob":"5/17/1998","ell_status":"N","email":"jeanne.d@example.net","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-13T00:45:02.564Z","location":{"zip":"11211"},"name":{"first":"Jeanne","middle":"C","last":"Daugherty"},"race":"Black
843
- or African American","school":"530e595026403103360ff9fd","sis_id":"746419030","state_id":"631522982","student_number":"746419030","id":"530e5966049e75a9262d0496"},"uri":"/v1.1/students/530e5966049e75a9262d0496"},{"data":{"created":"2014-02-26T21:15:18.708Z","credentials":{"district_username":"elizabeths15","district_password":"Saem9ob2sh"},"district":"4fd43cc56d11340000000005","dob":"4/19/2001","ell_status":"N","email":"elizabeth_s@example.net","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.602Z","location":{"zip":"10044"},"name":{"first":"Elizabeth","middle":"P","last":"Stoltenberg"},"race":"Black
844
- or African American","school":"530e595026403103360ff9ff","sis_id":"746872515","state_id":"169177528","student_number":"746872515","id":"530e5966049e75a9262d0497"},"uri":"/v1.1/students/530e5966049e75a9262d0497"},{"data":{"created":"2014-02-26T21:15:18.712Z","credentials":{"district_username":"ernesth86","district_password":"AhBeeP5igo"},"district":"4fd43cc56d11340000000005","dob":"1/15/2005","ell_status":"N","email":"ernest.h@example.org","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.605Z","location":{"zip":"11379"},"name":{"first":"Ernest","middle":"L","last":"Hauck"},"race":"Two
845
- or More Races","school":"530e595026403103360ff9fe","sis_id":"747199086","state_id":"515335431","student_number":"747199086","id":"530e5966049e75a9262d0498"},"uri":"/v1.1/students/530e5966049e75a9262d0498"},{"data":{"created":"2014-02-26T21:15:18.716Z","credentials":{"district_username":"keving82","district_password":"ne9ta1Eec"},"district":"4fd43cc56d11340000000005","dob":"12/1/1996","ell_status":"Y","email":"g.kevin@example.net","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.608Z","location":{"zip":"10468"},"name":{"first":"Kevin","middle":"V","last":"Gerlach"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"747769682","state_id":"883790710","student_number":"747769682","id":"530e5966049e75a9262d0499"},"uri":"/v1.1/students/530e5966049e75a9262d0499"},{"data":{"created":"2014-02-26T21:15:18.720Z","credentials":{"district_username":"annab22","district_password":"ieBah4ke"},"district":"4fd43cc56d11340000000005","dob":"11/13/1996","ell_status":"Y","email":"anna_b@example.org","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.613Z","location":{"zip":"10458"},"name":{"first":"Anna","middle":"W","last":"Bahringer"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"748580222","state_id":"657277309","student_number":"748580222","id":"530e5966049e75a9262d049a"},"uri":"/v1.1/students/530e5966049e75a9262d049a"},{"data":{"created":"2014-02-26T21:15:18.732Z","credentials":{"district_username":"marym66","district_password":"Ohthieb2"},"district":"4fd43cc56d11340000000005","dob":"6/23/2006","ell_status":"N","email":"mary.m@example.net","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.626Z","location":{"zip":"10312"},"name":{"first":"Mary","middle":"L","last":"Mueller"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"750621466","state_id":"565319112","student_number":"750621466","id":"530e5966049e75a9262d049b"},"uri":"/v1.1/students/530e5966049e75a9262d049b"},{"data":{"created":"2014-02-26T21:15:18.736Z","credentials":{"district_username":"robertk70","district_password":"ahNgae4oquah"},"district":"4fd43cc56d11340000000005","dob":"7/18/1999","ell_status":"Y","email":"k_robert@example.net","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.629Z","location":{"zip":"10006"},"name":{"first":"Robert","middle":"A","last":"Kuhn"},"race":"American
846
- Indian","school":"530e595026403103360ff9ff","sis_id":"750813170","state_id":"778787645","student_number":"750813170","id":"530e5966049e75a9262d049c"},"uri":"/v1.1/students/530e5966049e75a9262d049c"},{"data":{"created":"2014-02-26T21:15:18.743Z","credentials":{"district_username":"rebeccaf95","district_password":"shah4Bech"},"district":"4fd43cc56d11340000000005","dob":"11/7/2006","ell_status":"N","email":"rebecca_f@example.org","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.633Z","location":{"zip":"10044"},"name":{"first":"Rebecca","middle":"W","last":"Frami"},"race":"Black
847
- or African American","school":"530e595026403103360ff9fe","sis_id":"751084695","state_id":"450220623","student_number":"751084695","id":"530e5966049e75a9262d049e"},"uri":"/v1.1/students/530e5966049e75a9262d049e"},{"data":{"created":"2014-02-26T21:15:18.751Z","credentials":{"district_username":"johnh08","district_password":"xa7Kie0au"},"district":"4fd43cc56d11340000000005","dob":"10/21/1995","ell_status":"N","email":"h.john@example.org","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.638Z","location":{"zip":"11356"},"name":{"first":"John","middle":"E","last":"Howe"},"race":"Black
848
- or African American","school":"530e595026403103360ff9fd","sis_id":"751725508","state_id":"681239354","student_number":"751725508","id":"530e5966049e75a9262d04a0"},"uri":"/v1.1/students/530e5966049e75a9262d04a0"},{"data":{"created":"2014-02-26T21:15:18.770Z","credentials":{"district_username":"loydm44","district_password":"thi3Aifee"},"district":"4fd43cc56d11340000000005","dob":"8/31/1996","ell_status":"N","email":"loyd_m@example.com","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.642Z","location":{"zip":"10466"},"name":{"first":"Loyd","middle":"D","last":"Mohr"},"race":"Black
849
- or African American","school":"530e595026403103360ff9fd","sis_id":"753526244","state_id":"352669416","student_number":"753526244","id":"530e5966049e75a9262d04a3"},"uri":"/v1.1/students/530e5966049e75a9262d04a3"},{"data":{"created":"2014-02-26T21:15:18.775Z","credentials":{"district_username":"vincenth68","district_password":"Cush6kahk1ae"},"district":"4fd43cc56d11340000000005","dob":"4/12/1998","ell_status":"N","email":"h_vincent@example.org","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.644Z","location":{"zip":"11369"},"name":{"first":"Vincent","middle":"M","last":"Heathcote"},"race":"Black
850
- or African American","school":"530e595026403103360ff9fd","sis_id":"753607168","state_id":"802313102","student_number":"753607168","id":"530e5966049e75a9262d04a5"},"uri":"/v1.1/students/530e5966049e75a9262d04a5"},{"data":{"created":"2014-02-26T21:15:18.780Z","credentials":{"district_username":"catherinem98","district_password":"Le4Ohhak"},"district":"4fd43cc56d11340000000005","dob":"5/22/2005","ell_status":"N","email":"catherine_m@example.net","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.648Z","location":{"zip":"11422"},"name":{"first":"Catherine","middle":"K","last":"Mosciski"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"753666798","state_id":"406209319","student_number":"753666798","id":"530e5966049e75a9262d04a7"},"uri":"/v1.1/students/530e5966049e75a9262d04a7"},{"data":{"created":"2014-02-26T21:15:18.806Z","credentials":{"district_username":"ellend89","district_password":"aa2fas9ohSh"},"district":"4fd43cc56d11340000000005","dob":"3/28/2001","ell_status":"Y","email":"ellen_d@example.com","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.653Z","location":{"zip":"11218"},"name":{"first":"Ellen","middle":"V","last":"Donnelly"},"race":"Black
851
- or African American","school":"530e595026403103360ff9ff","sis_id":"757691289","state_id":"930878752","student_number":"757691289","id":"530e5966049e75a9262d04af"},"uri":"/v1.1/students/530e5966049e75a9262d04af"},{"data":{"created":"2014-02-26T21:15:18.825Z","credentials":{"district_username":"elizabethf55","district_password":"nah4Oca3ie"},"district":"4fd43cc56d11340000000005","dob":"11/17/1997","ell_status":"N","email":"f_elizabeth@example.org","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.657Z","location":{"zip":"11415"},"name":{"first":"Elizabeth","middle":"F","last":"Funk"},"race":"Two
852
- or More Races","school":"530e595026403103360ff9fd","sis_id":"759463055","state_id":"712984364","student_number":"759463055","id":"530e5966049e75a9262d04b4"},"uri":"/v1.1/students/530e5966049e75a9262d04b4"},{"data":{"created":"2014-02-26T21:15:18.837Z","credentials":{"district_username":"michaelh83","district_password":"ahj0is6CeRa"},"district":"4fd43cc56d11340000000005","dob":"2/9/1995","ell_status":"N","email":"michael.h@example.net","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.660Z","location":{"zip":"10027"},"name":{"first":"Michael","middle":"E","last":"Hilpert"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"761747083","state_id":"850555627","student_number":"761747083","id":"530e5966049e75a9262d04b8"},"uri":"/v1.1/students/530e5966049e75a9262d04b8"},{"data":{"created":"2014-02-26T21:15:18.848Z","credentials":{"district_username":"angelm83","district_password":"Oo2Shae7oo"},"district":"4fd43cc56d11340000000005","dob":"3/30/1996","ell_status":"Y","email":"angel.m@example.net","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.664Z","location":{"zip":"11203"},"name":{"first":"Angel","middle":"J","last":"Maggio"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"762206283","state_id":"381540796","student_number":"762206283","id":"530e5966049e75a9262d04b9"},"uri":"/v1.1/students/530e5966049e75a9262d04b9"},{"data":{"created":"2014-02-26T21:15:18.854Z","credentials":{"district_username":"justinh57","district_password":"ieM8uTo5ugh"},"district":"4fd43cc56d11340000000005","dob":"7/2/1997","ell_status":"N","email":"h.justin@example.com","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.669Z","location":{"zip":"10467"},"name":{"first":"Justin","middle":"A","last":"Hilll"},"race":"Black
853
- or African American","school":"530e595026403103360ff9fd","sis_id":"762781157","state_id":"928221025","student_number":"762781157","id":"530e5966049e75a9262d04ba"},"uri":"/v1.1/students/530e5966049e75a9262d04ba"},{"data":{"created":"2014-02-26T21:15:18.858Z","credentials":{"district_username":"anns97","district_password":"ohP0iejugh"},"district":"4fd43cc56d11340000000005","dob":"7/21/2002","ell_status":"Y","email":"s_ann@example.org","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.673Z","location":{"zip":"11374"},"name":{"first":"Ann","middle":"K","last":"Schimmel"},"race":"Black
854
- or African American","school":"530e595026403103360ff9fe","sis_id":"762816997","state_id":"630415960","student_number":"762816997","id":"530e5966049e75a9262d04bb"},"uri":"/v1.1/students/530e5966049e75a9262d04bb"},{"data":{"created":"2014-02-26T21:15:18.864Z","credentials":{"district_username":"mariaw79","district_password":"Uit0ziehae"},"district":"4fd43cc56d11340000000005","dob":"6/22/2000","ell_status":"N","email":"maria_w@example.net","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.675Z","location":{"zip":"11377"},"name":{"first":"Maria","middle":"C","last":"Ward"},"race":"Black
855
- or African American","school":"530e595026403103360ff9ff","sis_id":"763225079","state_id":"279953173","student_number":"763225079","id":"530e5966049e75a9262d04bc"},"uri":"/v1.1/students/530e5966049e75a9262d04bc"},{"data":{"created":"2014-02-26T21:15:18.883Z","credentials":{"district_username":"antonyw18","district_password":"sohPhooc8g"},"district":"4fd43cc56d11340000000005","dob":"7/28/2001","ell_status":"Y","email":"w.antony@example.com","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.679Z","location":{"zip":"10006"},"name":{"first":"Antony","middle":"N","last":"Wyman"},"race":"Two
856
- or More Races","school":"530e595026403103360ff9ff","sis_id":"764708918","state_id":"481978367","student_number":"764708918","id":"530e5966049e75a9262d04c1"},"uri":"/v1.1/students/530e5966049e75a9262d04c1"},{"data":{"created":"2014-02-26T21:15:18.894Z","credentials":{"district_username":"royw21","district_password":"AeQu6iJuqu"},"district":"4fd43cc56d11340000000005","dob":"11/25/2007","ell_status":"N","email":"roy_w@example.org","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.684Z","location":{"zip":"10460"},"name":{"first":"Roy","middle":"K","last":"Wunsch"},"race":"Black
857
- or African American","school":"530e595026403103360ff9fe","sis_id":"765305521","state_id":"148083837","student_number":"765305521","id":"530e5966049e75a9262d04c4"},"uri":"/v1.1/students/530e5966049e75a9262d04c4"},{"data":{"created":"2014-02-26T21:15:18.911Z","credentials":{"district_username":"susanm26","district_password":"aiNg2ieVee"},"district":"4fd43cc56d11340000000005","dob":"2/27/2002","ell_status":"Y","email":"m_susan@example.net","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.688Z","location":{"zip":"10458"},"name":{"first":"Susan","middle":"M","last":"McClure"},"race":"Black
858
- or African American","school":"530e595026403103360ff9fe","sis_id":"766165526","state_id":"402640959","student_number":"766165526","id":"530e5966049e75a9262d04ca"},"uri":"/v1.1/students/530e5966049e75a9262d04ca"},{"data":{"created":"2014-02-26T21:15:18.917Z","credentials":{"district_username":"justinh51","district_password":"chahcohg7Z"},"district":"4fd43cc56d11340000000005","dob":"6/14/1997","ell_status":"N","email":"justin.h@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.691Z","location":{"zip":"11369"},"name":{"first":"Justin","middle":"C","last":"Hettinger"},"race":"Two
859
- or More Races","school":"530e595026403103360ff9fd","sis_id":"766347451","state_id":"834815281","student_number":"766347451","id":"530e5966049e75a9262d04cc"},"uri":"/v1.1/students/530e5966049e75a9262d04cc"},{"data":{"created":"2014-02-26T21:15:18.940Z","credentials":{"district_username":"robertg58","district_password":"quoo2eiBi1G"},"district":"4fd43cc56d11340000000005","dob":"6/28/1996","ell_status":"Y","email":"g_robert@example.net","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.694Z","location":{"zip":"11691"},"name":{"first":"Robert","middle":"L","last":"Gottlieb"},"race":"American
860
- Indian","school":"530e595026403103360ff9fd","sis_id":"768510558","state_id":"634233674","student_number":"768510558","id":"530e5966049e75a9262d04d3"},"uri":"/v1.1/students/530e5966049e75a9262d04d3"},{"data":{"created":"2014-02-26T21:15:18.946Z","credentials":{"district_username":"tammyo64","district_password":"Ee6Fueh1"},"district":"4fd43cc56d11340000000005","dob":"7/26/2004","ell_status":"N","email":"o.tammy@example.org","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.699Z","location":{"zip":"10308"},"name":{"first":"Tammy","middle":"R","last":"Osinski"},"race":"Black
861
- or African American","school":"530e595026403103360ff9fe","sis_id":"768666664","state_id":"544947371","student_number":"768666664","id":"530e5966049e75a9262d04d5"},"uri":"/v1.1/students/530e5966049e75a9262d04d5"},{"data":{"created":"2014-02-26T21:15:18.952Z","credentials":{"district_username":"roccos84","district_password":"rairaSh7p"},"district":"4fd43cc56d11340000000005","dob":"8/2/1998","ell_status":"N","email":"rocco.s@example.com","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.703Z","location":{"zip":"10014"},"name":{"first":"Rocco","middle":"A","last":"Schumm"},"race":"Black
862
- or African American","school":"530e595026403103360ff9fd","sis_id":"768841884","state_id":"239367560","student_number":"768841884","id":"530e5966049e75a9262d04d7"},"uri":"/v1.1/students/530e5966049e75a9262d04d7"},{"data":{"created":"2014-02-26T21:15:18.968Z","credentials":{"district_username":"quentinf79","district_password":"fohV1oos9Ee"},"district":"4fd43cc56d11340000000005","dob":"3/30/1996","ell_status":"Y","email":"quentin.f@example.com","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.706Z","location":{"zip":"11412"},"name":{"first":"Quentin","middle":"C","last":"Feil"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"773959679","state_id":"500526668","student_number":"773959679","id":"530e5966049e75a9262d04d8"},"uri":"/v1.1/students/530e5966049e75a9262d04d8"},{"data":{"created":"2014-02-26T21:15:18.986Z","credentials":{"district_username":"leighh62","district_password":"Eiw2yah6"},"district":"4fd43cc56d11340000000005","dob":"6/3/2000","ell_status":"N","email":"h_leigh@example.net","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.710Z","location":{"zip":"11234"},"name":{"first":"Leigh","middle":"M","last":"Hilll"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"775530462","state_id":"720424076","student_number":"775530462","id":"530e5966049e75a9262d04d9"},"uri":"/v1.1/students/530e5966049e75a9262d04d9"},{"data":{"created":"2014-02-26T21:15:18.992Z","credentials":{"district_username":"lorad80","district_password":"looy6Huaghae"},"district":"4fd43cc56d11340000000005","dob":"7/4/2003","ell_status":"N","email":"lora_d@example.org","frl_status":"Paid","gender":"F","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.715Z","location":{"zip":"11213"},"name":{"first":"Lora","middle":"C","last":"Dicki"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"775672580","state_id":"510806650","student_number":"775672580","id":"530e5966049e75a9262d04da"},"uri":"/v1.1/students/530e5966049e75a9262d04da"},{"data":{"created":"2014-02-26T21:15:18.997Z","credentials":{"district_username":"johnb09","district_password":"Roo1eN8ae"},"district":"4fd43cc56d11340000000005","dob":"8/10/2000","ell_status":"N","email":"b.john@example.net","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.719Z","location":{"zip":"10014"},"name":{"first":"John","middle":"G","last":"Boehm"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"775768409","state_id":"760142266","student_number":"775768409","id":"530e5966049e75a9262d04db"},"uri":"/v1.1/students/530e5966049e75a9262d04db"},{"data":{"created":"2014-02-26T21:15:19.008Z","credentials":{"district_username":"williamr59","district_password":"ohHeic1mahv"},"district":"4fd43cc56d11340000000005","dob":"7/26/2001","ell_status":"Y","email":"william.r@example.com","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.721Z","location":{"zip":"10031"},"name":{"first":"William","middle":"M","last":"Reynolds"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"777529959","state_id":"278532298","student_number":"777529959","id":"530e5967049e75a9262d04df"},"uri":"/v1.1/students/530e5967049e75a9262d04df"},{"data":{"created":"2014-02-26T21:15:19.022Z","credentials":{"district_username":"andrewt54","district_password":"Aipee9ahvo3"},"district":"4fd43cc56d11340000000005","dob":"10/1/2003","ell_status":"N","email":"t.andrew@example.net","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.725Z","location":{"zip":"10472"},"name":{"first":"Andrew","middle":"E","last":"Terry"},"race":"Two
863
- or More Races","school":"530e595026403103360ff9fe","sis_id":"779373354","state_id":"180221610","student_number":"779373354","id":"530e5967049e75a9262d04e4"},"uri":"/v1.1/students/530e5967049e75a9262d04e4"},{"data":{"created":"2014-02-26T21:15:19.030Z","credentials":{"district_username":"samr86","district_password":"ahch1Eip"},"district":"4fd43cc56d11340000000005","dob":"1/1/1999","ell_status":"Y","email":"sam.r@example.com","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.730Z","location":{"zip":"10457"},"name":{"first":"Sam","middle":"M","last":"Ryan"},"race":"Two
864
- or More Races","school":"530e595026403103360ff9ff","sis_id":"779700486","state_id":"504584642","student_number":"779700486","id":"530e5967049e75a9262d04e6"},"uri":"/v1.1/students/530e5967049e75a9262d04e6"},{"data":{"created":"2014-02-26T21:15:19.037Z","credentials":{"district_username":"kimberlyh85","district_password":"aed1Zaich"},"district":"4fd43cc56d11340000000005","dob":"11/30/2000","ell_status":"Y","email":"h_kimberly@example.org","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.734Z","location":{"zip":"11206"},"name":{"first":"Kimberly","middle":"J","last":"Hand"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"780286785","state_id":"420650673","student_number":"780286785","id":"530e5967049e75a9262d04e9"},"uri":"/v1.1/students/530e5967049e75a9262d04e9"},{"data":{"created":"2014-02-26T21:15:19.043Z","credentials":{"district_username":"royh69","district_password":"iegh2yieT"},"district":"4fd43cc56d11340000000005","dob":"5/12/1999","ell_status":"Y","email":"h_roy@example.org","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.737Z","location":{"zip":"10306"},"name":{"first":"Roy","middle":"J","last":"Hammes"},"race":"Black
865
- or African American","school":"530e595026403103360ff9ff","sis_id":"780341469","state_id":"988247892","student_number":"780341469","id":"530e5967049e75a9262d04eb"},"uri":"/v1.1/students/530e5967049e75a9262d04eb"},{"data":{"created":"2014-02-26T21:15:19.050Z","credentials":{"district_username":"emilyl00","district_password":"aiCheeke3qu"},"district":"4fd43cc56d11340000000005","dob":"2/12/2005","ell_status":"N","email":"emily.l@example.org","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.741Z","location":{"zip":"10312"},"name":{"first":"Emily","middle":"C","last":"Leffler"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"780624800","state_id":"784327598","student_number":"780624800","id":"530e5967049e75a9262d04ee"},"uri":"/v1.1/students/530e5967049e75a9262d04ee"},{"data":{"created":"2014-02-26T21:15:19.056Z","credentials":{"district_username":"kurto32","district_password":"Aingi9bo"},"district":"4fd43cc56d11340000000005","dob":"12/8/2002","ell_status":"Y","email":"o_kurt@example.com","frl_status":"Paid","gender":"M","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.746Z","location":{"zip":"10465"},"name":{"first":"Kurt","middle":"J","last":"Ondricka"},"race":"Two
866
- or More Races","school":"530e595026403103360ff9fe","sis_id":"781442632","state_id":"336148613","student_number":"781442632","id":"530e5967049e75a9262d04f0"},"uri":"/v1.1/students/530e5967049e75a9262d04f0"},{"data":{"created":"2014-02-26T21:15:19.070Z","credentials":{"district_username":"brians14","district_password":"ea8UHeiPhohth"},"district":"4fd43cc56d11340000000005","dob":"1/4/2004","ell_status":"N","email":"brian_s@example.net","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.750Z","location":{"zip":"10025"},"name":{"first":"Brian","middle":"L","last":"Schultz"},"race":"Two
867
- or More Races","school":"530e595026403103360ff9fe","sis_id":"783655314","state_id":"107949127","student_number":"783655314","id":"530e5967049e75a9262d04f4"},"uri":"/v1.1/students/530e5967049e75a9262d04f4"},{"data":{"created":"2014-02-26T21:15:19.078Z","credentials":{"district_username":"kimw21","district_password":"gae7ao5Te"},"district":"4fd43cc56d11340000000005","dob":"11/14/1995","ell_status":"N","email":"kim.w@example.org","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.752Z","location":{"zip":"10026"},"name":{"first":"Kim","middle":"L","last":"West"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"784087621","state_id":"959666331","student_number":"784087621","id":"530e5967049e75a9262d04f7"},"uri":"/v1.1/students/530e5967049e75a9262d04f7"},{"data":{"created":"2014-02-26T21:15:19.084Z","credentials":{"district_username":"ricardor66","district_password":"WahQuoh0"},"district":"4fd43cc56d11340000000005","dob":"10/27/2003","ell_status":"N","email":"ricardo_r@example.org","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.756Z","location":{"zip":"11218"},"name":{"first":"Ricardo","middle":"D","last":"Russel"},"race":"American
868
- Indian","school":"530e595026403103360ff9fe","sis_id":"784434566","state_id":"121120712","student_number":"784434566","id":"530e5967049e75a9262d04f9"},"uri":"/v1.1/students/530e5967049e75a9262d04f9"},{"data":{"created":"2014-02-26T21:15:19.095Z","credentials":{"district_username":"tims95","district_password":"Ahy1eh8g"},"district":"4fd43cc56d11340000000005","dob":"5/17/1995","ell_status":"Y","email":"s_tim@example.net","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.761Z","location":{"zip":"11208"},"name":{"first":"Tim","middle":"Y","last":"Sipes"},"race":"Two
869
- or More Races","school":"530e595026403103360ff9fd","sis_id":"786130895","state_id":"966386789","student_number":"786130895","id":"530e5967049e75a9262d04fa"},"uri":"/v1.1/students/530e5967049e75a9262d04fa"},{"data":{"created":"2014-02-26T21:15:19.105Z","credentials":{"district_username":"jasonh05","district_password":"AeC3Ruac5H"},"district":"4fd43cc56d11340000000005","dob":"2/24/2006","ell_status":"N","email":"h_jason@example.net","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.765Z","location":{"zip":"11372"},"name":{"first":"Jason","middle":"J","last":"Hudson"},"race":"Black
870
- or African American","school":"530e595026403103360ff9fe","sis_id":"787036105","state_id":"895047412","student_number":"787036105","id":"530e5967049e75a9262d04fb"},"uri":"/v1.1/students/530e5967049e75a9262d04fb"},{"data":{"created":"2014-02-26T21:15:19.117Z","credentials":{"district_username":"larryc70","district_password":"ohw4Uzei"},"district":"4fd43cc56d11340000000005","dob":"10/5/2004","ell_status":"N","email":"c.larry@example.com","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.768Z","location":{"zip":"11103"},"name":{"first":"Larry","middle":"S","last":"Casper"},"race":"Two
871
- or More Races","school":"530e595026403103360ff9fe","sis_id":"788467370","state_id":"919368306","student_number":"788467370","id":"530e5967049e75a9262d04fc"},"uri":"/v1.1/students/530e5967049e75a9262d04fc"},{"data":{"created":"2014-02-26T21:15:19.124Z","credentials":{"district_username":"julier29","district_password":"IePhie4fo8"},"district":"4fd43cc56d11340000000005","dob":"2/8/1999","ell_status":"N","email":"r_julie@example.net","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.772Z","location":{"zip":"11211"},"name":{"first":"Julie","middle":"S","last":"Robel"},"race":"Black
872
- or African American","school":"530e595026403103360ff9ff","sis_id":"788880829","state_id":"271966557","student_number":"788880829","id":"530e5967049e75a9262d04fd"},"uri":"/v1.1/students/530e5967049e75a9262d04fd"},{"data":{"created":"2014-02-26T21:15:19.133Z","credentials":{"district_username":"dustyl08","district_password":"heif7ieC"},"district":"4fd43cc56d11340000000005","dob":"4/7/1995","ell_status":"N","email":"dusty.l@example.org","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.777Z","location":{"zip":"11236"},"name":{"first":"Dusty","middle":"P","last":"Littel"},"race":"American
873
- Indian","school":"530e595026403103360ff9fd","sis_id":"790090708","state_id":"369187842","student_number":"790090708","id":"530e5967049e75a9262d04fe"},"uri":"/v1.1/students/530e5967049e75a9262d04fe"},{"data":{"created":"2014-02-26T21:15:19.140Z","credentials":{"district_username":"justinw31","district_password":"suTa7Jizoo"},"district":"4fd43cc56d11340000000005","dob":"1/21/1996","ell_status":"N","email":"justin.w@example.net","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.781Z","location":{"zip":"10466"},"name":{"first":"Justin","middle":"J","last":"Wolff"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"792235731","state_id":"444026787","student_number":"792235731","id":"530e5967049e75a9262d04ff"},"uri":"/v1.1/students/530e5967049e75a9262d04ff"},{"data":{"created":"2014-02-26T21:15:19.147Z","credentials":{"district_username":"irisk36","district_password":"OhShui8Aitae"},"district":"4fd43cc56d11340000000005","dob":"4/29/1998","ell_status":"Y","email":"iris_k@example.net","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.783Z","location":{"zip":"10019"},"name":{"first":"Iris","middle":"J","last":"Kirlin"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"792374836","state_id":"493060769","student_number":"792374836","id":"530e5967049e75a9262d0501"},"uri":"/v1.1/students/530e5967049e75a9262d0501"},{"data":{"created":"2014-02-26T21:15:19.152Z","credentials":{"district_username":"williamh73","district_password":"roosh5Oo"},"district":"4fd43cc56d11340000000005","dob":"11/5/1997","ell_status":"Y","email":"william_h@example.com","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.787Z","location":{"zip":"10027"},"name":{"first":"William","middle":"M","last":"Hintz"},"race":"Black
874
- or African American","school":"530e595026403103360ff9fd","sis_id":"792381473","state_id":"614809725","student_number":"792381473","id":"530e5967049e75a9262d0503"},"uri":"/v1.1/students/530e5967049e75a9262d0503"},{"data":{"created":"2014-02-26T21:15:19.157Z","credentials":{"district_username":"trentk88","district_password":"xeKahKi6d"},"district":"4fd43cc56d11340000000005","dob":"8/25/2003","ell_status":"N","email":"trent_k@example.com","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.792Z","location":{"zip":"10010"},"name":{"first":"Trent","middle":"A","last":"Kertzmann"},"race":"Black
875
- or African American","school":"530e595026403103360ff9fe","sis_id":"793991888","state_id":"166527133","student_number":"793991888","id":"530e5967049e75a9262d0505"},"uri":"/v1.1/students/530e5967049e75a9262d0505"},{"data":{"created":"2014-02-26T21:15:19.168Z","credentials":{"district_username":"matthewj14","district_password":"Raijaeng7w"},"district":"4fd43cc56d11340000000005","dob":"1/28/2003","ell_status":"N","email":"matthew_j@example.net","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.796Z","location":{"zip":"11422"},"name":{"first":"Matthew","middle":"K","last":"Johns"},"race":"Black
876
- or African American","school":"530e595026403103360ff9fe","sis_id":"795790614","state_id":"873202319","student_number":"795790614","id":"530e5967049e75a9262d0509"},"uri":"/v1.1/students/530e5967049e75a9262d0509"},{"data":{"created":"2014-02-26T21:15:19.178Z","credentials":{"district_username":"ambers79","district_password":"daiWei8kaif"},"district":"4fd43cc56d11340000000005","dob":"8/13/1995","ell_status":"N","email":"s_amber@example.net","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.799Z","location":{"zip":"11210"},"name":{"first":"Amber","middle":"A","last":"Schmeler"},"race":"Black
877
- or African American","school":"530e595026403103360ff9fd","sis_id":"796330979","state_id":"359390982","student_number":"796330979","id":"530e5967049e75a9262d050c"},"uri":"/v1.1/students/530e5967049e75a9262d050c"},{"data":{"created":"2014-02-26T21:15:19.184Z","credentials":{"district_username":"michaelk74","district_password":"EGhaingi4qu"},"district":"4fd43cc56d11340000000005","dob":"4/16/2006","ell_status":"N","email":"k_michael@example.net","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.803Z","location":{"zip":"10457"},"name":{"first":"Michael","middle":"N","last":"Kuhic"},"race":"Black
878
- or African American","school":"530e595026403103360ff9fe","sis_id":"796450574","state_id":"551824864","student_number":"796450574","id":"530e5967049e75a9262d050e"},"uri":"/v1.1/students/530e5967049e75a9262d050e"},{"data":{"created":"2014-02-26T21:15:19.205Z","credentials":{"district_username":"carlm59","district_password":"aenae1Ied5oh"},"district":"4fd43cc56d11340000000005","dob":"3/20/2006","ell_status":"Y","email":"m_carl@example.com","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.808Z","location":{"zip":"11691"},"name":{"first":"Carl","middle":"M","last":"Marquardt"},"race":"Black
879
- or African American","school":"530e595026403103360ff9fe","sis_id":"797824759","state_id":"958662977","student_number":"797824759","id":"530e5967049e75a9262d0512"},"uri":"/v1.1/students/530e5967049e75a9262d0512"},{"data":{"created":"2014-02-26T21:15:19.213Z","credentials":{"district_username":"michaelw73","district_password":"Usie0Yai5"},"district":"4fd43cc56d11340000000005","dob":"11/16/1999","ell_status":"Y","email":"w.michael@example.com","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.812Z","location":{"zip":"11362"},"name":{"first":"Michael","middle":"A","last":"Will"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"798298973","state_id":"875699812","student_number":"798298973","id":"530e5967049e75a9262d0515"},"uri":"/v1.1/students/530e5967049e75a9262d0515"},{"data":{"created":"2014-02-26T21:15:19.236Z","credentials":{"district_username":"kimberlym26","district_password":"nie6Ieb1"},"district":"4fd43cc56d11340000000005","dob":"2/28/2007","ell_status":"Y","email":"m.kimberly@example.org","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.823Z","location":{"zip":"10039"},"name":{"first":"Kimberly","middle":"R","last":"Mraz"},"race":"Black
880
- or African American","school":"530e595026403103360ff9fe","sis_id":"800017226","state_id":"114823718","student_number":"800017226","id":"530e5967049e75a9262d051b"},"uri":"/v1.1/students/530e5967049e75a9262d051b"},{"data":{"created":"2014-02-26T21:15:19.244Z","credentials":{"district_username":"stevent75","district_password":"Iephe7vo8eh"},"district":"4fd43cc56d11340000000005","dob":"7/22/2001","ell_status":"N","email":"steven.t@example.com","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.827Z","location":{"zip":"11101"},"name":{"first":"Steven","middle":"D","last":"Tromp"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"800453775","state_id":"960668060","student_number":"800453775","id":"530e5967049e75a9262d051d"},"uri":"/v1.1/students/530e5967049e75a9262d051d"},{"data":{"created":"2014-02-26T21:15:19.250Z","credentials":{"district_username":"fannied92","district_password":"ulie8yeHeef"},"district":"4fd43cc56d11340000000005","dob":"7/17/2006","ell_status":"N","email":"d_fannie@example.org","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.832Z","location":{"zip":"10014"},"name":{"first":"Fannie","middle":"R","last":"Deckow"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"800767692","state_id":"815876498","student_number":"800767692","id":"530e5967049e75a9262d051e"},"uri":"/v1.1/students/530e5967049e75a9262d051e"},{"data":{"created":"2014-02-26T21:15:19.260Z","credentials":{"district_username":"ericw81","district_password":"Eejae9aeZ"},"district":"4fd43cc56d11340000000005","dob":"4/26/2004","ell_status":"N","email":"w_eric@example.org","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.836Z","location":{"zip":"11233"},"name":{"first":"Eric","middle":"S","last":"Weber"},"race":"Two
881
- or More Races","school":"530e595026403103360ff9fe","sis_id":"801856381","state_id":"890025687","student_number":"801856381","id":"530e5967049e75a9262d051f"},"uri":"/v1.1/students/530e5967049e75a9262d051f"},{"data":{"created":"2014-02-26T21:15:19.267Z","credentials":{"district_username":"darnellp27","district_password":"xee8ohS8"},"district":"4fd43cc56d11340000000005","dob":"4/25/2007","ell_status":"Y","email":"p_darnell@example.net","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.838Z","location":{"zip":"11433"},"name":{"first":"Darnell","middle":"E","last":"Pfannerstill"},"race":"Black
882
- or African American","school":"530e595026403103360ff9fe","sis_id":"802714127","state_id":"500656626","student_number":"802714127","id":"530e5967049e75a9262d0520"},"uri":"/v1.1/students/530e5967049e75a9262d0520"},{"data":{"created":"2014-02-26T21:15:19.273Z","credentials":{"district_username":"austinb52","district_password":"oGahf5Chee"},"district":"4fd43cc56d11340000000005","dob":"4/27/2005","ell_status":"N","email":"b_austin@example.net","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.842Z","location":{"zip":"10452"},"name":{"first":"Austin","middle":"R","last":"Brown"},"race":"American
883
- Indian","school":"530e595026403103360ff9fe","sis_id":"803613252","state_id":"448671178","student_number":"803613252","id":"530e5967049e75a9262d0521"},"uri":"/v1.1/students/530e5967049e75a9262d0521"},{"data":{"created":"2014-02-26T21:15:19.281Z","credentials":{"district_username":"johnh66","district_password":"Joh0aera"},"district":"4fd43cc56d11340000000005","dob":"8/10/2001","ell_status":"Y","email":"h.john@example.com","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.847Z","location":{"zip":"11417"},"name":{"first":"John","middle":"K","last":"Hickle"},"race":"Black
884
- or African American","school":"530e595026403103360ff9ff","sis_id":"804395766","state_id":"987346643","student_number":"804395766","id":"530e5967049e75a9262d0522"},"uri":"/v1.1/students/530e5967049e75a9262d0522"},{"data":{"created":"2014-02-26T21:15:19.291Z","credentials":{"district_username":"henrys21","district_password":"Caiguux6ae"},"district":"4fd43cc56d11340000000005","dob":"1/7/2000","ell_status":"N","email":"henry.s@example.org","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.851Z","location":{"zip":"10032"},"name":{"first":"Henry","middle":"J","last":"Schamberger"},"race":"Black
885
- or African American","school":"530e595026403103360ff9ff","sis_id":"804832521","state_id":"991241266","student_number":"804832521","id":"530e5967049e75a9262d0523"},"uri":"/v1.1/students/530e5967049e75a9262d0523"},{"data":{"created":"2014-02-26T21:15:19.296Z","credentials":{"district_username":"martham32","district_password":"fie5AiGoo"},"district":"4fd43cc56d11340000000005","dob":"12/18/2005","ell_status":"Y","email":"martha_m@example.com","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.854Z","location":{"zip":"10034"},"name":{"first":"Martha","middle":"A","last":"Mante"},"race":"Black
886
- or African American","school":"530e595026403103360ff9fe","sis_id":"805158932","state_id":"276866069","student_number":"805158932","id":"530e5967049e75a9262d0525"},"uri":"/v1.1/students/530e5967049e75a9262d0525"},{"data":{"created":"2014-02-26T21:15:19.303Z","credentials":{"district_username":"davidd92","district_password":"ahNgaht2Oon"},"district":"4fd43cc56d11340000000005","dob":"5/14/1996","ell_status":"Y","email":"d_david@example.com","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.858Z","location":{"zip":"10003"},"name":{"first":"David","middle":"M","last":"Dietrich"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"805220192","state_id":"790114527","student_number":"805220192","id":"530e5967049e75a9262d0527"},"uri":"/v1.1/students/530e5967049e75a9262d0527"},{"data":{"created":"2014-02-26T21:15:19.318Z","credentials":{"district_username":"patriciac10","district_password":"Quahph3ch"},"district":"4fd43cc56d11340000000005","dob":"5/10/1998","ell_status":"Y","email":"patricia_c@example.org","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.863Z","location":{"zip":"10030"},"name":{"first":"Patricia","middle":"B","last":"Casper"},"race":"Two
887
- or More Races","school":"530e595026403103360ff9fd","sis_id":"807911010","state_id":"951808921","student_number":"807911010","id":"530e5967049e75a9262d052d"},"uri":"/v1.1/students/530e5967049e75a9262d052d"},{"data":{"created":"2014-02-26T21:15:19.334Z","credentials":{"district_username":"williamb16","district_password":"Seetae1quie"},"district":"4fd43cc56d11340000000005","dob":"1/13/2003","ell_status":"N","email":"b.william@example.org","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.867Z","location":{"zip":"11209"},"name":{"first":"William","middle":"C","last":"Brakus"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"809814216","state_id":"531929800","student_number":"809814216","id":"530e5967049e75a9262d0532"},"uri":"/v1.1/students/530e5967049e75a9262d0532"},{"data":{"created":"2014-02-26T21:15:19.339Z","credentials":{"district_username":"barneyp50","district_password":"xai8HahS"},"district":"4fd43cc56d11340000000005","dob":"9/23/1996","ell_status":"N","email":"barney_p@example.net","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.869Z","location":{"zip":"11426"},"name":{"first":"Barney","middle":"S","last":"Pfeffer"},"race":"American
888
- Indian","school":"530e595026403103360ff9fd","sis_id":"810462350","state_id":"972639237","student_number":"810462350","id":"530e5967049e75a9262d0534"},"uri":"/v1.1/students/530e5967049e75a9262d0534"},{"data":{"created":"2014-02-26T21:15:19.345Z","credentials":{"district_username":"annies18","district_password":"iume2tosaiT1"},"district":"4fd43cc56d11340000000005","dob":"12/6/2000","ell_status":"Y","email":"annie_s@example.net","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.873Z","location":{"zip":"10036"},"name":{"first":"Annie","middle":"H","last":"Steuber"},"race":"Two
889
- or More Races","school":"530e595026403103360ff9ff","sis_id":"810614318","state_id":"166553223","student_number":"810614318","id":"530e5967049e75a9262d0536"},"uri":"/v1.1/students/530e5967049e75a9262d0536"},{"data":{"created":"2014-02-26T21:15:19.352Z","credentials":{"district_username":"karenr03","district_password":"iex5Quoab"},"district":"4fd43cc56d11340000000005","dob":"3/19/2002","ell_status":"Y","email":"karen.r@example.net","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.878Z","location":{"zip":"11235"},"name":{"first":"Karen","middle":"J","last":"Rempel"},"race":"Black
890
- or African American","school":"530e595026403103360ff9fe","sis_id":"811017903","state_id":"991101286","student_number":"811017903","id":"530e5967049e75a9262d0538"},"uri":"/v1.1/students/530e5967049e75a9262d0538"},{"data":{"created":"2014-02-26T21:15:19.361Z","credentials":{"district_username":"zacharym27","district_password":"ait0Waavoh"},"district":"4fd43cc56d11340000000005","dob":"7/21/1996","ell_status":"N","email":"zachary.m@example.net","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.882Z","location":{"zip":"11207"},"name":{"first":"Zachary","middle":"R","last":"Mosciski"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"811819127","state_id":"420971910","student_number":"811819127","id":"530e5967049e75a9262d053b"},"uri":"/v1.1/students/530e5967049e75a9262d053b"},{"data":{"created":"2014-02-26T21:15:19.370Z","credentials":{"district_username":"cristens99","district_password":"keeque1Ahs"},"district":"4fd43cc56d11340000000005","dob":"10/29/1999","ell_status":"N","email":"cristen_s@example.net","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.885Z","location":{"zip":"10304"},"name":{"first":"Cristen","middle":"A","last":"Sauer"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"812423699","state_id":"806848357","student_number":"812423699","id":"530e5967049e75a9262d053e"},"uri":"/v1.1/students/530e5967049e75a9262d053e"},{"data":{"created":"2014-02-26T21:15:19.380Z","credentials":{"district_username":"agnesr65","district_password":"kieL0mahCh"},"district":"4fd43cc56d11340000000005","dob":"10/9/2004","ell_status":"N","email":"agnes.r@example.org","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.889Z","location":{"zip":"11433"},"name":{"first":"Agnes","middle":"S","last":"Rippin"},"race":"American
891
- Indian","school":"530e595026403103360ff9fe","sis_id":"813120565","state_id":"830542935","student_number":"813120565","id":"530e5967049e75a9262d0541"},"uri":"/v1.1/students/530e5967049e75a9262d0541"},{"data":{"created":"2014-02-26T21:15:19.387Z","credentials":{"district_username":"shannons99","district_password":"Ahnae6eich"},"district":"4fd43cc56d11340000000005","dob":"8/1/1999","ell_status":"N","email":"s.shannon@example.org","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.894Z","location":{"zip":"10031"},"name":{"first":"Shannon","middle":"C","last":"Stehr"},"race":"Black
892
- or African American","school":"530e595026403103360ff9ff","sis_id":"813932199","state_id":"922487261","student_number":"813932199","id":"530e5967049e75a9262d0542"},"uri":"/v1.1/students/530e5967049e75a9262d0542"},{"data":{"created":"2014-02-26T21:15:19.401Z","credentials":{"district_username":"josew83","district_password":"ukaQueDoo9l"},"district":"4fd43cc56d11340000000005","dob":"1/7/1999","ell_status":"N","email":"jose.w@example.org","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.898Z","location":{"zip":"10467"},"name":{"first":"Jose","middle":"N","last":"Weimann"},"race":"Black
893
- or African American","school":"530e595026403103360ff9ff","sis_id":"815101283","state_id":"985323602","student_number":"815101283","id":"530e5967049e75a9262d0543"},"uri":"/v1.1/students/530e5967049e75a9262d0543"},{"data":{"created":"2014-02-26T21:15:19.415Z","credentials":{"district_username":"paulr24","district_password":"vohx7meiFaiqu"},"district":"4fd43cc56d11340000000005","dob":"9/30/1997","ell_status":"Y","email":"r.paul@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.900Z","location":{"zip":"11366"},"name":{"first":"Paul","middle":"D","last":"Ruecker"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"815110924","state_id":"146951128","student_number":"815110924","id":"530e5967049e75a9262d0544"},"uri":"/v1.1/students/530e5967049e75a9262d0544"},{"data":{"created":"2014-02-26T21:15:19.444Z","credentials":{"district_username":"christinah61","district_password":"IeB8Erai7gei"},"district":"4fd43cc56d11340000000005","dob":"9/21/1997","ell_status":"N","email":"h_christina@example.org","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.904Z","location":{"zip":"11415"},"name":{"first":"Christina","middle":"R","last":"Howell"},"race":"Black
894
- or African American","school":"530e595026403103360ff9fd","sis_id":"817988361","state_id":"506380977","student_number":"817988361","id":"530e5967049e75a9262d0549"},"uri":"/v1.1/students/530e5967049e75a9262d0549"},{"data":{"created":"2014-02-26T21:15:19.455Z","credentials":{"district_username":"anthonys71","district_password":"oogohbe7Ph"},"district":"4fd43cc56d11340000000005","dob":"7/8/2006","ell_status":"N","email":"s.anthony@example.org","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.923Z","location":{"zip":"10010"},"name":{"first":"Anthony","middle":"A","last":"Schamberger"},"race":"Black
895
- or African American","school":"530e595026403103360ff9fe","sis_id":"819021071","state_id":"575688366","student_number":"819021071","id":"530e5967049e75a9262d054d"},"uri":"/v1.1/students/530e5967049e75a9262d054d"},{"data":{"created":"2014-02-26T21:15:19.474Z","credentials":{"district_username":"edwarde77","district_password":"wo4thoep4AB"},"district":"4fd43cc56d11340000000005","dob":"2/25/2003","ell_status":"N","email":"e.edward@example.com","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.927Z","location":{"zip":"11210"},"name":{"first":"Edward","middle":"M","last":"Emard"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"821986877","state_id":"279178317","student_number":"821986877","id":"530e5967049e75a9262d0553"},"uri":"/v1.1/students/530e5967049e75a9262d0553"},{"data":{"created":"2014-02-26T21:15:19.485Z","credentials":{"district_username":"samuelo65","district_password":"fai9ahYoo"},"district":"4fd43cc56d11340000000005","dob":"8/4/2005","ell_status":"N","email":"o.samuel@example.com","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.929Z","location":{"zip":"10010"},"name":{"first":"Samuel","middle":"B","last":"O''Keefe"},"race":"Black
896
- or African American","school":"530e595026403103360ff9fe","sis_id":"822547765","state_id":"966505139","student_number":"822547765","id":"530e5967049e75a9262d0557"},"uri":"/v1.1/students/530e5967049e75a9262d0557"}],"links":[{"rel":"self","uri":"/v1.1/students?starting_after=530e5966049e75a9262d046c"},{"rel":"prev","uri":"/v1.1/students?ending_before=530e5966049e75a9262d046d"},{"rel":"next","uri":"/v1.1/students?starting_after=530e5967049e75a9262d0557"}]}'
897
- http_version:
898
- recorded_at: Sat, 13 Sep 2014 00:03:52 GMT
899
- - request:
900
- method: get
901
- uri: https://api.clever.com//v1.1/students?starting_after=530e5967049e75a9262d0557
902
- body:
903
- encoding: US-ASCII
904
- string: ''
905
- headers:
906
- Accept:
907
- - ! '*/*; q=0.5, application/xml'
908
- Accept-Encoding:
909
- - gzip, deflate
910
- Authorization:
911
- - Bearer DEMO_TOKEN
912
- User-Agent:
913
- - Ruby
914
- response:
915
- status:
916
- code: 200
917
- message: OK
918
- headers:
919
- Access-Control-Allow-Headers:
920
- - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
921
- Access-Control-Allow-Methods:
922
- - GET,PATCH,POST,DELETE
923
- Access-Control-Allow-Origin:
924
- - ! '*'
925
- Content-Type:
926
- - application/json; charset=utf-8
927
- Date:
928
- - Sat, 13 Sep 2014 00:03:52 GMT
929
- Etag:
930
- - ! '"2114698730"'
931
- Server:
932
- - nginx/1.4.7
933
- X-Powered-By:
934
- - Express
935
- Content-Length:
936
- - '66242'
937
- Connection:
938
- - keep-alive
939
- body:
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
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
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
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
945
- or African American","school":"530e595026403103360ff9ff","sis_id":"825792521","state_id":"173600707","student_number":"825792521","id":"530e5967049e75a9262d0560"},"uri":"/v1.1/students/530e5967049e75a9262d0560"},{"data":{"created":"2014-02-26T21:15:19.518Z","credentials":{"district_username":"marciac55","district_password":"oPh1aeghah"},"district":"4fd43cc56d11340000000005","dob":"9/10/1996","ell_status":"N","email":"marcia_c@example.com","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.949Z","location":{"zip":"10012"},"name":{"first":"Marcia","middle":"J","last":"Casper"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"826795155","state_id":"234080228","student_number":"826795155","id":"530e5967049e75a9262d0561"},"uri":"/v1.1/students/530e5967049e75a9262d0561"},{"data":{"created":"2014-02-26T21:15:19.522Z","credentials":{"district_username":"elsau63","district_password":"Tai8ohBe"},"district":"4fd43cc56d11340000000005","dob":"12/30/2002","ell_status":"N","email":"elsa_u@example.org","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.954Z","location":{"zip":"10017"},"name":{"first":"Elsa","middle":"A","last":"Upton"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"826870863","state_id":"629574521","student_number":"826870863","id":"530e5967049e75a9262d0562"},"uri":"/v1.1/students/530e5967049e75a9262d0562"},{"data":{"created":"2014-02-26T21:15:19.531Z","credentials":{"district_username":"benjaminp01","district_password":"chi5Foofo"},"district":"4fd43cc56d11340000000005","dob":"4/1/1995","ell_status":"Y","email":"p.benjamin@example.org","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.958Z","location":{"zip":"11209"},"name":{"first":"Benjamin","middle":"A","last":"Parker"},"race":"Two
946
- or More Races","school":"530e595026403103360ff9fd","sis_id":"828728001","state_id":"771186710","student_number":"828728001","id":"530e5967049e75a9262d0563"},"uri":"/v1.1/students/530e5967049e75a9262d0563"},{"data":{"created":"2014-02-26T21:15:19.537Z","credentials":{"district_username":"katherines59","district_password":"aez6ohGees6ae"},"district":"4fd43cc56d11340000000005","dob":"10/30/1996","ell_status":"Y","email":"katherine.s@example.org","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:43.960Z","location":{"zip":"11370"},"name":{"first":"Katherine","middle":"A","last":"Shanahan"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"829336759","state_id":"189633121","student_number":"829336759","id":"530e5967049e75a9262d0564"},"uri":"/v1.1/students/530e5967049e75a9262d0564"},{"data":{"created":"2014-02-26T21:15:19.542Z","credentials":{"district_username":"dianam11","district_password":"Ail1shaeDi"},"district":"4fd43cc56d11340000000005","dob":"12/11/2007","ell_status":"N","email":"m.diana@example.net","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.965Z","location":{"zip":"11374"},"name":{"first":"Diana","middle":"E","last":"Monahan"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"830604811","state_id":"870573452","student_number":"830604811","id":"530e5967049e75a9262d0565"},"uri":"/v1.1/students/530e5967049e75a9262d0565"},{"data":{"created":"2014-02-26T21:15:19.546Z","credentials":{"district_username":"nicolec44","district_password":"yooV7eedie"},"district":"4fd43cc56d11340000000005","dob":"12/13/2006","ell_status":"N","email":"c.nicole@example.com","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.969Z","location":{"zip":"11214"},"name":{"first":"Nicole","middle":"A","last":"Champlin"},"race":"Two
947
- or More Races","school":"530e595026403103360ff9fe","sis_id":"830743144","state_id":"568000077","student_number":"830743144","id":"530e5967049e75a9262d0566"},"uri":"/v1.1/students/530e5967049e75a9262d0566"},{"data":{"created":"2014-02-26T21:15:19.551Z","credentials":{"district_username":"sarahc81","district_password":"ref6Me2m"},"district":"4fd43cc56d11340000000005","dob":"4/29/2003","ell_status":"N","email":"sarah.c@example.com","frl_status":"Paid","gender":"F","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.973Z","location":{"zip":"11210"},"name":{"first":"Sarah","middle":"B","last":"Cartwright"},"race":"American
948
- Indian","school":"530e595026403103360ff9fe","sis_id":"830868381","state_id":"786132399","student_number":"830868381","id":"530e5967049e75a9262d0567"},"uri":"/v1.1/students/530e5967049e75a9262d0567"},{"data":{"created":"2014-02-26T21:15:19.560Z","credentials":{"district_username":"sandram15","district_password":"niwoh3neew5N"},"district":"4fd43cc56d11340000000005","dob":"8/25/1996","ell_status":"N","email":"sandra.m@example.net","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.976Z","location":{"zip":"11237"},"name":{"first":"Sandra","middle":"J","last":"Moen"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"832208015","state_id":"551259310","student_number":"832208015","id":"530e5967049e75a9262d0568"},"uri":"/v1.1/students/530e5967049e75a9262d0568"},{"data":{"created":"2014-02-26T21:15:19.566Z","credentials":{"district_username":"danielm67","district_password":"Fo7aisaicah"},"district":"4fd43cc56d11340000000005","dob":"4/4/1995","ell_status":"Y","email":"m.daniel@example.com","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.980Z","location":{"zip":"10026"},"name":{"first":"Daniel","middle":"R","last":"Mraz"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"832947367","state_id":"992129163","student_number":"832947367","id":"530e5967049e75a9262d0569"},"uri":"/v1.1/students/530e5967049e75a9262d0569"},{"data":{"created":"2014-02-26T21:15:19.576Z","credentials":{"district_username":"agnesg10","district_password":"boonae3Xae"},"district":"4fd43cc56d11340000000005","dob":"9/1/2002","ell_status":"Y","email":"g_agnes@example.net","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.985Z","location":{"zip":"10301"},"name":{"first":"Agnes","middle":"K","last":"Gutkowski"},"race":"Black
949
- or African American","school":"530e595026403103360ff9fe","sis_id":"833843210","state_id":"877827872","student_number":"833843210","id":"530e5967049e75a9262d056b"},"uri":"/v1.1/students/530e5967049e75a9262d056b"},{"data":{"created":"2014-02-26T21:15:19.582Z","credentials":{"district_username":"lionelr02","district_password":"ootaes0aiTh"},"district":"4fd43cc56d11340000000005","dob":"11/20/2000","ell_status":"N","email":"r.lionel@example.org","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.989Z","location":{"zip":"11356"},"name":{"first":"Lionel","middle":"M","last":"Romaguera"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"834664102","state_id":"595169661","student_number":"834664102","id":"530e5967049e75a9262d056d"},"uri":"/v1.1/students/530e5967049e75a9262d056d"},{"data":{"created":"2014-02-26T21:15:19.608Z","credentials":{"district_username":"angelag15","district_password":"wah4Aeyah"},"district":"4fd43cc56d11340000000005","dob":"9/29/1998","ell_status":"N","email":"g.angela@example.com","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.991Z","location":{"zip":"10451"},"name":{"first":"Angela","middle":"S","last":"Glover"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"839792915","state_id":"474721894","student_number":"839792915","id":"530e5967049e75a9262d0575"},"uri":"/v1.1/students/530e5967049e75a9262d0575"},{"data":{"created":"2014-02-26T21:15:19.614Z","credentials":{"district_username":"williams03","district_password":"yoon6Iro0"},"district":"4fd43cc56d11340000000005","dob":"9/17/1997","ell_status":"N","email":"william_s@example.com","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:43.995Z","location":{"zip":"11207"},"name":{"first":"William","middle":"F","last":"Stark"},"race":"Two
950
- or More Races","school":"530e595026403103360ff9fd","sis_id":"840603303","state_id":"789500746","student_number":"840603303","id":"530e5967049e75a9262d0577"},"uri":"/v1.1/students/530e5967049e75a9262d0577"},{"data":{"created":"2014-02-26T21:15:19.635Z","credentials":{"district_username":"cliffords18","district_password":"EiD5Oobeid"},"district":"4fd43cc56d11340000000005","dob":"4/17/2007","ell_status":"N","email":"s.clifford@example.org","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.000Z","location":{"zip":"11359"},"name":{"first":"Clifford","middle":"K","last":"Stark"},"race":"Black
951
- or African American","school":"530e595026403103360ff9fe","sis_id":"841215418","state_id":"705647167","student_number":"841215418","id":"530e5967049e75a9262d057b"},"uri":"/v1.1/students/530e5967049e75a9262d057b"},{"data":{"created":"2014-02-26T21:15:19.645Z","credentials":{"district_username":"kimj12","district_password":"phee7kah3R"},"district":"4fd43cc56d11340000000005","dob":"5/13/1998","ell_status":"Y","email":"kim_j@example.org","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-08-11T18:34:47.468Z","location":{"zip":"11377"},"name":{"first":"Kimberly","last":"Jacobi","middle":"J"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"841688312","state_id":"484726796","student_number":"841688312","id":"530e5967049e75a9262d057e"},"uri":"/v1.1/students/530e5967049e75a9262d057e"},{"data":{"created":"2014-02-26T21:15:19.667Z","credentials":{"district_username":"averyr15","district_password":"Airie3kohb"},"district":"4fd43cc56d11340000000005","dob":"7/1/1995","ell_status":"N","email":"r.avery@example.net","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.007Z","location":{"zip":"10310"},"name":{"first":"Avery","middle":"S","last":"Rau"},"race":"Two
952
- or More Races","school":"530e595026403103360ff9fd","sis_id":"846039915","state_id":"981525206","student_number":"846039915","id":"530e5967049e75a9262d0584"},"uri":"/v1.1/students/530e5967049e75a9262d0584"},{"data":{"created":"2014-02-26T21:15:19.671Z","credentials":{"district_username":"marian05","district_password":"Ookierei4U"},"district":"4fd43cc56d11340000000005","dob":"5/28/1995","ell_status":"Y","email":"maria_n@example.com","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.011Z","location":{"zip":"11692"},"name":{"first":"Maria","middle":"O","last":"Nienow"},"race":"American
953
- Indian","school":"530e595026403103360ff9fd","sis_id":"846100905","state_id":"612018625","student_number":"846100905","id":"530e5967049e75a9262d0585"},"uri":"/v1.1/students/530e5967049e75a9262d0585"},{"data":{"created":"2014-02-26T21:15:19.676Z","credentials":{"district_username":"joannec09","district_password":"ahahquei0Hae"},"district":"4fd43cc56d11340000000005","dob":"12/21/1997","ell_status":"N","email":"joanne.c@example.net","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.016Z","location":{"zip":"11215"},"name":{"first":"Joanne","middle":"S","last":"Casper"},"race":"Two
954
- or More Races","school":"530e595026403103360ff9fd","sis_id":"846855809","state_id":"617696389","student_number":"846855809","id":"530e5967049e75a9262d0586"},"uri":"/v1.1/students/530e5967049e75a9262d0586"},{"data":{"created":"2014-02-26T21:15:19.679Z","credentials":{"district_username":"mariel87","district_password":"ahThei8naS"},"district":"4fd43cc56d11340000000005","dob":"12/29/2003","ell_status":"Y","email":"marie.l@example.org","frl_status":"Paid","gender":"F","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.019Z","location":{"zip":"11214"},"name":{"first":"Marie","middle":"R","last":"Leannon"},"race":"Black
955
- or African American","school":"530e595026403103360ff9fe","sis_id":"847074287","state_id":"948375337","student_number":"847074287","id":"530e5967049e75a9262d0587"},"uri":"/v1.1/students/530e5967049e75a9262d0587"},{"data":{"created":"2014-02-26T21:15:19.684Z","credentials":{"district_username":"darnellb46","district_password":"xee8ohS8"},"district":"4fd43cc56d11340000000005","dob":"5/18/2005","ell_status":"Y","email":"b.darnell@example.org","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.022Z","location":{"zip":"11235"},"name":{"first":"Darnell","middle":"E","last":"Boehm"},"race":"Black
956
- or African American","school":"530e595026403103360ff9fe","sis_id":"847463946","state_id":"919765735","student_number":"847463946","id":"530e5967049e75a9262d0588"},"uri":"/v1.1/students/530e5967049e75a9262d0588"},{"data":{"created":"2014-02-26T21:15:19.692Z","credentials":{"district_username":"brianr24","district_password":"ea8UHeiPhohth"},"district":"4fd43cc56d11340000000005","dob":"12/9/2001","ell_status":"N","email":"r_brian@example.org","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.035Z","location":{"zip":"11358"},"name":{"first":"Brian","middle":"L","last":"Reichel"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"849838224","state_id":"168719365","student_number":"849838224","id":"530e5967049e75a9262d0589"},"uri":"/v1.1/students/530e5967049e75a9262d0589"},{"data":{"created":"2014-02-26T21:15:19.698Z","credentials":{"district_username":"shirleyp08","district_password":"paer5DooCai"},"district":"4fd43cc56d11340000000005","dob":"3/4/2002","ell_status":"Y","email":"p_shirley@example.net","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.040Z","location":{"zip":"10314"},"name":{"first":"Shirley","middle":"R","last":"Prohaska"},"race":"American
957
- Indian","school":"530e595026403103360ff9fe","sis_id":"850234408","state_id":"401802583","student_number":"850234408","id":"530e5967049e75a9262d058a"},"uri":"/v1.1/students/530e5967049e75a9262d058a"},{"data":{"created":"2014-02-26T21:15:19.702Z","credentials":{"district_username":"juliek34","district_password":"yohS5theed"},"district":"4fd43cc56d11340000000005","dob":"10/13/1997","ell_status":"Y","email":"julie_k@example.org","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.044Z","location":{"zip":"11423"},"name":{"first":"Julie","middle":"T","last":"Kautzer"},"race":"Black
958
- or African American","school":"530e595026403103360ff9fd","sis_id":"850556534","state_id":"133300754","student_number":"850556534","id":"530e5967049e75a9262d058b"},"uri":"/v1.1/students/530e5967049e75a9262d058b"},{"data":{"created":"2014-02-26T21:15:19.705Z","credentials":{"district_username":"beverlyb47","district_password":"Aocee0eebao"},"district":"4fd43cc56d11340000000005","dob":"10/25/1995","ell_status":"Y","email":"beverly_b@example.org","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.046Z","location":{"zip":"11102"},"name":{"first":"Beverly","middle":"R","last":"Bauch"},"race":"American
959
- Indian","school":"530e595026403103360ff9fd","sis_id":"851126947","state_id":"832114783","student_number":"851126947","id":"530e5967049e75a9262d058c"},"uri":"/v1.1/students/530e5967049e75a9262d058c"},{"data":{"created":"2014-02-26T21:15:19.709Z","credentials":{"district_username":"tamaran78","district_password":"Gai6aef6Ukoo"},"district":"4fd43cc56d11340000000005","dob":"8/4/1996","ell_status":"N","email":"n.tamara@example.org","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.050Z","location":{"zip":"11225"},"name":{"first":"Tamara","middle":"H","last":"Nolan"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"851265078","state_id":"514762582","student_number":"851265078","id":"530e5967049e75a9262d058d"},"uri":"/v1.1/students/530e5967049e75a9262d058d"},{"data":{"created":"2014-02-26T21:15:19.720Z","credentials":{"district_username":"paulf55","district_password":"IeGo3yiL"},"district":"4fd43cc56d11340000000005","dob":"3/28/1995","ell_status":"N","email":"paul_f@example.org","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.055Z","location":{"zip":"10013"},"name":{"first":"Paul","middle":"E","last":"Fritsch"},"race":"American
960
- Indian","school":"530e595026403103360ff9fd","sis_id":"851852155","state_id":"918877877","student_number":"851852155","id":"530e5967049e75a9262d058e"},"uri":"/v1.1/students/530e5967049e75a9262d058e"},{"data":{"created":"2014-02-26T21:15:19.725Z","credentials":{"district_username":"jamesm07","district_password":"aiMah2oh"},"district":"4fd43cc56d11340000000005","dob":"7/15/2001","ell_status":"Y","email":"m_james@example.org","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.059Z","location":{"zip":"11103"},"name":{"first":"James","middle":"K","last":"Murray"},"race":"American
961
- Indian","school":"530e595026403103360ff9ff","sis_id":"852218907","state_id":"997925866","student_number":"852218907","id":"530e5967049e75a9262d058f"},"uri":"/v1.1/students/530e5967049e75a9262d058f"},{"data":{"created":"2014-02-26T21:15:19.729Z","credentials":{"district_username":"rosss39","district_password":"Xoo1Iech"},"district":"4fd43cc56d11340000000005","dob":"3/1/1998","ell_status":"N","email":"ross_s@example.org","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.062Z","location":{"zip":"11005"},"name":{"first":"Ross","middle":"T","last":"Shields"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"852850539","state_id":"307421408","student_number":"852850539","id":"530e5967049e75a9262d0590"},"uri":"/v1.1/students/530e5967049e75a9262d0590"},{"data":{"created":"2014-02-26T21:15:19.734Z","credentials":{"district_username":"sarar43","district_password":"Ohsoo1aijah"},"district":"4fd43cc56d11340000000005","dob":"3/18/1995","ell_status":"Y","email":"sara_r@example.net","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.066Z","location":{"zip":"10314"},"name":{"first":"Sara","middle":"M","last":"Runolfsson"},"race":"Black
962
- or African American","school":"530e595026403103360ff9fd","sis_id":"853681043","state_id":"573233513","student_number":"853681043","id":"530e5967049e75a9262d0591"},"uri":"/v1.1/students/530e5967049e75a9262d0591"},{"data":{"created":"2014-02-26T21:15:19.741Z","credentials":{"district_username":"karenh31","district_password":"apohR9ei"},"district":"4fd43cc56d11340000000005","dob":"2/2/1999","ell_status":"Y","email":"h.karen@example.com","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.071Z","location":{"zip":"10304"},"name":{"first":"Karen","middle":"J","last":"Halvorson"},"race":"Black
963
- or African American","school":"530e595026403103360ff9ff","sis_id":"855776931","state_id":"812686349","student_number":"855776931","id":"530e5967049e75a9262d0592"},"uri":"/v1.1/students/530e5967049e75a9262d0592"},{"data":{"created":"2014-02-26T21:15:19.749Z","credentials":{"district_username":"stevenm93","district_password":"Cae6Zoogh"},"district":"4fd43cc56d11340000000005","dob":"9/4/1997","ell_status":"N","email":"m_steven@example.org","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.074Z","location":{"zip":"11414"},"name":{"first":"Steven","middle":"A","last":"Macejkovic"},"race":"Two
964
- or More Races","school":"530e595026403103360ff9fd","sis_id":"857671893","state_id":"578469371","student_number":"857671893","id":"530e5967049e75a9262d0594"},"uri":"/v1.1/students/530e5967049e75a9262d0594"},{"data":{"created":"2014-02-26T21:15:19.754Z","credentials":{"district_username":"candacef99","district_password":"ooquoo8Noh2"},"district":"4fd43cc56d11340000000005","dob":"2/4/1997","ell_status":"N","email":"candace_f@example.org","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.077Z","location":{"zip":"11212"},"name":{"first":"Candace","middle":"B","last":"Feeney"},"race":"Black
965
- or African American","school":"530e595026403103360ff9fd","sis_id":"858659699","state_id":"805108540","student_number":"858659699","id":"530e5967049e75a9262d0596"},"uri":"/v1.1/students/530e5967049e75a9262d0596"},{"data":{"created":"2014-02-26T21:15:19.760Z","credentials":{"district_username":"patriciah82","district_password":"Eikohku9"},"district":"4fd43cc56d11340000000005","dob":"4/29/2002","ell_status":"Y","email":"patricia_h@example.com","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.081Z","location":{"zip":"10457"},"name":{"first":"Patricia","middle":"J","last":"Hahn"},"race":"Two
966
- or More Races","school":"530e595026403103360ff9fe","sis_id":"858856582","state_id":"902402466","student_number":"858856582","id":"530e5967049e75a9262d0598"},"uri":"/v1.1/students/530e5967049e75a9262d0598"},{"data":{"created":"2014-02-26T21:15:19.767Z","credentials":{"district_username":"douglasg80","district_password":"Oiph4Chias"},"district":"4fd43cc56d11340000000005","dob":"2/24/2000","ell_status":"N","email":"douglas_g@example.com","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.086Z","location":{"zip":"10037"},"name":{"first":"Douglas","middle":"H","last":"Gutkowski"},"race":"Black
967
- or African American","school":"530e595026403103360ff9ff","sis_id":"859205780","state_id":"572357208","student_number":"859205780","id":"530e5967049e75a9262d059b"},"uri":"/v1.1/students/530e5967049e75a9262d059b"},{"data":{"created":"2014-02-26T21:15:19.775Z","credentials":{"district_username":"kelving81","district_password":"uu2reeTh0ai"},"district":"4fd43cc56d11340000000005","dob":"11/29/1997","ell_status":"N","email":"g.kelvin@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.090Z","location":{"zip":"11435"},"name":{"first":"Kelvin","middle":"C","last":"Gaylord"},"race":"Black
968
- or African American","school":"530e595026403103360ff9fd","sis_id":"859833781","state_id":"933327317","student_number":"859833781","id":"530e5967049e75a9262d059e"},"uri":"/v1.1/students/530e5967049e75a9262d059e"},{"data":{"created":"2014-02-26T21:15:19.784Z","credentials":{"district_username":"robertj48","district_password":"ieS2ahvahyae"},"district":"4fd43cc56d11340000000005","dob":"11/25/1996","ell_status":"N","email":"j_robert@example.org","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.092Z","location":{"zip":"10308"},"name":{"first":"Robert","middle":"C","last":"Jenkins"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"860387548","state_id":"402013440","student_number":"860387548","id":"530e5967049e75a9262d05a1"},"uri":"/v1.1/students/530e5967049e75a9262d05a1"},{"data":{"created":"2014-02-26T21:15:19.791Z","credentials":{"district_username":"kennethn94","district_password":"eiwaoSae8u"},"district":"4fd43cc56d11340000000005","dob":"9/21/2007","ell_status":"N","email":"n.kenneth@example.net","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.096Z","location":{"zip":"11360"},"name":{"first":"Kenneth","middle":"M","last":"Nicolas"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"860497994","state_id":"862851224","student_number":"860497994","id":"530e5967049e75a9262d05a3"},"uri":"/v1.1/students/530e5967049e75a9262d05a3"},{"data":{"created":"2014-02-26T21:15:19.800Z","credentials":{"district_username":"keithm37","district_password":"pai0Chu6"},"district":"4fd43cc56d11340000000005","dob":"8/6/1995","ell_status":"N","email":"keith_m@example.org","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.101Z","location":{"zip":"11434"},"name":{"first":"Keith","middle":"J","last":"Murphy"},"race":"Black
969
- or African American","school":"530e595026403103360ff9fd","sis_id":"861500337","state_id":"382754259","student_number":"861500337","id":"530e5967049e75a9262d05a6"},"uri":"/v1.1/students/530e5967049e75a9262d05a6"},{"data":{"created":"2014-02-26T21:15:19.805Z","credentials":{"district_username":"lesliev40","district_password":"Aec6quu4ohVah"},"district":"4fd43cc56d11340000000005","dob":"4/4/1998","ell_status":"N","email":"v.leslie@example.org","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.105Z","location":{"zip":"10040"},"name":{"first":"Leslie","middle":"A","last":"Vandervort"},"race":"Black
970
- or African American","school":"530e595026403103360ff9fd","sis_id":"861544940","state_id":"349818732","student_number":"861544940","id":"530e5967049e75a9262d05a8"},"uri":"/v1.1/students/530e5967049e75a9262d05a8"},{"data":{"created":"2014-02-26T21:15:19.810Z","credentials":{"district_username":"freds38","district_password":"AoF7IxaQu1ai"},"district":"4fd43cc56d11340000000005","dob":"1/22/1999","ell_status":"Y","email":"fred_s@example.org","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.108Z","location":{"zip":"11377"},"name":{"first":"Fred","middle":"S","last":"Schultz"},"race":"Two
971
- or More Races","school":"530e595026403103360ff9ff","sis_id":"862186138","state_id":"859980370","student_number":"862186138","id":"530e5967049e75a9262d05aa"},"uri":"/v1.1/students/530e5967049e75a9262d05aa"},{"data":{"created":"2014-02-26T21:15:19.819Z","credentials":{"district_username":"opalh33","district_password":"nu9weitooPh"},"district":"4fd43cc56d11340000000005","dob":"9/20/2003","ell_status":"N","email":"h_opal@example.com","frl_status":"Paid","gender":"F","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.111Z","location":{"zip":"11239"},"name":{"first":"Opal","middle":"F","last":"Hudson"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"863588033","state_id":"647538557","student_number":"863588033","id":"530e5967049e75a9262d05ac"},"uri":"/v1.1/students/530e5967049e75a9262d05ac"},{"data":{"created":"2014-02-26T21:15:19.830Z","credentials":{"district_username":"nancyb90","district_password":"oos4eeV5k"},"district":"4fd43cc56d11340000000005","dob":"8/22/2004","ell_status":"N","email":"nancy_b@example.com","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.117Z","location":{"zip":"11367"},"name":{"first":"Nancy","middle":"S","last":"Boyle"},"race":"Black
972
- or African American","school":"530e595026403103360ff9fe","sis_id":"865434690","state_id":"987022429","student_number":"865434690","id":"530e5967049e75a9262d05ad"},"uri":"/v1.1/students/530e5967049e75a9262d05ad"},{"data":{"created":"2014-02-26T21:15:19.844Z","credentials":{"district_username":"tonyah94","district_password":"Bo1oa2tah"},"district":"4fd43cc56d11340000000005","dob":"7/31/2001","ell_status":"Y","email":"tonya_h@example.net","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.119Z","location":{"zip":"11101"},"name":{"first":"Tonya","middle":"T","last":"Hammes"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"865828594","state_id":"468226764","student_number":"865828594","id":"530e5967049e75a9262d05ae"},"uri":"/v1.1/students/530e5967049e75a9262d05ae"},{"data":{"created":"2014-02-26T21:15:19.856Z","credentials":{"district_username":"paulb39","district_password":"bu7iVaiNgaph"},"district":"4fd43cc56d11340000000005","dob":"9/15/1999","ell_status":"N","email":"paul.b@example.org","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.123Z","location":{"zip":"10461"},"name":{"first":"Paul","middle":"E","last":"Bergnaum"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"868997339","state_id":"259925233","student_number":"868997339","id":"530e5967049e75a9262d05af"},"uri":"/v1.1/students/530e5967049e75a9262d05af"},{"data":{"created":"2014-02-26T21:15:19.863Z","credentials":{"district_username":"lulab78","district_password":"uaXie3ai"},"district":"4fd43cc56d11340000000005","dob":"6/7/2000","ell_status":"N","email":"lula_b@example.com","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.128Z","location":{"zip":"10309"},"name":{"first":"Lula","middle":"R","last":"Bode"},"race":"American
973
- Indian","school":"530e595026403103360ff9ff","sis_id":"870605578","state_id":"296193871","student_number":"870605578","id":"530e5967049e75a9262d05b0"},"uri":"/v1.1/students/530e5967049e75a9262d05b0"},{"data":{"created":"2014-02-26T21:15:19.868Z","credentials":{"district_username":"jasonw13","district_password":"taemee1Ta"},"district":"4fd43cc56d11340000000005","dob":"5/10/2002","ell_status":"N","email":"w_jason@example.com","frl_status":"Paid","gender":"M","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.132Z","location":{"zip":"11238"},"name":{"first":"Jason","middle":"J","last":"Wilderman"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"870661913","state_id":"503680014","student_number":"870661913","id":"530e5967049e75a9262d05b1"},"uri":"/v1.1/students/530e5967049e75a9262d05b1"},{"data":{"created":"2014-02-26T21:15:19.875Z","credentials":{"district_username":"loydz55","district_password":"thi3Aifee"},"district":"4fd43cc56d11340000000005","dob":"5/11/1995","ell_status":"Y","email":"loyd.z@example.net","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.135Z","location":{"zip":"11206"},"name":{"first":"Loyd","middle":"D","last":"Zieme"},"race":"Black
974
- or African American","school":"530e595026403103360ff9fd","sis_id":"870891155","state_id":"480869517","student_number":"870891155","id":"530e5967049e75a9262d05b2"},"uri":"/v1.1/students/530e5967049e75a9262d05b2"},{"data":{"created":"2014-02-26T21:15:19.879Z","credentials":{"district_username":"walterh32","district_password":"alaeChai1po"},"district":"4fd43cc56d11340000000005","dob":"3/13/1997","ell_status":"Y","email":"walter.h@example.com","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.138Z","location":{"zip":"11355"},"name":{"first":"Walter","middle":"J","last":"Howe"},"race":"Black
975
- or African American","school":"530e595026403103360ff9fd","sis_id":"872478532","state_id":"190905763","student_number":"872478532","id":"530e5967049e75a9262d05b3"},"uri":"/v1.1/students/530e5967049e75a9262d05b3"},{"data":{"created":"2014-02-26T21:15:19.886Z","credentials":{"district_username":"charlotteb83","district_password":"Ooj7pae6OK"},"district":"4fd43cc56d11340000000005","dob":"12/17/2000","ell_status":"Y","email":"charlotte_b@example.org","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.143Z","location":{"zip":"11385"},"name":{"first":"Charlotte","middle":"J","last":"Batz"},"race":"Black
976
- or African American","school":"530e595026403103360ff9ff","sis_id":"872813783","state_id":"936140191","student_number":"872813783","id":"530e5967049e75a9262d05b4"},"uri":"/v1.1/students/530e5967049e75a9262d05b4"},{"data":{"created":"2014-02-26T21:15:19.893Z","credentials":{"district_username":"williame49","district_password":"Ohghequao2ah"},"district":"4fd43cc56d11340000000005","dob":"9/15/1998","ell_status":"Y","email":"e_william@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.147Z","location":{"zip":"11101"},"name":{"first":"William","middle":"C","last":"Erdman"},"race":"Black
977
- or African American","school":"530e595026403103360ff9fd","sis_id":"874522649","state_id":"781013388","student_number":"874522649","id":"530e5967049e75a9262d05b5"},"uri":"/v1.1/students/530e5967049e75a9262d05b5"},{"data":{"created":"2014-02-26T21:15:19.902Z","credentials":{"district_username":"suzanned05","district_password":"cooT2oeBai3e"},"district":"4fd43cc56d11340000000005","dob":"1/18/2006","ell_status":"N","email":"suzanne_d@example.org","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.150Z","location":{"zip":"11422"},"name":{"first":"Suzanne","middle":"G","last":"Douglas"},"race":"Black
978
- or African American","school":"530e595026403103360ff9fe","sis_id":"876040905","state_id":"488238780","student_number":"876040905","id":"530e5967049e75a9262d05b6"},"uri":"/v1.1/students/530e5967049e75a9262d05b6"},{"data":{"created":"2014-02-26T21:15:19.911Z","credentials":{"district_username":"gregorym27","district_password":"kaegoy5Ii8"},"district":"4fd43cc56d11340000000005","dob":"4/19/1998","ell_status":"N","email":"m_gregory@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.154Z","location":{"zip":"11366"},"name":{"first":"Gregory","middle":"J","last":"McCullough"},"race":"Black
979
- or African American","school":"530e595026403103360ff9fd","sis_id":"877504427","state_id":"360018052","student_number":"877504427","id":"530e5967049e75a9262d05b7"},"uri":"/v1.1/students/530e5967049e75a9262d05b7"},{"data":{"created":"2014-02-26T21:15:19.917Z","credentials":{"district_username":"donnal43","district_password":"auNg2wodah"},"district":"4fd43cc56d11340000000005","dob":"7/26/2001","ell_status":"N","email":"donna.l@example.org","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.159Z","location":{"zip":"11237"},"name":{"first":"Donna","middle":"T","last":"Lowe"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"878911843","state_id":"912718020","student_number":"878911843","id":"530e5967049e75a9262d05b8"},"uri":"/v1.1/students/530e5967049e75a9262d05b8"},{"data":{"created":"2014-02-26T21:15:19.922Z","credentials":{"district_username":"juneg04","district_password":"uXaawoh6ush"},"district":"4fd43cc56d11340000000005","dob":"6/21/1997","ell_status":"N","email":"g_june@example.com","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.163Z","location":{"zip":"10308"},"name":{"first":"June","middle":"M","last":"Gerlach"},"race":"Two
980
- or More Races","school":"530e595026403103360ff9fd","sis_id":"879260504","state_id":"781417188","student_number":"879260504","id":"530e5967049e75a9262d05b9"},"uri":"/v1.1/students/530e5967049e75a9262d05b9"},{"data":{"created":"2014-02-26T21:15:19.932Z","credentials":{"district_username":"roberts59","district_password":"Ue5oot8ie"},"district":"4fd43cc56d11340000000005","dob":"6/9/2007","ell_status":"N","email":"s_robert@example.net","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.165Z","location":{"zip":"10023"},"name":{"first":"Robert","middle":"I","last":"Schroeder"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"879950159","state_id":"614556787","student_number":"879950159","id":"530e5967049e75a9262d05ba"},"uri":"/v1.1/students/530e5967049e75a9262d05ba"},{"data":{"created":"2014-02-26T21:15:19.936Z","credentials":{"district_username":"mattiec90","district_password":"Jaeli0woi"},"district":"4fd43cc56d11340000000005","dob":"4/10/2000","ell_status":"Y","email":"mattie.c@example.net","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.169Z","location":{"zip":"11209"},"name":{"first":"Mattie","middle":"K","last":"Cummings"},"race":"Black
981
- or African American","school":"530e595026403103360ff9ff","sis_id":"880334590","state_id":"715553613","student_number":"880334590","id":"530e5967049e75a9262d05bb"},"uri":"/v1.1/students/530e5967049e75a9262d05bb"},{"data":{"created":"2014-02-26T21:15:19.940Z","credentials":{"district_username":"joanb42","district_password":"ou8jeeN7ea"},"district":"4fd43cc56d11340000000005","dob":"12/23/1995","ell_status":"N","email":"b.joan@example.net","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.174Z","location":{"zip":"11358"},"name":{"first":"Joan","middle":"H","last":"Brown"},"race":"Two
982
- or More Races","school":"530e595026403103360ff9fd","sis_id":"880734942","state_id":"763697752","student_number":"880734942","id":"530e5967049e75a9262d05bc"},"uri":"/v1.1/students/530e5967049e75a9262d05bc"},{"data":{"created":"2014-02-26T21:15:19.956Z","credentials":{"district_username":"kathleens83","district_password":"eilahCa8sai"},"district":"4fd43cc56d11340000000005","dob":"6/5/1995","ell_status":"N","email":"s.kathleen@example.net","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.178Z","location":{"zip":"11206"},"name":{"first":"Kathleen","middle":"B","last":"Schimmel"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"882992383","state_id":"550664984","student_number":"882992383","id":"530e5967049e75a9262d05bd"},"uri":"/v1.1/students/530e5967049e75a9262d05bd"},{"data":{"created":"2014-02-26T21:15:19.961Z","credentials":{"district_username":"helenf42","district_password":"uth7yah6Ei"},"district":"4fd43cc56d11340000000005","dob":"6/22/1998","ell_status":"N","email":"helen.f@example.net","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.181Z","location":{"zip":"11226"},"name":{"first":"Helen","middle":"J","last":"Fisher"},"race":"Black
983
- or African American","school":"530e595026403103360ff9fd","sis_id":"883002242","state_id":"628812789","student_number":"883002242","id":"530e5967049e75a9262d05be"},"uri":"/v1.1/students/530e5967049e75a9262d05be"},{"data":{"created":"2014-02-26T21:15:19.967Z","credentials":{"district_username":"lenoras98","district_password":"Vo2ohghah"},"district":"4fd43cc56d11340000000005","dob":"3/26/1997","ell_status":"Y","email":"lenora_s@example.net","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.185Z","location":{"zip":"11360"},"name":{"first":"Lenora","middle":"D","last":"Schmidt"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"885163998","state_id":"378553479","student_number":"885163998","id":"530e5967049e75a9262d05bf"},"uri":"/v1.1/students/530e5967049e75a9262d05bf"},{"data":{"created":"2014-02-26T21:15:19.972Z","credentials":{"district_username":"cliftonl73","district_password":"eeyohp2Au"},"district":"4fd43cc56d11340000000005","dob":"2/10/1997","ell_status":"N","email":"l_clifton@example.org","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.191Z","location":{"zip":"11432"},"name":{"first":"Clifton","middle":"M","last":"Leannon"},"race":"Two
984
- or More Races","school":"530e595026403103360ff9fd","sis_id":"885576973","state_id":"174058946","student_number":"885576973","id":"530e5967049e75a9262d05c0"},"uri":"/v1.1/students/530e5967049e75a9262d05c0"},{"data":{"created":"2014-02-26T21:15:19.978Z","credentials":{"district_username":"myraj07","district_password":"ughee4Ae"},"district":"4fd43cc56d11340000000005","dob":"3/31/2007","ell_status":"N","email":"j.myra@example.net","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.195Z","location":{"zip":"11434"},"name":{"first":"Myra","middle":"K","last":"Jast"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"885925807","state_id":"133365570","student_number":"885925807","id":"530e5967049e75a9262d05c1"},"uri":"/v1.1/students/530e5967049e75a9262d05c1"},{"data":{"created":"2014-02-26T21:15:19.983Z","credentials":{"district_username":"danb41","district_password":"Waen5Pho"},"district":"4fd43cc56d11340000000005","dob":"8/16/2004","ell_status":"N","email":"b.dan@example.com","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.197Z","location":{"zip":"10028"},"name":{"first":"Dan","middle":"W","last":"Bechtelar"},"race":"American
985
- Indian","school":"530e595026403103360ff9fe","sis_id":"886275741","state_id":"256540133","student_number":"886275741","id":"530e5967049e75a9262d05c2"},"uri":"/v1.1/students/530e5967049e75a9262d05c2"},{"data":{"created":"2014-02-26T21:15:19.994Z","credentials":{"district_username":"charlese68","district_password":"ohnooQuae4o"},"district":"4fd43cc56d11340000000005","dob":"6/16/2005","ell_status":"Y","email":"charles.e@example.org","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.201Z","location":{"zip":"10458"},"name":{"first":"Charles","middle":"A","last":"Erdman"},"race":"Black
986
- or African American","school":"530e595026403103360ff9fe","sis_id":"888800268","state_id":"470215890","student_number":"888800268","id":"530e5967049e75a9262d05c3"},"uri":"/v1.1/students/530e5967049e75a9262d05c3"},{"data":{"created":"2014-02-26T21:15:19.998Z","credentials":{"district_username":"davidk19","district_password":"ieWih2thoow"},"district":"4fd43cc56d11340000000005","dob":"10/9/2001","ell_status":"Y","email":"k_david@example.org","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.206Z","location":{"zip":"10467"},"name":{"first":"David","middle":"H","last":"Kirlin"},"race":"Black
987
- or African American","school":"530e595026403103360ff9ff","sis_id":"889179319","state_id":"273563990","student_number":"889179319","id":"530e5967049e75a9262d05c4"},"uri":"/v1.1/students/530e5967049e75a9262d05c4"},{"data":{"created":"2014-02-26T21:15:20.001Z","credentials":{"district_username":"tonyat12","district_password":"Eitiph5ua"},"district":"4fd43cc56d11340000000005","dob":"12/21/1995","ell_status":"N","email":"tonya.t@example.com","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.210Z","location":{"zip":"11231"},"name":{"first":"Tonya","middle":"J","last":"Torphy"},"race":"Black
988
- or African American","school":"530e595026403103360ff9fd","sis_id":"889621712","state_id":"503787026","student_number":"889621712","id":"530e5968049e75a9262d05c5"},"uri":"/v1.1/students/530e5968049e75a9262d05c5"},{"data":{"created":"2014-02-26T21:15:20.006Z","credentials":{"district_username":"melanieg51","district_password":"Pei0iuPhee"},"district":"4fd43cc56d11340000000005","dob":"2/22/2006","ell_status":"N","email":"melanie.g@example.net","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.213Z","location":{"zip":"10309"},"name":{"first":"Melanie","middle":"J","last":"Goldner"},"race":"Black
989
- or African American","school":"530e595026403103360ff9fe","sis_id":"890268551","state_id":"515098446","student_number":"890268551","id":"530e5968049e75a9262d05c6"},"uri":"/v1.1/students/530e5968049e75a9262d05c6"},{"data":{"created":"2014-02-26T21:15:20.012Z","credentials":{"district_username":"madeleinem01","district_password":"macait8Ahroo"},"district":"4fd43cc56d11340000000005","dob":"5/3/1996","ell_status":"Y","email":"m.madeleine@example.com","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.217Z","location":{"zip":"11421"},"name":{"first":"Madeleine","middle":"E","last":"Mayer"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"892091401","state_id":"955295363","student_number":"892091401","id":"530e5968049e75a9262d05c7"},"uri":"/v1.1/students/530e5968049e75a9262d05c7"},{"data":{"created":"2014-02-26T21:15:20.023Z","credentials":{"district_username":"reneee38","district_password":"miech5eM"},"district":"4fd43cc56d11340000000005","dob":"5/22/1995","ell_status":"Y","email":"e_renee@example.com","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.231Z","location":{"zip":"11106"},"name":{"first":"Renee","middle":"J","last":"Effertz"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"892303938","state_id":"523342829","student_number":"892303938","id":"530e5968049e75a9262d05c8"},"uri":"/v1.1/students/530e5968049e75a9262d05c8"},{"data":{"created":"2014-02-26T21:15:20.027Z","credentials":{"district_username":"davidk92","district_password":"Otoa9eer"},"district":"4fd43cc56d11340000000005","dob":"12/7/2003","ell_status":"Y","email":"k.david@example.com","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.236Z","location":{"zip":"11218"},"name":{"first":"David","middle":"D","last":"Konopelski"},"race":"Black
990
- or African American","school":"530e595026403103360ff9fe","sis_id":"892397092","state_id":"501299080","student_number":"892397092","id":"530e5968049e75a9262d05c9"},"uri":"/v1.1/students/530e5968049e75a9262d05c9"},{"data":{"created":"2014-02-26T21:15:20.034Z","credentials":{"district_username":"randalls25","district_password":"aefioz8Cha"},"district":"4fd43cc56d11340000000005","dob":"8/21/1999","ell_status":"N","email":"s_randall@example.net","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.239Z","location":{"zip":"11356"},"name":{"first":"Randall","middle":"J","last":"Streich"},"race":"Two
991
- or More Races","school":"530e595026403103360ff9ff","sis_id":"893086325","state_id":"742892755","student_number":"893086325","id":"530e5968049e75a9262d05ca"},"uri":"/v1.1/students/530e5968049e75a9262d05ca"},{"data":{"created":"2014-02-26T21:15:20.046Z","credentials":{"district_username":"kimberlyz24","district_password":"fah3eib1Yu"},"district":"4fd43cc56d11340000000005","dob":"2/1/1998","ell_status":"N","email":"kimberly.z@example.org","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.243Z","location":{"zip":"10003"},"name":{"first":"Kimberly","middle":"J","last":"Zieme"},"race":"Black
992
- or African American","school":"530e595026403103360ff9fd","sis_id":"894437224","state_id":"559436436","student_number":"894437224","id":"530e5968049e75a9262d05cb"},"uri":"/v1.1/students/530e5968049e75a9262d05cb"},{"data":{"created":"2014-02-26T21:15:20.051Z","credentials":{"district_username":"aprilb33","district_password":"Ier0ueghoh"},"district":"4fd43cc56d11340000000005","dob":"12/26/2002","ell_status":"N","email":"b_april@example.org","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.248Z","location":{"zip":"10023"},"name":{"first":"April","middle":"M","last":"Beier"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"894754833","state_id":"926286236","student_number":"894754833","id":"530e5968049e75a9262d05cc"},"uri":"/v1.1/students/530e5968049e75a9262d05cc"},{"data":{"created":"2014-02-26T21:15:20.058Z","credentials":{"district_username":"sharonv43","district_password":"uo2eoL3aiZ"},"district":"4fd43cc56d11340000000005","dob":"4/10/2003","ell_status":"N","email":"sharon_v@example.net","frl_status":"Paid","gender":"F","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.252Z","location":{"zip":"11419"},"name":{"first":"Sharon","middle":"R","last":"Volkman"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"894892843","state_id":"493739412","student_number":"894892843","id":"530e5968049e75a9262d05cd"},"uri":"/v1.1/students/530e5968049e75a9262d05cd"},{"data":{"created":"2014-02-26T21:15:20.063Z","credentials":{"district_username":"anthonyf32","district_password":"Aez7doy6"},"district":"4fd43cc56d11340000000005","dob":"6/19/2003","ell_status":"N","email":"anthony_f@example.org","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.255Z","location":{"zip":"10128"},"name":{"first":"Anthony","middle":"A","last":"Feil"},"race":"Two
993
- or More Races","school":"530e595026403103360ff9fe","sis_id":"895534432","state_id":"133902458","student_number":"895534432","id":"530e5968049e75a9262d05ce"},"uri":"/v1.1/students/530e5968049e75a9262d05ce"},{"data":{"created":"2014-02-26T21:15:20.076Z","credentials":{"district_username":"maxd61","district_password":"pai6pheK"},"district":"4fd43cc56d11340000000005","dob":"12/10/2001","ell_status":"N","email":"max_d@example.com","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.259Z","location":{"zip":"10003"},"name":{"first":"Max","middle":"D","last":"Dach"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"896573461","state_id":"841336600","student_number":"896573461","id":"530e5968049e75a9262d05cf"},"uri":"/v1.1/students/530e5968049e75a9262d05cf"},{"data":{"created":"2014-02-26T21:15:20.081Z","credentials":{"district_username":"jakes51","district_password":"phe3Lique6u"},"district":"4fd43cc56d11340000000005","dob":"3/31/2003","ell_status":"Y","email":"s.jake@example.net","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.264Z","location":{"zip":"11694"},"name":{"first":"Jake","middle":"S","last":"Simonis"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"896574751","state_id":"486276418","student_number":"896574751","id":"530e5968049e75a9262d05d0"},"uri":"/v1.1/students/530e5968049e75a9262d05d0"},{"data":{"created":"2014-02-26T21:15:20.085Z","credentials":{"district_username":"arthurg06","district_password":"Oov8xee0sh"},"district":"4fd43cc56d11340000000005","dob":"9/18/1998","ell_status":"Y","email":"g_arthur@example.com","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.268Z","location":{"zip":"11223"},"name":{"first":"Arthur","middle":"S","last":"Goodwin"},"race":"Black
994
- or African American","school":"530e595026403103360ff9fd","sis_id":"896865606","state_id":"504636585","student_number":"896865606","id":"530e5968049e75a9262d05d1"},"uri":"/v1.1/students/530e5968049e75a9262d05d1"},{"data":{"created":"2014-02-26T21:15:20.093Z","credentials":{"district_username":"rogelion00","district_password":"loo1Uu5neeL"},"district":"4fd43cc56d11340000000005","dob":"5/21/1996","ell_status":"N","email":"rogelio.n@example.org","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.270Z","location":{"zip":"11214"},"name":{"first":"Rogelio","middle":"B","last":"Nienow"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"898873700","state_id":"677839854","student_number":"898873700","id":"530e5968049e75a9262d05d2"},"uri":"/v1.1/students/530e5968049e75a9262d05d2"},{"data":{"created":"2014-02-26T21:15:20.098Z","credentials":{"district_username":"charlotted59","district_password":"Ooj7pae6OK"},"district":"4fd43cc56d11340000000005","dob":"5/21/2006","ell_status":"Y","email":"d_charlotte@example.org","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.274Z","location":{"zip":"11215"},"name":{"first":"Charlotte","middle":"J","last":"Dare"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"899701459","state_id":"352999825","student_number":"899701459","id":"530e5968049e75a9262d05d3"},"uri":"/v1.1/students/530e5968049e75a9262d05d3"},{"data":{"created":"2014-02-26T21:15:20.103Z","credentials":{"district_username":"juanitak58","district_password":"aiPoh0Ee"},"district":"4fd43cc56d11340000000005","dob":"9/8/1998","ell_status":"Y","email":"juanita.k@example.com","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.279Z","location":{"zip":"11215"},"name":{"first":"Juanita","middle":"C","last":"Konopelski"},"race":"American
995
- Indian","school":"530e595026403103360ff9fd","sis_id":"900286858","state_id":"951729378","student_number":"900286858","id":"530e5968049e75a9262d05d4"},"uri":"/v1.1/students/530e5968049e75a9262d05d4"},{"data":{"created":"2014-02-26T21:15:20.107Z","credentials":{"district_username":"vickief26","district_password":"nohLae6X"},"district":"4fd43cc56d11340000000005","dob":"3/9/1997","ell_status":"Y","email":"f_vickie@example.org","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.283Z","location":{"zip":"10467"},"name":{"first":"Vickie","middle":"J","last":"Farrell"},"race":"Black
996
- or African American","school":"530e595026403103360ff9fd","sis_id":"901410326","state_id":"517552117","student_number":"901410326","id":"530e5968049e75a9262d05d5"},"uri":"/v1.1/students/530e5968049e75a9262d05d5"},{"data":{"created":"2014-02-26T21:15:20.111Z","credentials":{"district_username":"johnh28","district_password":"Xah8eeg5oh"},"district":"4fd43cc56d11340000000005","dob":"9/29/2001","ell_status":"N","email":"john_h@example.org","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.286Z","location":{"zip":"11207"},"name":{"first":"John","middle":"E","last":"Hessel"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"902312328","state_id":"601841034","student_number":"902312328","id":"530e5968049e75a9262d05d6"},"uri":"/v1.1/students/530e5968049e75a9262d05d6"},{"data":{"created":"2014-02-26T21:15:20.117Z","credentials":{"district_username":"williek49","district_password":"aNangeiGh1"},"district":"4fd43cc56d11340000000005","dob":"1/16/2001","ell_status":"Y","email":"willie.k@example.net","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.289Z","location":{"zip":"11354"},"name":{"first":"Willie","middle":"A","last":"Kunde"},"race":"Black
997
- or African American","school":"530e595026403103360ff9ff","sis_id":"902710449","state_id":"784127383","student_number":"902710449","id":"530e5968049e75a9262d05d7"},"uri":"/v1.1/students/530e5968049e75a9262d05d7"},{"data":{"created":"2014-02-26T21:15:20.122Z","credentials":{"district_username":"michaelr16","district_password":"oomohR9ZoBoh"},"district":"4fd43cc56d11340000000005","dob":"5/22/1999","ell_status":"Y","email":"michael_r@example.net","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.294Z","location":{"zip":"11428"},"name":{"first":"Michael","middle":"R","last":"Reynolds"},"race":"Black
998
- or African American","school":"530e595026403103360ff9ff","sis_id":"904090416","state_id":"717330345","student_number":"904090416","id":"530e5968049e75a9262d05d8"},"uri":"/v1.1/students/530e5968049e75a9262d05d8"},{"data":{"created":"2014-02-26T21:15:20.130Z","credentials":{"district_username":"roberts44","district_password":"eith6Ooz"},"district":"4fd43cc56d11340000000005","dob":"1/26/2001","ell_status":"Y","email":"robert.s@example.net","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.298Z","location":{"zip":"10451"},"name":{"first":"Robert","middle":"S","last":"Smith"},"race":"Two
999
- or More Races","school":"530e595026403103360ff9ff","sis_id":"906936444","state_id":"386813618","student_number":"906936444","id":"530e5968049e75a9262d05d9"},"uri":"/v1.1/students/530e5968049e75a9262d05d9"},{"data":{"created":"2014-02-26T21:15:20.134Z","credentials":{"district_username":"antoniok17","district_password":"ureinga6ahL"},"district":"4fd43cc56d11340000000005","dob":"3/9/1999","ell_status":"Y","email":"antonio.k@example.com","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.301Z","location":{"zip":"10307"},"name":{"first":"Antonio","middle":"M","last":"Kirlin"},"race":"Black
1000
- or African American","school":"530e595026403103360ff9ff","sis_id":"908260317","state_id":"974516665","student_number":"908260317","id":"530e5968049e75a9262d05da"},"uri":"/v1.1/students/530e5968049e75a9262d05da"},{"data":{"created":"2014-02-26T21:15:20.138Z","credentials":{"district_username":"wandas62","district_password":"ga3Beanei"},"district":"4fd43cc56d11340000000005","dob":"1/4/1996","ell_status":"Y","email":"wanda_s@example.com","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.305Z","location":{"zip":"11692"},"name":{"first":"Wanda","middle":"J","last":"Sipes"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"908496562","state_id":"108357029","student_number":"908496562","id":"530e5968049e75a9262d05db"},"uri":"/v1.1/students/530e5968049e75a9262d05db"},{"data":{"created":"2014-02-26T21:15:20.141Z","credentials":{"district_username":"marthar58","district_password":"fie5AiGoo"},"district":"4fd43cc56d11340000000005","dob":"2/22/1995","ell_status":"N","email":"martha_r@example.org","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.310Z","location":{"zip":"10018"},"name":{"first":"Martha","middle":"A","last":"Rice"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"909596858","state_id":"900463057","student_number":"909596858","id":"530e5968049e75a9262d05dc"},"uri":"/v1.1/students/530e5968049e75a9262d05dc"},{"data":{"created":"2014-02-26T21:15:20.147Z","credentials":{"district_username":"wilmam52","district_password":"ohf1EliK"},"district":"4fd43cc56d11340000000005","dob":"1/12/1995","ell_status":"N","email":"m.wilma@example.com","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.314Z","location":{"zip":"11417"},"name":{"first":"Wilma","middle":"K","last":"Miller"},"race":"Black
1001
- or African American","school":"530e595026403103360ff9fd","sis_id":"910169652","state_id":"511639293","student_number":"910169652","id":"530e5968049e75a9262d05dd"},"uri":"/v1.1/students/530e5968049e75a9262d05dd"},{"data":{"created":"2014-02-26T21:15:20.153Z","credentials":{"district_username":"josephg19","district_password":"Te8eemoh1"},"district":"4fd43cc56d11340000000005","dob":"1/5/2003","ell_status":"Y","email":"g_joseph@example.net","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.316Z","location":{"zip":"11359"},"name":{"first":"Joseph","middle":"V","last":"Grady"},"race":"Two
1002
- or More Races","school":"530e595026403103360ff9fe","sis_id":"911844219","state_id":"724610768","student_number":"911844219","id":"530e5968049e75a9262d05de"},"uri":"/v1.1/students/530e5968049e75a9262d05de"},{"data":{"created":"2014-02-26T21:15:20.157Z","credentials":{"district_username":"lydiaf52","district_password":"Pae5Eemaowa"},"district":"4fd43cc56d11340000000005","dob":"10/31/2001","ell_status":"Y","email":"lydia.f@example.net","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.320Z","location":{"zip":"10314"},"name":{"first":"Lydia","middle":"L","last":"Funk"},"race":"Black
1003
- or African American","school":"530e595026403103360ff9ff","sis_id":"912528752","state_id":"851051564","student_number":"912528752","id":"530e5968049e75a9262d05df"},"uri":"/v1.1/students/530e5968049e75a9262d05df"},{"data":{"created":"2014-02-26T21:15:20.161Z","credentials":{"district_username":"vanessas49","district_password":"Ook1oom0"},"district":"4fd43cc56d11340000000005","dob":"9/16/2004","ell_status":"Y","email":"s.vanessa@example.net","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.325Z","location":{"zip":"11203"},"name":{"first":"Vanessa","middle":"C","last":"Schneider"},"race":"Two
1004
- or More Races","school":"530e595026403103360ff9fe","sis_id":"912597949","state_id":"486294596","student_number":"912597949","id":"530e5968049e75a9262d05e0"},"uri":"/v1.1/students/530e5968049e75a9262d05e0"},{"data":{"created":"2014-02-26T21:15:20.164Z","credentials":{"district_username":"ronaldp24","district_password":"Egaengah8Ne"},"district":"4fd43cc56d11340000000005","dob":"3/7/2003","ell_status":"Y","email":"p.ronald@example.org","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.329Z","location":{"zip":"11225"},"name":{"first":"Ronald","middle":"K","last":"Padberg"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"912667824","state_id":"430895037","student_number":"912667824","id":"530e5968049e75a9262d05e1"},"uri":"/v1.1/students/530e5968049e75a9262d05e1"},{"data":{"created":"2014-02-26T21:15:20.168Z","credentials":{"district_username":"marthag20","district_password":"iiban1oB6"},"district":"4fd43cc56d11340000000005","dob":"4/2/1998","ell_status":"N","email":"g_martha@example.org","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.332Z","location":{"zip":"11694"},"name":{"first":"Martha","middle":"T","last":"Greenholt"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"913113920","state_id":"975729843","student_number":"913113920","id":"530e5968049e75a9262d05e2"},"uri":"/v1.1/students/530e5968049e75a9262d05e2"},{"data":{"created":"2014-02-26T21:15:20.173Z","credentials":{"district_username":"johnw53","district_password":"och8Aw0Ie"},"district":"4fd43cc56d11340000000005","dob":"1/31/1998","ell_status":"Y","email":"john_w@example.net","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.336Z","location":{"zip":"10451"},"name":{"first":"John","middle":"K","last":"Watsica"},"race":"Two
1005
- or More Races","school":"530e595026403103360ff9fd","sis_id":"914153353","state_id":"765870576","student_number":"914153353","id":"530e5968049e75a9262d05e3"},"uri":"/v1.1/students/530e5968049e75a9262d05e3"}],"links":[{"rel":"self","uri":"/v1.1/students?starting_after=530e5967049e75a9262d0557"},{"rel":"prev","uri":"/v1.1/students?ending_before=530e5967049e75a9262d0559"},{"rel":"next","uri":"/v1.1/students?starting_after=530e5968049e75a9262d05e3"}]}'
1006
- http_version:
1007
- recorded_at: Sat, 13 Sep 2014 00:03:52 GMT
1008
- - request:
1009
- method: get
1010
- uri: https://api.clever.com//v1.1/students?starting_after=530e5968049e75a9262d05e3
1011
- body:
1012
- encoding: US-ASCII
1013
- string: ''
1014
- headers:
1015
- Accept:
1016
- - ! '*/*; q=0.5, application/xml'
1017
- Accept-Encoding:
1018
- - gzip, deflate
1019
- Authorization:
1020
- - Bearer DEMO_TOKEN
1021
- User-Agent:
1022
- - Ruby
1023
- response:
1024
- status:
1025
- code: 200
1026
- message: OK
1027
- headers:
1028
- Access-Control-Allow-Headers:
1029
- - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
1030
- Access-Control-Allow-Methods:
1031
- - GET,PATCH,POST,DELETE
1032
- Access-Control-Allow-Origin:
1033
- - ! '*'
1034
- Content-Type:
1035
- - application/json; charset=utf-8
1036
- Date:
1037
- - Sat, 13 Sep 2014 00:03:53 GMT
1038
- Etag:
1039
- - ! '"-292018979"'
1040
- Server:
1041
- - nginx/1.4.7
1042
- X-Powered-By:
1043
- - Express
1044
- Content-Length:
1045
- - '66258'
1046
- Connection:
1047
- - keep-alive
1048
- body:
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
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
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
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
1054
- or African American","school":"530e595026403103360ff9fe","sis_id":"916923997","state_id":"555495788","student_number":"916923997","id":"530e5968049e75a9262d05e7"},"uri":"/v1.1/students/530e5968049e75a9262d05e7"},{"data":{"created":"2014-02-26T21:15:20.194Z","credentials":{"district_username":"miltons77","district_password":"Eux4ohGah"},"district":"4fd43cc56d11340000000005","dob":"2/3/1997","ell_status":"N","email":"s_milton@example.com","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.356Z","location":{"zip":"11373"},"name":{"first":"Milton","middle":"F","last":"Streich"},"race":"Black
1055
- or African American","school":"530e595026403103360ff9fd","sis_id":"918952377","state_id":"400741563","student_number":"918952377","id":"530e5968049e75a9262d05e8"},"uri":"/v1.1/students/530e5968049e75a9262d05e8"},{"data":{"created":"2014-02-26T21:15:20.197Z","credentials":{"district_username":"shannonm62","district_password":"Ahnae6eich"},"district":"4fd43cc56d11340000000005","dob":"10/18/1997","ell_status":"N","email":"shannon.m@example.org","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.360Z","location":{"zip":"11416"},"name":{"first":"Shannon","middle":"C","last":"Mante"},"race":"Two
1056
- or More Races","school":"530e595026403103360ff9fd","sis_id":"919039062","state_id":"821050631","student_number":"919039062","id":"530e5968049e75a9262d05e9"},"uri":"/v1.1/students/530e5968049e75a9262d05e9"},{"data":{"created":"2014-02-26T21:15:20.202Z","credentials":{"district_username":"petes87","district_password":"soohepo7eV"},"district":"4fd43cc56d11340000000005","dob":"8/9/1996","ell_status":"Y","email":"pete_s@example.org","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.363Z","location":{"zip":"10301"},"name":{"first":"Pete","middle":"M","last":"Schiller"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"919198587","state_id":"517739231","student_number":"919198587","id":"530e5968049e75a9262d05ea"},"uri":"/v1.1/students/530e5968049e75a9262d05ea"},{"data":{"created":"2014-02-26T21:15:20.208Z","credentials":{"district_username":"harryw21","district_password":"Yi2wairu"},"district":"4fd43cc56d11340000000005","dob":"7/28/1996","ell_status":"N","email":"w.harry@example.com","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.367Z","location":{"zip":"10471"},"name":{"first":"Harry","middle":"D","last":"Will"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"920861821","state_id":"414112872","student_number":"920861821","id":"530e5968049e75a9262d05eb"},"uri":"/v1.1/students/530e5968049e75a9262d05eb"},{"data":{"created":"2014-02-26T21:15:20.212Z","credentials":{"district_username":"corriew78","district_password":"pie3uG2goo"},"district":"4fd43cc56d11340000000005","dob":"3/29/1995","ell_status":"Y","email":"corrie.w@example.org","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.372Z","location":{"zip":"11426"},"name":{"first":"Corrie","middle":"L","last":"Welch"},"race":"Black
1057
- or African American","school":"530e595026403103360ff9fd","sis_id":"924153178","state_id":"782463469","student_number":"924153178","id":"530e5968049e75a9262d05ec"},"uri":"/v1.1/students/530e5968049e75a9262d05ec"},{"data":{"created":"2014-02-26T21:15:20.216Z","credentials":{"district_username":"naomib07","district_password":"Eiche1Eit5"},"district":"4fd43cc56d11340000000005","dob":"2/6/2006","ell_status":"N","email":"b_naomi@example.net","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.375Z","location":{"zip":"11357"},"name":{"first":"Naomi","middle":"W","last":"Bashirian"},"race":"Black
1058
- or African American","school":"530e595026403103360ff9fe","sis_id":"925606407","state_id":"662438527","student_number":"925606407","id":"530e5968049e75a9262d05ed"},"uri":"/v1.1/students/530e5968049e75a9262d05ed"},{"data":{"created":"2014-02-26T21:15:20.220Z","credentials":{"district_username":"tashad55","district_password":"aghah0Zobie"},"district":"4fd43cc56d11340000000005","dob":"12/8/2000","ell_status":"Y","email":"tasha.d@example.org","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.378Z","location":{"zip":"11356"},"name":{"first":"Tasha","middle":"M","last":"Douglas"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"925644555","state_id":"319966269","student_number":"925644555","id":"530e5968049e75a9262d05ee"},"uri":"/v1.1/students/530e5968049e75a9262d05ee"},{"data":{"created":"2014-02-26T21:15:20.224Z","credentials":{"district_username":"harriettb49","district_password":"ose8eiW9g"},"district":"4fd43cc56d11340000000005","dob":"7/10/2003","ell_status":"Y","email":"harriett_b@example.org","frl_status":"Paid","gender":"F","grade":"4","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.382Z","location":{"zip":"11229"},"name":{"first":"Harriett","middle":"A","last":"Block"},"race":"Two
1059
- or More Races","school":"530e595026403103360ff9fe","sis_id":"926389149","state_id":"290536880","student_number":"926389149","id":"530e5968049e75a9262d05ef"},"uri":"/v1.1/students/530e5968049e75a9262d05ef"},{"data":{"created":"2014-02-26T21:15:20.228Z","credentials":{"district_username":"viviank79","district_password":"Quieze4sh"},"district":"4fd43cc56d11340000000005","dob":"6/6/2007","ell_status":"N","email":"vivian_k@example.net","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.387Z","location":{"zip":"10039"},"name":{"first":"Vivian","middle":"K","last":"Kris"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"926639679","state_id":"627579582","student_number":"926639679","id":"530e5968049e75a9262d05f0"},"uri":"/v1.1/students/530e5968049e75a9262d05f0"},{"data":{"created":"2014-02-26T21:15:20.233Z","credentials":{"district_username":"helenb70","district_password":"rae9AhshaK"},"district":"4fd43cc56d11340000000005","dob":"8/28/2005","ell_status":"Y","email":"b.helen@example.org","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.391Z","location":{"zip":"11697"},"name":{"first":"Helen","middle":"J","last":"Bailey"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"927632870","state_id":"395067225","student_number":"927632870","id":"530e5968049e75a9262d05f1"},"uri":"/v1.1/students/530e5968049e75a9262d05f1"},{"data":{"created":"2014-02-26T21:15:20.239Z","credentials":{"district_username":"ethelr09","district_password":"Tae2moh8z"},"district":"4fd43cc56d11340000000005","dob":"7/17/2006","ell_status":"N","email":"ethel_r@example.net","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.393Z","location":{"zip":"10305"},"name":{"first":"Ethel","middle":"A","last":"Rutherford"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"927800009","state_id":"312130647","student_number":"927800009","id":"530e5968049e75a9262d05f2"},"uri":"/v1.1/students/530e5968049e75a9262d05f2"},{"data":{"created":"2014-02-26T21:15:20.244Z","credentials":{"district_username":"josephw94","district_password":"AhXaiBae8"},"district":"4fd43cc56d11340000000005","dob":"11/3/2001","ell_status":"N","email":"joseph.w@example.org","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.397Z","location":{"zip":"10128"},"name":{"first":"Joseph","middle":"W","last":"Wolff"},"race":"Black
1060
- or African American","school":"530e595026403103360ff9ff","sis_id":"928212394","state_id":"235652467","student_number":"928212394","id":"530e5968049e75a9262d05f3"},"uri":"/v1.1/students/530e5968049e75a9262d05f3"},{"data":{"created":"2014-02-26T21:15:20.248Z","credentials":{"district_username":"selmab44","district_password":"ier1oomee8Ei"},"district":"4fd43cc56d11340000000005","dob":"3/10/2003","ell_status":"Y","email":"b_selma@example.org","frl_status":"Paid","gender":"F","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.402Z","location":{"zip":"10031"},"name":{"first":"Selma","middle":"A","last":"Bernier"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"928938044","state_id":"581032068","student_number":"928938044","id":"530e5968049e75a9262d05f4"},"uri":"/v1.1/students/530e5968049e75a9262d05f4"},{"data":{"created":"2014-02-26T21:15:20.252Z","credentials":{"district_username":"christines50","district_password":"iu4Aem3eix"},"district":"4fd43cc56d11340000000005","dob":"7/13/2005","ell_status":"Y","email":"christine.s@example.com","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.406Z","location":{"zip":"10312"},"name":{"first":"Christine","middle":"D","last":"Stamm"},"race":"Black
1061
- or African American","school":"530e595026403103360ff9fe","sis_id":"929026150","state_id":"394648473","student_number":"929026150","id":"530e5968049e75a9262d05f5"},"uri":"/v1.1/students/530e5968049e75a9262d05f5"},{"data":{"created":"2014-02-26T21:15:20.256Z","credentials":{"district_username":"jamesk65","district_password":"eeS7zail9"},"district":"4fd43cc56d11340000000005","dob":"6/17/2006","ell_status":"N","email":"james.k@example.net","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.409Z","location":{"zip":"10018"},"name":{"first":"James","middle":"J","last":"Kihn"},"race":"Black
1062
- or African American","school":"530e595026403103360ff9fe","sis_id":"929915065","state_id":"676956442","student_number":"929915065","id":"530e5968049e75a9262d05f6"},"uri":"/v1.1/students/530e5968049e75a9262d05f6"},{"data":{"created":"2014-02-26T21:15:20.259Z","credentials":{"district_username":"jeffreyz16","district_password":"zee8aishiePh"},"district":"4fd43cc56d11340000000005","dob":"6/8/1997","ell_status":"Y","email":"jeffrey.z@example.com","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.413Z","location":{"zip":"11210"},"name":{"first":"Jeffrey","middle":"J","last":"Zboncak"},"race":"Black
1063
- or African American","school":"530e595026403103360ff9fd","sis_id":"930973116","state_id":"236836422","student_number":"930973116","id":"530e5968049e75a9262d05f7"},"uri":"/v1.1/students/530e5968049e75a9262d05f7"},{"data":{"created":"2014-02-26T21:15:20.263Z","credentials":{"district_username":"lelaw84","district_password":"Veingaiho6"},"district":"4fd43cc56d11340000000005","dob":"11/12/2002","ell_status":"N","email":"lela.w@example.net","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.418Z","location":{"zip":"11433"},"name":{"first":"Lela","middle":"C","last":"Ward"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"931232984","state_id":"927886017","student_number":"931232984","id":"530e5968049e75a9262d05f8"},"uri":"/v1.1/students/530e5968049e75a9262d05f8"},{"data":{"created":"2014-02-26T21:15:20.269Z","credentials":{"district_username":"jamesa08","district_password":"AeH4tieSah"},"district":"4fd43cc56d11340000000005","dob":"11/8/2004","ell_status":"Y","email":"james.a@example.net","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.422Z","location":{"zip":"11004"},"name":{"first":"James","middle":"I","last":"Adams"},"race":"Black
1064
- or African American","school":"530e595026403103360ff9fe","sis_id":"932320008","state_id":"922810066","student_number":"932320008","id":"530e5968049e75a9262d05f9"},"uri":"/v1.1/students/530e5968049e75a9262d05f9"},{"data":{"created":"2014-02-26T21:15:20.275Z","credentials":{"district_username":"mariel69","district_password":"Aith1Ohm"},"district":"4fd43cc56d11340000000005","dob":"6/30/1995","ell_status":"Y","email":"l_marie@example.net","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.432Z","location":{"zip":"11417"},"name":{"first":"Marie","middle":"L","last":"Lind"},"race":"Black
1065
- or African American","school":"530e595026403103360ff9fd","sis_id":"933002269","state_id":"566008731","student_number":"933002269","id":"530e5968049e75a9262d05fa"},"uri":"/v1.1/students/530e5968049e75a9262d05fa"},{"data":{"created":"2014-02-26T21:15:20.279Z","credentials":{"district_username":"kathleenp33","district_password":"Ua2Isahx"},"district":"4fd43cc56d11340000000005","dob":"9/20/1996","ell_status":"Y","email":"p_kathleen@example.net","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.436Z","location":{"zip":"11216"},"name":{"first":"Kathleen","middle":"S","last":"Pfeffer"},"race":"Black
1066
- or African American","school":"530e595026403103360ff9fd","sis_id":"933370133","state_id":"209323329","student_number":"933370133","id":"530e5968049e75a9262d05fb"},"uri":"/v1.1/students/530e5968049e75a9262d05fb"},{"data":{"created":"2014-02-26T21:15:20.283Z","credentials":{"district_username":"jakeb03","district_password":"Een9weZu"},"district":"4fd43cc56d11340000000005","dob":"2/21/1997","ell_status":"N","email":"jake.b@example.com","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.441Z","location":{"zip":"10036"},"name":{"first":"Jake","middle":"M","last":"Bogan"},"race":"Black
1067
- or African American","school":"530e595026403103360ff9fd","sis_id":"934433403","state_id":"677253599","student_number":"934433403","id":"530e5968049e75a9262d05fc"},"uri":"/v1.1/students/530e5968049e75a9262d05fc"},{"data":{"created":"2014-02-26T21:15:20.287Z","credentials":{"district_username":"russells53","district_password":"icuo3ohNg3Oo"},"district":"4fd43cc56d11340000000005","dob":"8/25/2004","ell_status":"Y","email":"s.russell@example.net","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.445Z","location":{"zip":"10030"},"name":{"first":"Russell","middle":"T","last":"Schmidt"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"934929753","state_id":"909488128","student_number":"934929753","id":"530e5968049e75a9262d05fd"},"uri":"/v1.1/students/530e5968049e75a9262d05fd"},{"data":{"created":"2014-02-26T21:15:20.291Z","credentials":{"district_username":"pearlh48","district_password":"maeWeSuo6ah"},"district":"4fd43cc56d11340000000005","dob":"1/29/2004","ell_status":"N","email":"pearl_h@example.com","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.448Z","location":{"zip":"11221"},"name":{"first":"Pearl","middle":"M","last":"Haag"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"935557248","state_id":"278766875","student_number":"935557248","id":"530e5968049e75a9262d05fe"},"uri":"/v1.1/students/530e5968049e75a9262d05fe"},{"data":{"created":"2014-02-26T21:15:20.304Z","credentials":{"district_username":"elainer43","district_password":"aipuch3book1Shee"},"district":"4fd43cc56d11340000000005","dob":"5/16/2001","ell_status":"N","email":"elaine.r@example.org","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.451Z","location":{"zip":"11411"},"name":{"first":"Elaine","middle":"M","last":"Ruecker"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"936523743","state_id":"241300920","student_number":"936523743","id":"530e5968049e75a9262d05ff"},"uri":"/v1.1/students/530e5968049e75a9262d05ff"},{"data":{"created":"2014-02-26T21:15:20.307Z","credentials":{"district_username":"fredericks61","district_password":"Iel1ijook7"},"district":"4fd43cc56d11340000000005","dob":"6/1/1996","ell_status":"N","email":"s.frederick@example.net","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.456Z","location":{"zip":"10005"},"name":{"first":"Frederick","middle":"M","last":"Stoltenberg"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"936642961","state_id":"241788129","student_number":"936642961","id":"530e5968049e75a9262d0600"},"uri":"/v1.1/students/530e5968049e75a9262d0600"},{"data":{"created":"2014-02-26T21:15:20.312Z","credentials":{"district_username":"joeg25","district_password":"nui5eiK7x"},"district":"4fd43cc56d11340000000005","dob":"1/7/2004","ell_status":"N","email":"joe.g@example.net","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.460Z","location":{"zip":"10451"},"name":{"first":"Joe","middle":"M","last":"Gaylord"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"937365225","state_id":"553365178","student_number":"937365225","id":"530e5968049e75a9262d0601"},"uri":"/v1.1/students/530e5968049e75a9262d0601"},{"data":{"created":"2014-02-26T21:15:20.316Z","credentials":{"district_username":"marioc75","district_password":"zu5aiRee0d"},"district":"4fd43cc56d11340000000005","dob":"5/11/1995","ell_status":"N","email":"mario_c@example.com","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.463Z","location":{"zip":"11104"},"name":{"first":"Mario","middle":"P","last":"Collins"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"938160475","state_id":"187218056","student_number":"938160475","id":"530e5968049e75a9262d0602"},"uri":"/v1.1/students/530e5968049e75a9262d0602"},{"data":{"created":"2014-02-26T21:15:20.320Z","credentials":{"district_username":"brendans03","district_password":"LushioPaiv7"},"district":"4fd43cc56d11340000000005","dob":"7/27/1997","ell_status":"Y","email":"brendan_s@example.com","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.467Z","location":{"zip":"10030"},"name":{"first":"Brendan","middle":"M","last":"Swift"},"race":"Two
1068
- or More Races","school":"530e595026403103360ff9fd","sis_id":"939478003","state_id":"802881590","student_number":"939478003","id":"530e5968049e75a9262d0603"},"uri":"/v1.1/students/530e5968049e75a9262d0603"},{"data":{"created":"2014-02-26T21:15:20.325Z","credentials":{"district_username":"sherrym91","district_password":"Beekeo4u"},"district":"4fd43cc56d11340000000005","dob":"10/10/2002","ell_status":"N","email":"sherry_m@example.net","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.472Z","location":{"zip":"11426"},"name":{"first":"Sherry","middle":"J","last":"Mante"},"race":"Black
1069
- or African American","school":"530e595026403103360ff9fe","sis_id":"939888791","state_id":"833928605","student_number":"939888791","id":"530e5968049e75a9262d0604"},"uri":"/v1.1/students/530e5968049e75a9262d0604"},{"data":{"created":"2014-02-26T21:15:20.329Z","credentials":{"district_username":"michaeln50","district_password":"Caebiethoo9"},"district":"4fd43cc56d11340000000005","dob":"10/18/1998","ell_status":"Y","email":"michael_n@example.org","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.476Z","location":{"zip":"10475"},"name":{"first":"Michael","middle":"N","last":"Nader"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"940525350","state_id":"763489611","student_number":"940525350","id":"530e5968049e75a9262d0605"},"uri":"/v1.1/students/530e5968049e75a9262d0605"},{"data":{"created":"2014-02-26T21:15:20.332Z","credentials":{"district_username":"davidw89","district_password":"Hie5rie7a"},"district":"4fd43cc56d11340000000005","dob":"2/14/2003","ell_status":"N","email":"w.david@example.net","frl_status":"Paid","gender":"M","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.478Z","location":{"zip":"10019"},"name":{"first":"David","middle":"T","last":"Walker"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"942401289","state_id":"120321136","student_number":"942401289","id":"530e5968049e75a9262d0606"},"uri":"/v1.1/students/530e5968049e75a9262d0606"},{"data":{"created":"2014-02-26T21:15:20.336Z","credentials":{"district_username":"trevorc67","district_password":"leifoagieV3"},"district":"4fd43cc56d11340000000005","dob":"7/11/1995","ell_status":"N","email":"c.trevor@example.net","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.482Z","location":{"zip":"11106"},"name":{"first":"Trevor","middle":"K","last":"Crooks"},"race":"Black
1070
- or African American","school":"530e595026403103360ff9fd","sis_id":"942972967","state_id":"548321074","student_number":"942972967","id":"530e5968049e75a9262d0607"},"uri":"/v1.1/students/530e5968049e75a9262d0607"},{"data":{"created":"2014-02-26T21:15:20.340Z","credentials":{"district_username":"taram10","district_password":"ooJauqu1eiqu"},"district":"4fd43cc56d11340000000005","dob":"12/2/1997","ell_status":"N","email":"tara_m@example.net","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.487Z","location":{"zip":"10474"},"name":{"first":"Tara","middle":"B","last":"McLaughlin"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"943861610","state_id":"548870489","student_number":"943861610","id":"530e5968049e75a9262d0608"},"uri":"/v1.1/students/530e5968049e75a9262d0608"},{"data":{"created":"2014-02-26T21:15:20.344Z","credentials":{"district_username":"francesw18","district_password":"ievahf0Y"},"district":"4fd43cc56d11340000000005","dob":"4/11/2002","ell_status":"N","email":"w_frances@example.com","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.491Z","location":{"zip":"10033"},"name":{"first":"Frances","middle":"R","last":"Welch"},"race":"Black
1071
- or African American","school":"530e595026403103360ff9fe","sis_id":"945015218","state_id":"791698380","student_number":"945015218","id":"530e5968049e75a9262d0609"},"uri":"/v1.1/students/530e5968049e75a9262d0609"},{"data":{"created":"2014-02-26T21:15:20.349Z","credentials":{"district_username":"scottt64","district_password":"Lah5Mooh4"},"district":"4fd43cc56d11340000000005","dob":"1/15/2002","ell_status":"Y","email":"scott.t@example.com","frl_status":"Paid","gender":"M","grade":"5","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.494Z","location":{"zip":"11237"},"name":{"first":"Scott","middle":"D","last":"Tremblay"},"race":"Black
1072
- or African American","school":"530e595026403103360ff9fe","sis_id":"947089064","state_id":"595957865","student_number":"947089064","id":"530e5968049e75a9262d060a"},"uri":"/v1.1/students/530e5968049e75a9262d060a"},{"data":{"created":"2014-02-26T21:15:20.354Z","credentials":{"district_username":"johnm30","district_password":"Gaihaej3hoh"},"district":"4fd43cc56d11340000000005","dob":"9/30/2001","ell_status":"N","email":"m_john@example.org","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.497Z","location":{"zip":"10010"},"name":{"first":"John","middle":"L","last":"Mayer"},"race":"Black
1073
- or African American","school":"530e595026403103360ff9ff","sis_id":"948211330","state_id":"430850106","student_number":"948211330","id":"530e5968049e75a9262d060b"},"uri":"/v1.1/students/530e5968049e75a9262d060b"},{"data":{"created":"2014-02-26T21:15:20.358Z","credentials":{"district_username":"raymondc22","district_password":"Rai5ohHeu"},"district":"4fd43cc56d11340000000005","dob":"3/25/1995","ell_status":"Y","email":"c.raymond@example.com","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.502Z","location":{"zip":"10017"},"name":{"first":"Raymond","middle":"J","last":"Collins"},"race":"Black
1074
- or African American","school":"530e595026403103360ff9fd","sis_id":"948712622","state_id":"408009123","student_number":"948712622","id":"530e5968049e75a9262d060c"},"uri":"/v1.1/students/530e5968049e75a9262d060c"},{"data":{"created":"2014-02-26T21:15:20.362Z","credentials":{"district_username":"jamesc90","district_password":"ocie4phei3E"},"district":"4fd43cc56d11340000000005","dob":"9/24/2000","ell_status":"Y","email":"james.c@example.com","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.506Z","location":{"zip":"10472"},"name":{"first":"James","middle":"J","last":"Cremin"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"949601390","state_id":"264690820","student_number":"949601390","id":"530e5968049e75a9262d060d"},"uri":"/v1.1/students/530e5968049e75a9262d060d"},{"data":{"created":"2014-02-26T21:15:20.366Z","credentials":{"district_username":"charityl23","district_password":"gaiPaili6ch"},"district":"4fd43cc56d11340000000005","dob":"1/11/1997","ell_status":"Y","email":"l.charity@example.org","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.509Z","location":{"zip":"10457"},"name":{"first":"Charity","middle":"D","last":"Lind"},"race":"Black
1075
- or African American","school":"530e595026403103360ff9fd","sis_id":"951376623","state_id":"811138770","student_number":"951376623","id":"530e5968049e75a9262d060e"},"uri":"/v1.1/students/530e5968049e75a9262d060e"},{"data":{"created":"2014-02-26T21:15:20.370Z","credentials":{"district_username":"kevinb27","district_password":"gooy9nu8Ae"},"district":"4fd43cc56d11340000000005","dob":"10/2/2001","ell_status":"N","email":"kevin.b@example.com","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.513Z","location":{"zip":"11363"},"name":{"first":"Kevin","middle":"E","last":"Brekke"},"race":"Black
1076
- or African American","school":"530e595026403103360ff9ff","sis_id":"951727827","state_id":"299408112","student_number":"951727827","id":"530e5968049e75a9262d060f"},"uri":"/v1.1/students/530e5968049e75a9262d060f"},{"data":{"created":"2014-02-26T21:15:20.374Z","credentials":{"district_username":"jacobc05","district_password":"ooX6iush8Ai"},"district":"4fd43cc56d11340000000005","dob":"8/24/2004","ell_status":"N","email":"jacob_c@example.net","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.518Z","location":{"zip":"11232"},"name":{"first":"Jacob","middle":"J","last":"Champlin"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"951888105","state_id":"732907185","student_number":"951888105","id":"530e5968049e75a9262d0610"},"uri":"/v1.1/students/530e5968049e75a9262d0610"},{"data":{"created":"2014-02-26T21:15:20.379Z","credentials":{"district_username":"sabrinab90","district_password":"gePhoo9we"},"district":"4fd43cc56d11340000000005","dob":"6/19/2003","ell_status":"N","email":"b_sabrina@example.org","frl_status":"Paid","gender":"F","grade":"4","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.522Z","location":{"zip":"11695"},"name":{"first":"Sabrina","middle":"P","last":"Beahan"},"race":"American
1077
- Indian","school":"530e595026403103360ff9fe","sis_id":"954602290","state_id":"103776674","student_number":"954602290","id":"530e5968049e75a9262d0611"},"uri":"/v1.1/students/530e5968049e75a9262d0611"},{"data":{"created":"2014-02-26T21:15:20.382Z","credentials":{"district_username":"celiab33","district_password":"yaiH3eonah"},"district":"4fd43cc56d11340000000005","dob":"7/29/2005","ell_status":"Y","email":"b_celia@example.org","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.524Z","location":{"zip":"11359"},"name":{"first":"Celia","middle":"M","last":"Bruen"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"954608233","state_id":"439166221","student_number":"954608233","id":"530e5968049e75a9262d0612"},"uri":"/v1.1/students/530e5968049e75a9262d0612"},{"data":{"created":"2014-02-26T21:15:20.388Z","credentials":{"district_username":"stephenr85","district_password":"BohraiVae2"},"district":"4fd43cc56d11340000000005","dob":"3/28/1995","ell_status":"Y","email":"r_stephen@example.org","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.528Z","location":{"zip":"11370"},"name":{"first":"Stephen","middle":"J","last":"Rau"},"race":"Black
1078
- or African American","school":"530e595026403103360ff9fd","sis_id":"954752985","state_id":"770757190","student_number":"954752985","id":"530e5968049e75a9262d0613"},"uri":"/v1.1/students/530e5968049e75a9262d0613"},{"data":{"created":"2014-02-26T21:15:20.391Z","credentials":{"district_username":"tommyl70","district_password":"ieR5ait4ACe"},"district":"4fd43cc56d11340000000005","dob":"10/26/1998","ell_status":"N","email":"l_tommy@example.com","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.532Z","location":{"zip":"11224"},"name":{"first":"Tommy","middle":"I","last":"Langworth"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"957214270","state_id":"970294131","student_number":"957214270","id":"530e5968049e75a9262d0614"},"uri":"/v1.1/students/530e5968049e75a9262d0614"},{"data":{"created":"2014-02-26T21:15:20.394Z","credentials":{"district_username":"alexism32","district_password":"iup9uThie"},"district":"4fd43cc56d11340000000005","dob":"4/28/2007","ell_status":"N","email":"m.alexis@example.com","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.537Z","location":{"zip":"10463"},"name":{"first":"Alexis","middle":"E","last":"Miller"},"race":"Two
1079
- or More Races","school":"530e595026403103360ff9fe","sis_id":"957702932","state_id":"575918444","student_number":"957702932","id":"530e5968049e75a9262d0615"},"uri":"/v1.1/students/530e5968049e75a9262d0615"},{"data":{"created":"2014-02-26T21:15:20.399Z","credentials":{"district_username":"amandal89","district_password":"Fai1eYahgh"},"district":"4fd43cc56d11340000000005","dob":"11/20/2005","ell_status":"N","email":"l_amanda@example.net","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.541Z","location":{"zip":"10030"},"name":{"first":"Amanda","middle":"D","last":"Lubowitz"},"race":"Black
1080
- or African American","school":"530e595026403103360ff9fe","sis_id":"957796489","state_id":"800111742","student_number":"957796489","id":"530e5968049e75a9262d0616"},"uri":"/v1.1/students/530e5968049e75a9262d0616"},{"data":{"created":"2014-02-26T21:15:20.403Z","credentials":{"district_username":"brendab99","district_password":"UcooseGah2"},"district":"4fd43cc56d11340000000005","dob":"8/11/1997","ell_status":"N","email":"brenda_b@example.com","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.543Z","location":{"zip":"10007"},"name":{"first":"Brenda","middle":"E","last":"Becker"},"race":"Black
1081
- or African American","school":"530e595026403103360ff9fd","sis_id":"958428899","state_id":"327371655","student_number":"958428899","id":"530e5968049e75a9262d0617"},"uri":"/v1.1/students/530e5968049e75a9262d0617"},{"data":{"created":"2014-02-26T21:15:20.407Z","credentials":{"district_username":"donaldk27","district_password":"lai6Sahkoo9"},"district":"4fd43cc56d11340000000005","dob":"3/11/2006","ell_status":"N","email":"k.donald@example.com","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.547Z","location":{"zip":"11427"},"name":{"first":"Donald","middle":"J","last":"Kovacek"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"958709227","state_id":"331462769","student_number":"958709227","id":"530e5968049e75a9262d0618"},"uri":"/v1.1/students/530e5968049e75a9262d0618"},{"data":{"created":"2014-02-26T21:15:20.412Z","credentials":{"district_username":"lillym09","district_password":"odath4Al"},"district":"4fd43cc56d11340000000005","dob":"8/1/1999","ell_status":"N","email":"lilly.m@example.com","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.552Z","location":{"zip":"10025"},"name":{"first":"Lilly","middle":"O","last":"Mills"},"race":"Black
1082
- or African American","school":"530e595026403103360ff9ff","sis_id":"960399009","state_id":"816013195","student_number":"960399009","id":"530e5968049e75a9262d0619"},"uri":"/v1.1/students/530e5968049e75a9262d0619"},{"data":{"created":"2014-02-26T21:15:20.416Z","credentials":{"district_username":"coreyb45","district_password":"ohM2leithah"},"district":"4fd43cc56d11340000000005","dob":"3/31/1999","ell_status":"Y","email":"b.corey@example.org","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.556Z","location":{"zip":"10314"},"name":{"first":"Corey","middle":"M","last":"Barrows"},"race":"Black
1083
- or African American","school":"530e595026403103360ff9ff","sis_id":"961026345","state_id":"780771301","student_number":"961026345","id":"530e5968049e75a9262d061a"},"uri":"/v1.1/students/530e5968049e75a9262d061a"},{"data":{"created":"2014-02-26T21:15:20.420Z","credentials":{"district_username":"timothyh02","district_password":"iXah0eegho7k"},"district":"4fd43cc56d11340000000005","dob":"5/24/1999","ell_status":"N","email":"timothy.h@example.com","frl_status":"Paid","gender":"M","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.559Z","location":{"zip":"11372"},"name":{"first":"Timothy","middle":"B","last":"Hilll"},"race":"Black
1084
- or African American","school":"530e595026403103360ff9ff","sis_id":"961173202","state_id":"866657270","student_number":"961173202","id":"530e5968049e75a9262d061b"},"uri":"/v1.1/students/530e5968049e75a9262d061b"},{"data":{"created":"2014-02-26T21:15:20.423Z","credentials":{"district_username":"bennyt05","district_password":"Thee4eoch4b"},"district":"4fd43cc56d11340000000005","dob":"1/16/1998","ell_status":"N","email":"benny_t@example.org","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.562Z","location":{"zip":"10465"},"name":{"first":"Benny","middle":"M","last":"Tromp"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"961236705","state_id":"556431264","student_number":"961236705","id":"530e5968049e75a9262d061c"},"uri":"/v1.1/students/530e5968049e75a9262d061c"},{"data":{"created":"2014-02-26T21:15:20.428Z","credentials":{"district_username":"tracyd64","district_password":"ChahcheiW0H"},"district":"4fd43cc56d11340000000005","dob":"5/4/1999","ell_status":"N","email":"d.tracy@example.net","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.567Z","location":{"zip":"11414"},"name":{"first":"Tracy","middle":"W","last":"Davis"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"961691264","state_id":"258137189","student_number":"961691264","id":"530e5968049e75a9262d061d"},"uri":"/v1.1/students/530e5968049e75a9262d061d"},{"data":{"created":"2014-02-26T21:15:20.432Z","credentials":{"district_username":"vanessaf90","district_password":"Ook1oom0"},"district":"4fd43cc56d11340000000005","dob":"7/16/2007","ell_status":"Y","email":"vanessa_f@example.org","frl_status":"Paid","gender":"F","grade":"Kindergarten","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.571Z","location":{"zip":"10020"},"name":{"first":"Vanessa","middle":"C","last":"Farrell"},"race":"Black
1085
- or African American","school":"530e595026403103360ff9fe","sis_id":"963452890","state_id":"304382168","student_number":"963452890","id":"530e5968049e75a9262d061e"},"uri":"/v1.1/students/530e5968049e75a9262d061e"},{"data":{"created":"2014-02-26T21:15:20.436Z","credentials":{"district_username":"ianh59","district_password":"ShoPh9soor"},"district":"4fd43cc56d11340000000005","dob":"7/19/1997","ell_status":"N","email":"ian.h@example.com","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.574Z","location":{"zip":"10039"},"name":{"first":"Ian","middle":"V","last":"Hilll"},"race":"Two
1086
- or More Races","school":"530e595026403103360ff9fd","sis_id":"963516059","state_id":"486760319","student_number":"963516059","id":"530e5968049e75a9262d061f"},"uri":"/v1.1/students/530e5968049e75a9262d061f"},{"data":{"created":"2014-02-26T21:15:20.440Z","credentials":{"district_username":"lorettal22","district_password":"Jaekee6Yah"},"district":"4fd43cc56d11340000000005","dob":"7/29/2000","ell_status":"N","email":"loretta_l@example.com","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.578Z","location":{"zip":"10475"},"name":{"first":"Loretta","middle":"A","last":"Labadie"},"race":"Black
1087
- or African American","school":"530e595026403103360ff9ff","sis_id":"964982622","state_id":"371310198","student_number":"964982622","id":"530e5968049e75a9262d0620"},"uri":"/v1.1/students/530e5968049e75a9262d0620"},{"data":{"created":"2014-02-26T21:15:20.444Z","credentials":{"district_username":"charlesr12","district_password":"leir2eLeet"},"district":"4fd43cc56d11340000000005","dob":"7/9/2000","ell_status":"N","email":"charles.r@example.com","frl_status":"Paid","gender":"M","grade":"7","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.583Z","location":{"zip":"11697"},"name":{"first":"Charles","middle":"M","last":"Rohan"},"race":"Black
1088
- or African American","school":"530e595026403103360ff9ff","sis_id":"966781512","state_id":"710663292","student_number":"966781512","id":"530e5968049e75a9262d0621"},"uri":"/v1.1/students/530e5968049e75a9262d0621"},{"data":{"created":"2014-02-26T21:15:20.448Z","credentials":{"district_username":"wendyk58","district_password":"Oe2OhKuo"},"district":"4fd43cc56d11340000000005","dob":"2/9/1995","ell_status":"N","email":"wendy.k@example.net","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.587Z","location":{"zip":"11420"},"name":{"first":"Wendy","middle":"E","last":"Kunde"},"race":"Two
1089
- or More Races","school":"530e595026403103360ff9fd","sis_id":"966840558","state_id":"822056577","student_number":"966840558","id":"530e5968049e75a9262d0622"},"uri":"/v1.1/students/530e5968049e75a9262d0622"},{"data":{"created":"2014-02-26T21:15:20.452Z","credentials":{"district_username":"jeffreyh29","district_password":"ip1laeN8z"},"district":"4fd43cc56d11340000000005","dob":"12/30/2007","ell_status":"Y","email":"h.jeffrey@example.org","frl_status":"Paid","gender":"M","grade":"Kindergarten","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.589Z","location":{"zip":"11222"},"name":{"first":"Jeffrey","middle":"A","last":"Hettinger"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"967155729","state_id":"438848362","student_number":"967155729","id":"530e5968049e75a9262d0623"},"uri":"/v1.1/students/530e5968049e75a9262d0623"},{"data":{"created":"2014-02-26T21:15:20.455Z","credentials":{"district_username":"sarahb40","district_password":"Litees6konoo"},"district":"4fd43cc56d11340000000005","dob":"12/25/2004","ell_status":"N","email":"sarah.b@example.com","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.593Z","location":{"zip":"11213"},"name":{"first":"Sarah","middle":"D","last":"Baumbach"},"race":"Black
1090
- or African American","school":"530e595026403103360ff9fe","sis_id":"967545840","state_id":"533520733","student_number":"967545840","id":"530e5968049e75a9262d0624"},"uri":"/v1.1/students/530e5968049e75a9262d0624"},{"data":{"created":"2014-02-26T21:15:20.459Z","credentials":{"district_username":"anthonyz23","district_password":"Riegh7ieque"},"district":"4fd43cc56d11340000000005","dob":"5/10/2005","ell_status":"N","email":"anthony.z@example.org","frl_status":"Paid","gender":"M","grade":"2","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.598Z","location":{"zip":"11691"},"name":{"first":"Anthony","middle":"C","last":"Zemlak"},"race":"Black
1091
- or African American","school":"530e595026403103360ff9fe","sis_id":"967879323","state_id":"784592216","student_number":"967879323","id":"530e5968049e75a9262d0625"},"uri":"/v1.1/students/530e5968049e75a9262d0625"},{"data":{"created":"2014-02-26T21:15:20.463Z","credentials":{"district_username":"jonathanm70","district_password":"aingiequ4Oo"},"district":"4fd43cc56d11340000000005","dob":"7/9/2001","ell_status":"N","email":"jonathan_m@example.com","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.602Z","location":{"zip":"11231"},"name":{"first":"Jonathan","middle":"I","last":"Moore"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"968029970","state_id":"221715026","student_number":"968029970","id":"530e5968049e75a9262d0626"},"uri":"/v1.1/students/530e5968049e75a9262d0626"},{"data":{"created":"2014-02-26T21:15:20.467Z","credentials":{"district_username":"susanr40","district_password":"naech1Iejaqu"},"district":"4fd43cc56d11340000000005","dob":"9/12/1996","ell_status":"N","email":"susan_r@example.com","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.604Z","location":{"zip":"10012"},"name":{"first":"Susan","middle":"T","last":"Raynor"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"968105740","state_id":"851197969","student_number":"968105740","id":"530e5968049e75a9262d0627"},"uri":"/v1.1/students/530e5968049e75a9262d0627"},{"data":{"created":"2014-02-26T21:15:20.471Z","credentials":{"district_username":"bettyl87","district_password":"ahd1eiceeV"},"district":"4fd43cc56d11340000000005","dob":"9/14/1999","ell_status":"N","email":"l.betty@example.com","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.608Z","location":{"zip":"11102"},"name":{"first":"Betty","middle":"A","last":"Langworth"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"968350487","state_id":"262337446","student_number":"968350487","id":"530e5968049e75a9262d0628"},"uri":"/v1.1/students/530e5968049e75a9262d0628"},{"data":{"created":"2014-02-26T21:15:20.475Z","credentials":{"district_username":"maryj14","district_password":"uThei0chahj"},"district":"4fd43cc56d11340000000005","dob":"6/2/1999","ell_status":"Y","email":"mary_j@example.com","frl_status":"Paid","gender":"F","grade":"8","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.613Z","location":{"zip":"11104"},"name":{"first":"Mary","middle":"M","last":"Jerde"},"race":"Asian","school":"530e595026403103360ff9ff","sis_id":"968372914","state_id":"485443304","student_number":"968372914","id":"530e5968049e75a9262d0629"},"uri":"/v1.1/students/530e5968049e75a9262d0629"},{"data":{"created":"2014-02-26T21:15:20.480Z","credentials":{"district_username":"steveb85","district_password":"auyik3tiTieL"},"district":"4fd43cc56d11340000000005","dob":"4/22/1995","ell_status":"N","email":"steve_b@example.net","frl_status":"Paid","gender":"M","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.617Z","location":{"zip":"11357"},"name":{"first":"Steve","middle":"G","last":"Becker"},"race":"Two
1092
- or More Races","school":"530e595026403103360ff9fd","sis_id":"968464785","state_id":"768598450","student_number":"968464785","id":"530e5968049e75a9262d062a"},"uri":"/v1.1/students/530e5968049e75a9262d062a"},{"data":{"created":"2014-02-26T21:15:20.484Z","credentials":{"district_username":"ericg62","district_password":"ruz2Feek9ph"},"district":"4fd43cc56d11340000000005","dob":"3/23/1996","ell_status":"N","email":"eric_g@example.com","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.628Z","location":{"zip":"10029"},"name":{"first":"Eric","middle":"E","last":"Gerlach"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"969561262","state_id":"482638186","student_number":"969561262","id":"530e5968049e75a9262d062b"},"uri":"/v1.1/students/530e5968049e75a9262d062b"},{"data":{"created":"2014-02-26T21:15:20.487Z","credentials":{"district_username":"kimberlyo35","district_password":"ua3Weisie"},"district":"4fd43cc56d11340000000005","dob":"4/7/2002","ell_status":"N","email":"o_kimberly@example.org","frl_status":"Paid","gender":"F","grade":"5","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.632Z","location":{"zip":"11212"},"name":{"first":"Kimberly","middle":"R","last":"O''Hara"},"race":"Two
1093
- or More Races","school":"530e595026403103360ff9fe","sis_id":"970636135","state_id":"634863084","student_number":"970636135","id":"530e5968049e75a9262d062c"},"uri":"/v1.1/students/530e5968049e75a9262d062c"},{"data":{"created":"2014-02-26T21:15:20.492Z","credentials":{"district_username":"stephenf75","district_password":"quieph8Wo"},"district":"4fd43cc56d11340000000005","dob":"3/22/2001","ell_status":"Y","email":"f.stephen@example.net","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.637Z","location":{"zip":"10458"},"name":{"first":"Stephen","middle":"B","last":"Fadel"},"race":"Black
1094
- or African American","school":"530e595026403103360ff9ff","sis_id":"970745475","state_id":"504402580","student_number":"970745475","id":"530e5968049e75a9262d062d"},"uri":"/v1.1/students/530e5968049e75a9262d062d"},{"data":{"created":"2014-02-26T21:15:20.495Z","credentials":{"district_username":"genevas65","district_password":"aoya1eeShai"},"district":"4fd43cc56d11340000000005","dob":"7/16/2001","ell_status":"Y","email":"geneva_s@example.com","frl_status":"Paid","gender":"F","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.641Z","location":{"zip":"11694"},"name":{"first":"Geneva","middle":"N","last":"Schulist"},"race":"Caucasian","school":"530e595026403103360ff9ff","sis_id":"970875165","state_id":"887410475","student_number":"970875165","id":"530e5968049e75a9262d062e"},"uri":"/v1.1/students/530e5968049e75a9262d062e"},{"data":{"created":"2014-02-26T21:15:20.500Z","credentials":{"district_username":"ruthr09","district_password":"od7chaiSh"},"district":"4fd43cc56d11340000000005","dob":"10/11/1997","ell_status":"N","email":"ruth.r@example.org","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.643Z","location":{"zip":"10454"},"name":{"first":"Ruth","middle":"R","last":"Rau"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"971603509","state_id":"372171403","student_number":"971603509","id":"530e5968049e75a9262d062f"},"uri":"/v1.1/students/530e5968049e75a9262d062f"},{"data":{"created":"2014-02-26T21:15:20.504Z","credentials":{"district_username":"robertd99","district_password":"ooqu2phee7Ee"},"district":"4fd43cc56d11340000000005","dob":"2/9/2006","ell_status":"Y","email":"d.robert@example.org","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.647Z","location":{"zip":"10456"},"name":{"first":"Robert","middle":"S","last":"Durgan"},"race":"Black
1095
- or African American","school":"530e595026403103360ff9fe","sis_id":"973834199","state_id":"804120821","student_number":"973834199","id":"530e5968049e75a9262d0630"},"uri":"/v1.1/students/530e5968049e75a9262d0630"},{"data":{"created":"2014-02-26T21:15:20.510Z","credentials":{"district_username":"vickiec96","district_password":"Si6soiShe"},"district":"4fd43cc56d11340000000005","dob":"10/12/2006","ell_status":"N","email":"vickie_c@example.org","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.652Z","location":{"zip":"11218"},"name":{"first":"Vickie","middle":"J","last":"Cassin"},"race":"Black
1096
- or African American","school":"530e595026403103360ff9fe","sis_id":"976025096","state_id":"967390758","student_number":"976025096","id":"530e5968049e75a9262d0631"},"uri":"/v1.1/students/530e5968049e75a9262d0631"},{"data":{"created":"2014-02-26T21:15:20.514Z","credentials":{"district_username":"robertb90","district_password":"ahNgae4oquah"},"district":"4fd43cc56d11340000000005","dob":"5/27/1997","ell_status":"N","email":"b.robert@example.net","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.656Z","location":{"zip":"11106"},"name":{"first":"Robert","middle":"A","last":"Berge"},"race":"Black
1097
- or African American","school":"530e595026403103360ff9fd","sis_id":"976092290","state_id":"849712711","student_number":"976092290","id":"530e5968049e75a9262d0632"},"uri":"/v1.1/students/530e5968049e75a9262d0632"},{"data":{"created":"2014-02-26T21:15:20.517Z","credentials":{"district_username":"lucilem96","district_password":"Cee1Dae3b"},"district":"4fd43cc56d11340000000005","dob":"1/16/1996","ell_status":"N","email":"lucile_m@example.net","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.658Z","location":{"zip":"10462"},"name":{"first":"Lucile","middle":"W","last":"Mueller"},"race":"Black
1098
- or African American","school":"530e595026403103360ff9fd","sis_id":"977202996","state_id":"582580767","student_number":"977202996","id":"530e5968049e75a9262d0633"},"uri":"/v1.1/students/530e5968049e75a9262d0633"},{"data":{"created":"2014-02-26T21:15:20.529Z","credentials":{"district_username":"charlenew36","district_password":"kohC0thie"},"district":"4fd43cc56d11340000000005","dob":"6/11/1996","ell_status":"Y","email":"charlene.w@example.org","frl_status":"Paid","gender":"F","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.662Z","location":{"zip":"11434"},"name":{"first":"Charlene","middle":"E","last":"Wyman"},"race":"Black
1099
- or African American","school":"530e595026403103360ff9fd","sis_id":"977671136","state_id":"365093266","student_number":"977671136","id":"530e5968049e75a9262d0634"},"uri":"/v1.1/students/530e5968049e75a9262d0634"},{"data":{"created":"2014-02-26T21:15:20.533Z","credentials":{"district_username":"claral05","district_password":"jetaemoTh1E"},"district":"4fd43cc56d11340000000005","dob":"7/3/2006","ell_status":"N","email":"clara.l@example.net","frl_status":"Paid","gender":"F","grade":"1","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.667Z","location":{"zip":"11222"},"name":{"first":"Clara","middle":"J","last":"Lebsack"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"978147305","state_id":"588268879","student_number":"978147305","id":"530e5968049e75a9262d0635"},"uri":"/v1.1/students/530e5968049e75a9262d0635"},{"data":{"created":"2014-02-26T21:15:20.538Z","credentials":{"district_username":"traceyk93","district_password":"ohliz7Teulo"},"district":"4fd43cc56d11340000000005","dob":"12/27/1996","ell_status":"Y","email":"tracey_k@example.com","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.671Z","location":{"zip":"11695"},"name":{"first":"Tracey","middle":"J","last":"Klein"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"979314193","state_id":"355245005","student_number":"979314193","id":"530e5968049e75a9262d0636"},"uri":"/v1.1/students/530e5968049e75a9262d0636"},{"data":{"created":"2014-02-26T21:15:20.542Z","credentials":{"district_username":"ermac16","district_password":"Oph9theasu"},"district":"4fd43cc56d11340000000005","dob":"5/26/2000","ell_status":"N","email":"c.erma@example.com","frl_status":"Paid","gender":"F","grade":"7","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.674Z","location":{"zip":"10044"},"name":{"first":"Erma","middle":"G","last":"Cole"},"race":"Black
1100
- or African American","school":"530e595026403103360ff9ff","sis_id":"981934216","state_id":"175401945","student_number":"981934216","id":"530e5968049e75a9262d0637"},"uri":"/v1.1/students/530e5968049e75a9262d0637"},{"data":{"created":"2014-02-26T21:15:20.547Z","credentials":{"district_username":"arthurr56","district_password":"uod0aiXue"},"district":"4fd43cc56d11340000000005","dob":"10/27/2002","ell_status":"Y","email":"r_arthur@example.com","frl_status":"Paid","gender":"M","grade":"5","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.678Z","location":{"zip":"11224"},"name":{"first":"Arthur","middle":"J","last":"Rolfson"},"race":"Two
1101
- or More Races","school":"530e595026403103360ff9fe","sis_id":"983721056","state_id":"701629632","student_number":"983721056","id":"530e5968049e75a9262d0638"},"uri":"/v1.1/students/530e5968049e75a9262d0638"},{"data":{"created":"2014-02-26T21:15:20.552Z","credentials":{"district_username":"henryk07","district_password":"ieh5ouvooJ"},"district":"4fd43cc56d11340000000005","dob":"5/10/1996","ell_status":"N","email":"henry_k@example.net","frl_status":"Paid","gender":"M","grade":"11","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.683Z","location":{"zip":"10465"},"name":{"first":"Henry","middle":"S","last":"Kuhlman"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"984084707","state_id":"525722132","student_number":"984084707","id":"530e5968049e75a9262d0639"},"uri":"/v1.1/students/530e5968049e75a9262d0639"},{"data":{"created":"2014-02-26T21:15:20.556Z","credentials":{"district_username":"donnad06","district_password":"ieloi4Iewu"},"district":"4fd43cc56d11340000000005","dob":"6/30/1998","ell_status":"N","email":"d.donna@example.net","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.686Z","location":{"zip":"10305"},"name":{"first":"Donna","middle":"J","last":"Dickinson"},"race":"American
1102
- Indian","school":"530e595026403103360ff9fd","sis_id":"984383406","state_id":"594448599","student_number":"984383406","id":"530e5968049e75a9262d063a"},"uri":"/v1.1/students/530e5968049e75a9262d063a"},{"data":{"created":"2014-02-26T21:15:20.559Z","credentials":{"district_username":"hazelw09","district_password":"aiX9oonaesh"},"district":"4fd43cc56d11340000000005","dob":"12/17/1995","ell_status":"N","email":"w.hazel@example.org","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.689Z","location":{"zip":"10003"},"name":{"first":"Hazel","middle":"T","last":"Wolff"},"race":"Black
1103
- or African American","school":"530e595026403103360ff9fd","sis_id":"984448109","state_id":"815370306","student_number":"984448109","id":"530e5968049e75a9262d063b"},"uri":"/v1.1/students/530e5968049e75a9262d063b"},{"data":{"created":"2014-02-26T21:15:20.563Z","credentials":{"district_username":"caroler53","district_password":"quiJ8doo"},"district":"4fd43cc56d11340000000005","dob":"3/25/1998","ell_status":"N","email":"r_carole@example.com","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.693Z","location":{"zip":"11222"},"name":{"first":"Carole","middle":"J","last":"Roberts"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"984605253","state_id":"797694320","student_number":"984605253","id":"530e5968049e75a9262d063c"},"uri":"/v1.1/students/530e5968049e75a9262d063c"},{"data":{"created":"2014-02-26T21:15:20.570Z","credentials":{"district_username":"rebeccag66","district_password":"DieFeeti5e"},"district":"4fd43cc56d11340000000005","dob":"3/10/2004","ell_status":"N","email":"g_rebecca@example.org","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.699Z","location":{"zip":"11434"},"name":{"first":"Rebecca","middle":"J","last":"Gislason"},"race":"Black
1104
- or African American","school":"530e595026403103360ff9fe","sis_id":"984743266","state_id":"104522216","student_number":"984743266","id":"530e5968049e75a9262d063d"},"uri":"/v1.1/students/530e5968049e75a9262d063d"},{"data":{"created":"2014-02-26T21:15:20.575Z","credentials":{"district_username":"charlesg75","district_password":"Ej0Phee7gee"},"district":"4fd43cc56d11340000000005","dob":"10/19/2004","ell_status":"N","email":"charles_g@example.org","frl_status":"Paid","gender":"M","grade":"3","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.702Z","location":{"zip":"10034"},"name":{"first":"Charles","middle":"E","last":"Green"},"race":"American
1105
- Indian","school":"530e595026403103360ff9fe","sis_id":"984969475","state_id":"748235571","student_number":"984969475","id":"530e5968049e75a9262d063e"},"uri":"/v1.1/students/530e5968049e75a9262d063e"},{"data":{"created":"2014-02-26T21:15:20.579Z","credentials":{"district_username":"antoinettel95","district_password":"ooshahY8"},"district":"4fd43cc56d11340000000005","dob":"6/11/1995","ell_status":"N","email":"l.antoinette@example.net","frl_status":"Paid","gender":"F","grade":"12","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.705Z","location":{"zip":"10309"},"name":{"first":"Antoinette","middle":"W","last":"Lynch"},"race":"Asian","school":"530e595026403103360ff9fd","sis_id":"986188195","state_id":"583594709","student_number":"986188195","id":"530e5968049e75a9262d063f"},"uri":"/v1.1/students/530e5968049e75a9262d063f"},{"data":{"created":"2014-02-26T21:15:20.584Z","credentials":{"district_username":"valerieh19","district_password":"naeThoh0i"},"district":"4fd43cc56d11340000000005","dob":"9/3/1998","ell_status":"Y","email":"valerie.h@example.com","frl_status":"Paid","gender":"F","grade":"9","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.709Z","location":{"zip":"10470"},"name":{"first":"Valerie","middle":"M","last":"Hessel"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"986381919","state_id":"673450372","student_number":"986381919","id":"530e5968049e75a9262d0640"},"uri":"/v1.1/students/530e5968049e75a9262d0640"},{"data":{"created":"2014-02-26T21:15:20.587Z","credentials":{"district_username":"dallase78","district_password":"Fae6pie6Ch"},"district":"4fd43cc56d11340000000005","dob":"5/22/2001","ell_status":"Y","email":"e_dallas@example.org","frl_status":"Paid","gender":"M","grade":"6","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.713Z","location":{"zip":"11375"},"name":{"first":"Dallas","middle":"M","last":"Erdman"},"race":"Black
1106
- or African American","school":"530e595026403103360ff9ff","sis_id":"988363878","state_id":"528811928","student_number":"988363878","id":"530e5968049e75a9262d0641"},"uri":"/v1.1/students/530e5968049e75a9262d0641"},{"data":{"created":"2014-02-26T21:15:20.591Z","credentials":{"district_username":"marjoriew79","district_password":"ien7fam3Ai"},"district":"4fd43cc56d11340000000005","dob":"8/1/2005","ell_status":"N","email":"w_marjorie@example.org","frl_status":"Paid","gender":"F","grade":"2","hispanic_ethnicity":"Y","iep_status":"","last_modified":"2014-06-04T14:10:44.717Z","location":{"zip":"11436"},"name":{"first":"Marjorie","middle":"J","last":"White"},"race":"Black
1107
- or African American","school":"530e595026403103360ff9fe","sis_id":"989693879","state_id":"568608854","student_number":"989693879","id":"530e5968049e75a9262d0642"},"uri":"/v1.1/students/530e5968049e75a9262d0642"},{"data":{"created":"2014-02-26T21:15:20.595Z","credentials":{"district_username":"stevenr21","district_password":"Cae6Zoogh"},"district":"4fd43cc56d11340000000005","dob":"8/19/2006","ell_status":"N","email":"steven.r@example.com","frl_status":"Paid","gender":"M","grade":"1","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.720Z","location":{"zip":"11413"},"name":{"first":"Steven","middle":"A","last":"Robel"},"race":"Caucasian","school":"530e595026403103360ff9fe","sis_id":"992399521","state_id":"486242945","student_number":"992399521","id":"530e5968049e75a9262d0643"},"uri":"/v1.1/students/530e5968049e75a9262d0643"},{"data":{"created":"2014-02-26T21:15:20.601Z","credentials":{"district_username":"beths47","district_password":"keefooY9anoe"},"district":"4fd43cc56d11340000000005","dob":"1/21/2004","ell_status":"Y","email":"s_beth@example.net","frl_status":"Paid","gender":"F","grade":"3","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.724Z","location":{"zip":"11106"},"name":{"first":"Beth","middle":"K","last":"Spencer"},"race":"Asian","school":"530e595026403103360ff9fe","sis_id":"992702547","state_id":"899990945","student_number":"992702547","id":"530e5968049e75a9262d0644"},"uri":"/v1.1/students/530e5968049e75a9262d0644"},{"data":{"created":"2014-02-26T21:15:20.604Z","credentials":{"district_username":"jeffreyt39","district_password":"Daichaep5"},"district":"4fd43cc56d11340000000005","dob":"2/1/1997","ell_status":"N","email":"jeffrey_t@example.com","frl_status":"Paid","gender":"M","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.728Z","location":{"zip":"10032"},"name":{"first":"Jeffrey","middle":"C","last":"Turner"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"993335439","state_id":"985250921","student_number":"993335439","id":"530e5968049e75a9262d0645"},"uri":"/v1.1/students/530e5968049e75a9262d0645"},{"data":{"created":"2014-02-26T21:15:20.608Z","credentials":{"district_username":"samuelc82","district_password":"Ooghee1j"},"district":"4fd43cc56d11340000000005","dob":"11/28/1998","ell_status":"N","email":"c_samuel@example.org","frl_status":"Paid","gender":"M","grade":"9","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.732Z","location":{"zip":"10035"},"name":{"first":"Samuel","middle":"S","last":"Crona"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"993756982","state_id":"496635778","student_number":"993756982","id":"530e5968049e75a9262d0646"},"uri":"/v1.1/students/530e5968049e75a9262d0646"},{"data":{"created":"2014-02-26T21:15:20.611Z","credentials":{"district_username":"marjoriel40","district_password":"iushoo1It"},"district":"4fd43cc56d11340000000005","dob":"11/4/1997","ell_status":"N","email":"marjorie_l@example.org","frl_status":"Paid","gender":"F","grade":"10","hispanic_ethnicity":"N","iep_status":"","last_modified":"2014-06-04T14:10:44.735Z","location":{"zip":"10016"},"name":{"first":"Marjorie","middle":"L","last":"Lesch"},"race":"Caucasian","school":"530e595026403103360ff9fd","sis_id":"994397040","state_id":"828598322","student_number":"994397040","id":"530e5968049e75a9262d0647"},"uri":"/v1.1/students/530e5968049e75a9262d0647"}],"links":[{"rel":"self","uri":"/v1.1/students?starting_after=530e5968049e75a9262d05e3"},{"rel":"prev","uri":"/v1.1/students?ending_before=530e5968049e75a9262d05e4"},{"rel":"next","uri":"/v1.1/students?starting_after=530e5968049e75a9262d0647"}]}'
1108
- http_version:
1109
- recorded_at: Sat, 13 Sep 2014 00:03:53 GMT
1110
- - request:
1111
- method: get
1112
- uri: https://api.clever.com//v1.1/students?starting_after=530e5968049e75a9262d0647
1113
- body:
1114
- encoding: US-ASCII
1115
- string: ''
1116
- headers:
1117
- Accept:
1118
- - ! '*/*; q=0.5, application/xml'
1119
- Accept-Encoding:
1120
- - gzip, deflate
1121
- Authorization:
1122
- - Bearer DEMO_TOKEN
1123
- User-Agent:
1124
- - Ruby
1125
- response:
1126
- status:
1127
- code: 200
1128
- message: OK
1129
- headers:
1130
- Access-Control-Allow-Headers:
1131
- - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
1132
- Access-Control-Allow-Methods:
1133
- - GET,PATCH,POST,DELETE
1134
- Access-Control-Allow-Origin:
1135
- - ! '*'
1136
- Content-Type:
1137
- - application/json; charset=utf-8
1138
- Date:
1139
- - Sat, 13 Sep 2014 00:03:53 GMT
1140
- Etag:
1141
- - ! '"-1554319852"'
1142
- Server:
1143
- - nginx/1.4.7
1144
- X-Powered-By:
1145
- - Express
1146
- Content-Length:
1147
- - '2801'
1148
- Connection:
1149
- - keep-alive
1150
- body:
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
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
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
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"}]}'
1156
- http_version:
1157
- recorded_at: Sat, 13 Sep 2014 00:03:53 GMT
1158
- - request:
1159
- method: get
1160
- uri: https://api.clever.com/v1.1/students?count=true
1161
- body:
1162
- encoding: US-ASCII
1163
- string: ''
1164
- headers:
1165
- Accept:
1166
- - ! '*/*; q=0.5, application/xml'
1167
- Accept-Encoding:
1168
- - gzip, deflate
1169
- Authorization:
1170
- - Bearer DEMO_TOKEN
1171
- User-Agent:
1172
- - Ruby
1173
- response:
1174
- status:
1175
- code: 200
1176
- message: OK
1177
- headers:
1178
- Access-Control-Allow-Headers:
1179
- - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
1180
- Access-Control-Allow-Methods:
1181
- - GET,PATCH,POST,DELETE
1182
- Access-Control-Allow-Origin:
1183
- - "*"
1184
- Content-Type:
1185
- - application/json; charset=utf-8
1186
- Date:
1187
- - Sat, 26 Sep 2015 17:41:04 GMT
1188
- X-Powered-By:
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'
1198
- Content-Length:
1199
- - '73'
1200
- Connection:
1201
- - keep-alive
1202
- body:
1203
- encoding: UTF-8
1204
- string: '{"count":1004,"links":[{"rel":"self","uri":"/v1.1/students?count=true"}]}'
1205
- http_version:
1206
- recorded_at: Sat, 26 Sep 2015 17:41:05 GMT
1207
- recorded_with: VCR 2.9.3