clever-ruby 0.10.2 → 0.11.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0794e391e38f70c865a0375a56640e20d6a65431
4
- data.tar.gz: 458752c73a157af0dd6eef32a90f62ce36f26cf9
3
+ metadata.gz: 1192a44837594d66b71d91017242644f8f598d76
4
+ data.tar.gz: 74c99d3420ec0f3ced951e3a6c4ee1b735c07402
5
5
  SHA512:
6
- metadata.gz: 980348fe36c16eca35cf29d0282dbaa3704ccb95c8c30255b2782d9f21c1c5e884bbc35739c74dbf605bc15f5e585d6316d205ba19bc366eb89f65eb6949010f
7
- data.tar.gz: ea196df77990511ae01e8a08624c0437ac8513265af95af332edefd7a8ed0e40c58a0f4fd169302b38f3b11cd4d6dc8c0a614ff154f2807e4a30221dda482e77
6
+ metadata.gz: e164e1839a1e93f9b903e39d0be38ded72204a5f4426f94924bd3dc866a01f3b9f51a155aa5302a267de25f36074c747d15838c88c8e6e153657ac32631b23f9
7
+ data.tar.gz: 46d864c20f977a97a2bc61941708e0b7188a8e7dbc17a48467513cc2b930b7fa629ef060bfd86d72bc4696364fef19ee72c9a2adc329357a5534ea81ad5d28ca
data/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 0.11.0 (2015-09-28)
2
+
3
+ * Allow timeout and open_timeout configurable
4
+ * Allow nested resources more than 1 level deep
5
+
6
+ ## 0.10.2 (2015-09-28)
7
+
8
+ * Remove duplicated code, test against Ruby 2.0.0
9
+
1
10
  ## 0.10.1 (2014-10-09)
2
11
 
3
12
  * Update activesupport to 4.2.1
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Clever::Ruby
2
2
 
3
- [Build status on Drone](https://ci.ops.clever.com/github.com/Clever/clever-ruby)
3
+ [![Build Status](https://ci.ops.clever.com/api/badge/github.com/Clever/clever-ruby/status.svg?style=flat&branch=master)](https://ci.ops.clever.com/github.com/Clever/clever-ruby)
4
4
 
5
5
  Ruby bindings to the Clever API. [Documentation](http://rubydoc.info/gems/clever-ruby/frames)
6
6
 
data/lib/clever-ruby.rb CHANGED
@@ -62,6 +62,20 @@ module Clever
62
62
  configuration.api_key
63
63
  end
64
64
 
65
+ # Retrieve the configured timeout
66
+ # @api private
67
+ # @return [Fixnum] Configuration timeout
68
+ def timeout
69
+ configuration.timeout
70
+ end
71
+
72
+ # Retrieve the configured open timeout
73
+ # @api private
74
+ # @return [Fixnum] Open timeout
75
+ def open_timeout
76
+ configuration.open_timeout
77
+ end
78
+
65
79
  # Retrieve your stored API token
66
80
  # @api private
67
81
  # @return [String] API token
@@ -152,7 +166,7 @@ module Clever
152
166
  url = api_url url
153
167
  url, payload = create_payload method, url, params
154
168
 
155
- headers[:authorization] = 'Bearer ' + Clever.token if Clever.token
169
+ headers[:Authorization] = 'Bearer ' + Clever.token if Clever.token
156
170
  headers[:user_agent] = 'Clever/RubyBindings/' + Clever::VERSION
157
171
  headers[:x_clever_client_user_agent] = tracking_headers.to_json
158
172
 
@@ -160,9 +174,9 @@ module Clever
160
174
  method: method,
161
175
  url: url,
162
176
  headers: headers,
163
- open_timeout: 30,
177
+ open_timeout: Clever.open_timeout,
164
178
  payload: payload,
165
- timeout: 120
179
+ timeout: Clever.timeout
166
180
  }
167
181
  if Clever.api_key
168
182
  opts[:user] = Clever.api_key
@@ -15,6 +15,10 @@ module Clever
15
15
  @headers = headers
16
16
 
17
17
  response = Clever.request :get, uri, filters, @headers
18
+
19
+ @auth_token = @headers[:Authorization].split[1]
20
+ response[:data].map { |x| x[:data][:auth_token] = @auth_token }
21
+
18
22
  @all = Util.convert_to_clever_object response[:data]
19
23
  @links = {}
20
24
  response[:links].each do |link|
@@ -16,6 +16,16 @@ module Clever
16
16
  # @return [String]
17
17
  attr_accessor :api_base
18
18
 
19
+ # Access API timeout
20
+ # @api private
21
+ # @return [Fixnum]
22
+ attr_accessor :timeout
23
+
24
+ # Access API open timeout
25
+ # @api private
26
+ # @return [Fixnum]
27
+ attr_accessor :open_timeout
28
+
19
29
  # Initialize configuration
20
30
  # @api private
21
31
  # @return [Clever::Configuration]
@@ -23,6 +33,8 @@ module Clever
23
33
  @api_key = nil
24
34
  @token = nil
25
35
  @api_base = 'https://api.clever.com/'
36
+ @timeout = 120
37
+ @open_timeout = 30
26
38
  end
27
39
  end
28
40
  end
@@ -1,5 +1,6 @@
1
1
  # Clever Ruby library
2
2
  module Clever
3
- # Version
4
- VERSION = '0.10.2'
3
+ # Version. Follows semantic versioning, as described here:
4
+ # http://semver.org/
5
+ VERSION = '0.11.0'
5
6
  end
@@ -0,0 +1,197 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.clever.com/v1.1/districts
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, 13 Sep 2014 00:06:24 GMT
33
+ Server:
34
+ - nginx/1.4.7
35
+ X-Powered-By:
36
+ - Express
37
+ Content-Length:
38
+ - '217'
39
+ Connection:
40
+ - keep-alive
41
+ body:
42
+ encoding: US-ASCII
43
+ string: ! '{"data":[{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"uri":"/v1.1/districts/4fd43cc56d11340000000005"}],"paging":{"current":1,"total":1,"count":1},"links":[{"rel":"self","uri":"/v1.1/districts"}]}'
44
+ http_version:
45
+ recorded_at: Sat, 13 Sep 2014 00:06:24 GMT
46
+ - request:
47
+ method: get
48
+ uri: https://api.clever.com/v1.1/districts/4fd43cc56d11340000000005
49
+ body:
50
+ encoding: US-ASCII
51
+ string: ''
52
+ headers:
53
+ Accept:
54
+ - ! '*/*; q=0.5, application/xml'
55
+ Accept-Encoding:
56
+ - gzip, deflate
57
+ Authorization:
58
+ - Bearer DEMO_TOKEN
59
+ User-Agent:
60
+ - Ruby
61
+ response:
62
+ status:
63
+ code: 200
64
+ message: OK
65
+ headers:
66
+ Access-Control-Allow-Headers:
67
+ - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
68
+ Access-Control-Allow-Methods:
69
+ - GET,PATCH,POST,DELETE
70
+ Access-Control-Allow-Origin:
71
+ - ! '*'
72
+ Content-Type:
73
+ - application/json; charset=utf-8
74
+ Date:
75
+ - Sat, 13 Sep 2014 00:06:24 GMT
76
+ Server:
77
+ - nginx/1.4.7
78
+ X-Powered-By:
79
+ - Express
80
+ Content-Length:
81
+ - '518'
82
+ Connection:
83
+ - keep-alive
84
+ body:
85
+ encoding: US-ASCII
86
+ string: ! '{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005"},{"rel":"schools","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"},{"rel":"teachers","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers"},{"rel":"students","uri":"/v1.1/districts/4fd43cc56d11340000000005/students"},{"rel":"sections","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections"},{"rel":"events","uri":"/v1.1/districts/4fd43cc56d11340000000005/events"}]}'
87
+ http_version:
88
+ recorded_at: Sat, 13 Sep 2014 00:06:24 GMT
89
+ - request:
90
+ method: get
91
+ uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/schools
92
+ body:
93
+ encoding: US-ASCII
94
+ string: ''
95
+ headers:
96
+ Accept:
97
+ - ! '*/*; q=0.5, application/xml'
98
+ Accept-Encoding:
99
+ - gzip, deflate
100
+ Authorization:
101
+ - Bearer DEMO_TOKEN
102
+ User-Agent:
103
+ - Ruby
104
+ response:
105
+ status:
106
+ code: 200
107
+ message: OK
108
+ headers:
109
+ Access-Control-Allow-Headers:
110
+ - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
111
+ Access-Control-Allow-Methods:
112
+ - GET,PATCH,POST,DELETE
113
+ Access-Control-Allow-Origin:
114
+ - ! '*'
115
+ Content-Type:
116
+ - application/json; charset=utf-8
117
+ Date:
118
+ - Sat, 13 Sep 2014 00:06:25 GMT
119
+ Etag:
120
+ - ! '"1657555549"'
121
+ Server:
122
+ - nginx/1.4.7
123
+ X-Powered-By:
124
+ - Express
125
+ Content-Length:
126
+ - '1799'
127
+ Connection:
128
+ - keep-alive
129
+ body:
130
+ encoding: US-ASCII
131
+ string: ! '{"data":[{"data":{"created":"2014-02-26T21:14:56.662Z","district":"4fd43cc56d11340000000005","high_grade":"12","last_modified":"2014-02-26T21:14:56.665Z","location":{"address":"350
132
+ 5th Avenue","city":"New York","state":"NY","zip":"10001"},"low_grade":"9","name":"Clever
133
+ High School","nces_id":"360008000000","phone":"(212) 555-1212","principal":{"name":"Theodora
134
+ Khan","email":"tdkhan@mailinator.com"},"school_number":"02M800","sis_id":"02M800","state_id":"712345","id":"530e595026403103360ff9fd"},"uri":"/v1.1/schools/530e595026403103360ff9fd"},{"data":{"created":"2014-02-26T21:14:56.668Z","district":"4fd43cc56d11340000000005","high_grade":"5","last_modified":"2014-02-26T21:14:56.670Z","location":{"address":"110
135
+ Pineapple Street","city":"Brooklyn","state":"NY","zip":"11201"},"low_grade":"Kindergarten","name":"Clever
136
+ Elementary School","nces_id":"360007000000","phone":"(718) 555-4567","principal":{"name":"Cecilia
137
+ Roderick","email":"ceciliar@mailinator.com"},"school_number":"13K123","sis_id":"13K123","state_id":"30890","id":"530e595026403103360ff9fe"},"uri":"/v1.1/schools/530e595026403103360ff9fe"},{"data":{"created":"2014-02-26T21:14:56.671Z","district":"4fd43cc56d11340000000005","high_grade":"8","last_modified":"2014-02-26T21:14:56.673Z","location":{"address":"322
138
+ Old Beach 88th Street","city":"Rockaway Beach","state":"NY","zip":"11693"},"low_grade":"6","name":"Clever
139
+ Middle School","nces_id":"360001000000","phone":"(718) 555-8989","principal":{"name":"Leonard
140
+ Springsteen","email":"lspringsteen@mailinator.com"},"school_number":"27Q321","sis_id":"27Q321","state_id":"412","id":"530e595026403103360ff9ff"},"uri":"/v1.1/schools/530e595026403103360ff9ff"}],"paging":{"current":1,"total":1,"count":3},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"}]}'
141
+ http_version:
142
+ recorded_at: Sat, 13 Sep 2014 00:06:25 GMT
143
+ - request:
144
+ method: get
145
+ uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/schools
146
+ body:
147
+ encoding: US-ASCII
148
+ string: ''
149
+ headers:
150
+ Accept:
151
+ - ! '*/*; q=0.5, application/xml'
152
+ Accept-Encoding:
153
+ - gzip, deflate
154
+ Authorization:
155
+ - Bearer DEMO_TOKEN
156
+ User-Agent:
157
+ - Ruby
158
+ response:
159
+ status:
160
+ code: 200
161
+ message: OK
162
+ headers:
163
+ Access-Control-Allow-Headers:
164
+ - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
165
+ Access-Control-Allow-Methods:
166
+ - GET,PATCH,POST,DELETE
167
+ Access-Control-Allow-Origin:
168
+ - ! '*'
169
+ Content-Type:
170
+ - application/json; charset=utf-8
171
+ Date:
172
+ - Sat, 13 Sep 2014 00:06:25 GMT
173
+ Etag:
174
+ - ! '"1657555549"'
175
+ Server:
176
+ - nginx/1.4.7
177
+ X-Powered-By:
178
+ - Express
179
+ Content-Length:
180
+ - '1799'
181
+ Connection:
182
+ - keep-alive
183
+ body:
184
+ encoding: US-ASCII
185
+ string: ! '{"data":[{"data":{"created":"2014-02-26T21:14:56.662Z","district":"4fd43cc56d11340000000005","high_grade":"12","last_modified":"2014-02-26T21:14:56.665Z","location":{"address":"350
186
+ 5th Avenue","city":"New York","state":"NY","zip":"10001"},"low_grade":"9","name":"Clever
187
+ High School","nces_id":"360008000000","phone":"(212) 555-1212","principal":{"name":"Theodora
188
+ Khan","email":"tdkhan@mailinator.com"},"school_number":"02M800","sis_id":"02M800","state_id":"712345","id":"530e595026403103360ff9fd"},"uri":"/v1.1/schools/530e595026403103360ff9fd"},{"data":{"created":"2014-02-26T21:14:56.668Z","district":"4fd43cc56d11340000000005","high_grade":"5","last_modified":"2014-02-26T21:14:56.670Z","location":{"address":"110
189
+ Pineapple Street","city":"Brooklyn","state":"NY","zip":"11201"},"low_grade":"Kindergarten","name":"Clever
190
+ Elementary School","nces_id":"360007000000","phone":"(718) 555-4567","principal":{"name":"Cecilia
191
+ Roderick","email":"ceciliar@mailinator.com"},"school_number":"13K123","sis_id":"13K123","state_id":"30890","id":"530e595026403103360ff9fe"},"uri":"/v1.1/schools/530e595026403103360ff9fe"},{"data":{"created":"2014-02-26T21:14:56.671Z","district":"4fd43cc56d11340000000005","high_grade":"8","last_modified":"2014-02-26T21:14:56.673Z","location":{"address":"322
192
+ Old Beach 88th Street","city":"Rockaway Beach","state":"NY","zip":"11693"},"low_grade":"6","name":"Clever
193
+ Middle School","nces_id":"360001000000","phone":"(718) 555-8989","principal":{"name":"Leonard
194
+ Springsteen","email":"lspringsteen@mailinator.com"},"school_number":"27Q321","sis_id":"27Q321","state_id":"412","id":"530e595026403103360ff9ff"},"uri":"/v1.1/schools/530e595026403103360ff9ff"}],"paging":{"current":1,"total":1,"count":3},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"}]}'
195
+ http_version:
196
+ recorded_at: Sat, 13 Sep 2014 00:06:25 GMT
197
+ recorded_with: VCR 2.9.3
@@ -24,22 +24,6 @@ describe 'last method', :vcr do
24
24
  end
25
25
  end
26
26
 
27
- describe 'resource' do
28
- it 'has working first and last methods' do
29
- resources.each do |resource|
30
- last = resource.last
31
- last.must_be_instance_of resource
32
-
33
- count = 0
34
- resource.last(20).each do |e|
35
- e.must_be_instance_of resource
36
- e.must_equal last if count == 19
37
- count += 1
38
- end
39
- end
40
- end
41
- end
42
-
43
27
  describe 'nested resource' do
44
28
  it 'has working first and last methods' do
45
29
  resources.each do |resource|
@@ -22,4 +22,9 @@ describe Clever::NestedResource, :vcr do
22
22
  end
23
23
  end
24
24
  end
25
+
26
+ it 'must include auth_token in linked_resources' do
27
+ school = Clever::District.find.first.send(:schools).first
28
+ school.auth_token.must_equal 'DEMO_TOKEN'
29
+ end
25
30
  end
@@ -40,8 +40,8 @@ describe Clever do
40
40
  end
41
41
  it 'adds tracking headers' do
42
42
  headers = @options[:headers]
43
- assert headers.key?(:authorization), 'Did not set authorization header'
44
- assert_match(/Bearer/, headers[:authorization])
43
+ assert headers.key?(:Authorization), 'Did not set authorization header'
44
+ assert_match(/Bearer/, headers[:Authorization])
45
45
  assert headers.key?(:user_agent), 'Did not set User Agent header'
46
46
  assert_match %r{Clever/RubyBindings/}, headers[:user_agent]
47
47
  assert(
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: clever-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.2
4
+ version: 0.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Clever Dev
@@ -266,6 +266,7 @@ files:
266
266
  - test/data/vcr_cassettes/Clever_District_without_global_token/retrieves_a_district_s_sections.yml
267
267
  - test/data/vcr_cassettes/Clever_District_without_global_token/retrieves_a_district_s_students.yml
268
268
  - test/data/vcr_cassettes/Clever_District_without_global_token/retrieves_a_district_s_teachers.yml
269
+ - test/data/vcr_cassettes/Clever_NestedResource/must_include_auth_token_in_linked_resources.yml
269
270
  - test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_district_s_events.yml
270
271
  - test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_district_s_schools.yml
271
272
  - test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_district_s_sections.yml
@@ -294,7 +295,6 @@ files:
294
295
  - test/data/vcr_cassettes/Error_handling/raises_an_InvalidRequestError_when_given_a_bad_created_since.yml
295
296
  - test/data/vcr_cassettes/Optional_attributes/has_the_expected_value_for_an_optional_attribute_that_is_present.yml
296
297
  - test/data/vcr_cassettes/last_method/page/has_working_first_and_last_methods.yml
297
- - test/data/vcr_cassettes/last_method/resource/has_working_first_and_last_methods.yml
298
298
  - test/integration/api_operations/list_test.rb
299
299
  - test/integration/district_test.rb
300
300
  - test/integration/district_with_non_global_token_test.rb
@@ -376,6 +376,7 @@ test_files:
376
376
  - test/data/vcr_cassettes/Clever_District_without_global_token/retrieves_a_district_s_sections.yml
377
377
  - test/data/vcr_cassettes/Clever_District_without_global_token/retrieves_a_district_s_students.yml
378
378
  - test/data/vcr_cassettes/Clever_District_without_global_token/retrieves_a_district_s_teachers.yml
379
+ - test/data/vcr_cassettes/Clever_NestedResource/must_include_auth_token_in_linked_resources.yml
379
380
  - test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_district_s_events.yml
380
381
  - test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_district_s_schools.yml
381
382
  - test/data/vcr_cassettes/Clever_NestedResource/retrieves_a_district_s_sections.yml
@@ -404,7 +405,6 @@ test_files:
404
405
  - test/data/vcr_cassettes/Error_handling/raises_an_InvalidRequestError_when_given_a_bad_created_since.yml
405
406
  - test/data/vcr_cassettes/Optional_attributes/has_the_expected_value_for_an_optional_attribute_that_is_present.yml
406
407
  - test/data/vcr_cassettes/last_method/page/has_working_first_and_last_methods.yml
407
- - test/data/vcr_cassettes/last_method/resource/has_working_first_and_last_methods.yml
408
408
  - test/integration/api_operations/list_test.rb
409
409
  - test/integration/district_test.rb
410
410
  - test/integration/district_with_non_global_token_test.rb
@@ -1,648 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: https://api.clever.com/v1.1/districts?ending_before=last&limit=1
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
- - Fri, 12 Sep 2014 23:25:58 GMT
33
- Server:
34
- - nginx/1.4.7
35
- X-Powered-By:
36
- - Express
37
- Content-Length:
38
- - '287'
39
- Connection:
40
- - keep-alive
41
- body:
42
- encoding: US-ASCII
43
- string: ! '{"data":[{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"uri":"/v1.1/districts/4fd43cc56d11340000000005"}],"links":[{"rel":"self","uri":"/v1.1/districts?ending_before=last&limit=1"},{"rel":"prev","uri":"/v1.1/districts?limit=1&ending_before=4fd43cc56d11340000000005"}]}'
44
- http_version:
45
- recorded_at: Fri, 12 Sep 2014 23:25:58 GMT
46
- - request:
47
- method: get
48
- uri: https://api.clever.com/v1.1/districts?ending_before=last&limit=20
49
- body:
50
- encoding: US-ASCII
51
- string: ''
52
- headers:
53
- Accept:
54
- - ! '*/*; q=0.5, application/xml'
55
- Accept-Encoding:
56
- - gzip, deflate
57
- Authorization:
58
- - Bearer DEMO_TOKEN
59
- User-Agent:
60
- - Ruby
61
- response:
62
- status:
63
- code: 200
64
- message: OK
65
- headers:
66
- Access-Control-Allow-Headers:
67
- - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
68
- Access-Control-Allow-Methods:
69
- - GET,PATCH,POST,DELETE
70
- Access-Control-Allow-Origin:
71
- - ! '*'
72
- Content-Type:
73
- - application/json; charset=utf-8
74
- Date:
75
- - Fri, 12 Sep 2014 23:25:58 GMT
76
- Server:
77
- - nginx/1.4.7
78
- X-Powered-By:
79
- - Express
80
- Content-Length:
81
- - '202'
82
- Connection:
83
- - keep-alive
84
- body:
85
- encoding: US-ASCII
86
- string: ! '{"data":[{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"uri":"/v1.1/districts/4fd43cc56d11340000000005"}],"links":[{"rel":"self","uri":"/v1.1/districts?ending_before=last&limit=20"}]}'
87
- http_version:
88
- recorded_at: Fri, 12 Sep 2014 23:25:58 GMT
89
- - request:
90
- method: get
91
- uri: https://api.clever.com/v1.1/schools?ending_before=last&limit=1
92
- body:
93
- encoding: US-ASCII
94
- string: ''
95
- headers:
96
- Accept:
97
- - ! '*/*; q=0.5, application/xml'
98
- Accept-Encoding:
99
- - gzip, deflate
100
- Authorization:
101
- - Bearer DEMO_TOKEN
102
- User-Agent:
103
- - Ruby
104
- response:
105
- status:
106
- code: 200
107
- message: OK
108
- headers:
109
- Access-Control-Allow-Headers:
110
- - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
111
- Access-Control-Allow-Methods:
112
- - GET,PATCH,POST,DELETE
113
- Access-Control-Allow-Origin:
114
- - ! '*'
115
- Content-Type:
116
- - application/json; charset=utf-8
117
- Date:
118
- - Fri, 12 Sep 2014 23:25:58 GMT
119
- Server:
120
- - nginx/1.4.7
121
- X-Powered-By:
122
- - Express
123
- Content-Length:
124
- - '732'
125
- Connection:
126
- - keep-alive
127
- body:
128
- encoding: US-ASCII
129
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:14:56.671Z","district":"4fd43cc56d11340000000005","high_grade":"8","last_modified":"2014-02-26T21:14:56.673Z","location":{"address":"322
130
- Old Beach 88th Street","city":"Rockaway Beach","state":"NY","zip":"11693"},"low_grade":"6","name":"Clever
131
- Middle School","nces_id":"360001000000","phone":"(718) 555-8989","principal":{"name":"Leonard
132
- Springsteen","email":"lspringsteen@mailinator.com"},"school_number":"27Q321","sis_id":"27Q321","state_id":"412","id":"530e595026403103360ff9ff"},"uri":"/v1.1/schools/530e595026403103360ff9ff"}],"links":[{"rel":"self","uri":"/v1.1/schools?ending_before=last&limit=1"},{"rel":"prev","uri":"/v1.1/schools?limit=1&ending_before=530e595026403103360ff9ff"}]}'
133
- http_version:
134
- recorded_at: Fri, 12 Sep 2014 23:25:58 GMT
135
- - request:
136
- method: get
137
- uri: https://api.clever.com/v1.1/schools?ending_before=last&limit=20
138
- body:
139
- encoding: US-ASCII
140
- string: ''
141
- headers:
142
- Accept:
143
- - ! '*/*; q=0.5, application/xml'
144
- Accept-Encoding:
145
- - gzip, deflate
146
- Authorization:
147
- - Bearer DEMO_TOKEN
148
- User-Agent:
149
- - Ruby
150
- response:
151
- status:
152
- code: 200
153
- message: OK
154
- headers:
155
- Access-Control-Allow-Headers:
156
- - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
157
- Access-Control-Allow-Methods:
158
- - GET,PATCH,POST,DELETE
159
- Access-Control-Allow-Origin:
160
- - ! '*'
161
- Content-Type:
162
- - application/json; charset=utf-8
163
- Date:
164
- - Fri, 12 Sep 2014 23:25:59 GMT
165
- Etag:
166
- - ! '"-1151665054"'
167
- Server:
168
- - nginx/1.4.7
169
- X-Powered-By:
170
- - Express
171
- Content-Length:
172
- - '1749'
173
- Connection:
174
- - keep-alive
175
- body:
176
- encoding: US-ASCII
177
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:14:56.662Z","district":"4fd43cc56d11340000000005","high_grade":"12","last_modified":"2014-02-26T21:14:56.665Z","location":{"address":"350
178
- 5th Avenue","city":"New York","state":"NY","zip":"10001"},"low_grade":"9","name":"Clever
179
- High School","nces_id":"360008000000","phone":"(212) 555-1212","principal":{"name":"Theodora
180
- Khan","email":"tdkhan@mailinator.com"},"school_number":"02M800","sis_id":"02M800","state_id":"712345","id":"530e595026403103360ff9fd"},"uri":"/v1.1/schools/530e595026403103360ff9fd"},{"data":{"created":"2014-02-26T21:14:56.668Z","district":"4fd43cc56d11340000000005","high_grade":"5","last_modified":"2014-02-26T21:14:56.670Z","location":{"address":"110
181
- Pineapple Street","city":"Brooklyn","state":"NY","zip":"11201"},"low_grade":"Kindergarten","name":"Clever
182
- Elementary School","nces_id":"360007000000","phone":"(718) 555-4567","principal":{"name":"Cecilia
183
- Roderick","email":"ceciliar@mailinator.com"},"school_number":"13K123","sis_id":"13K123","state_id":"30890","id":"530e595026403103360ff9fe"},"uri":"/v1.1/schools/530e595026403103360ff9fe"},{"data":{"created":"2014-02-26T21:14:56.671Z","district":"4fd43cc56d11340000000005","high_grade":"8","last_modified":"2014-02-26T21:14:56.673Z","location":{"address":"322
184
- Old Beach 88th Street","city":"Rockaway Beach","state":"NY","zip":"11693"},"low_grade":"6","name":"Clever
185
- Middle School","nces_id":"360001000000","phone":"(718) 555-8989","principal":{"name":"Leonard
186
- Springsteen","email":"lspringsteen@mailinator.com"},"school_number":"27Q321","sis_id":"27Q321","state_id":"412","id":"530e595026403103360ff9ff"},"uri":"/v1.1/schools/530e595026403103360ff9ff"}],"links":[{"rel":"self","uri":"/v1.1/schools?ending_before=last&limit=20"}]}'
187
- http_version:
188
- recorded_at: Fri, 12 Sep 2014 23:25:58 GMT
189
- - request:
190
- method: get
191
- uri: https://api.clever.com/v1.1/students?ending_before=last&limit=1
192
- body:
193
- encoding: US-ASCII
194
- string: ''
195
- headers:
196
- Accept:
197
- - ! '*/*; q=0.5, application/xml'
198
- Accept-Encoding:
199
- - gzip, deflate
200
- Authorization:
201
- - Bearer DEMO_TOKEN
202
- User-Agent:
203
- - Ruby
204
- response:
205
- status:
206
- code: 200
207
- message: OK
208
- headers:
209
- Access-Control-Allow-Headers:
210
- - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
211
- Access-Control-Allow-Methods:
212
- - GET,PATCH,POST,DELETE
213
- Access-Control-Allow-Origin:
214
- - ! '*'
215
- Content-Type:
216
- - application/json; charset=utf-8
217
- Date:
218
- - Fri, 12 Sep 2014 23:25:59 GMT
219
- Server:
220
- - nginx/1.4.7
221
- X-Powered-By:
222
- - Express
223
- Content-Length:
224
- - '823'
225
- Connection:
226
- - keep-alive
227
- body:
228
- encoding: US-ASCII
229
- string: ! '{"data":[{"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
230
- 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?ending_before=last&limit=1"},{"rel":"prev","uri":"/v1.1/students?limit=1&ending_before=530e5968049e75a9262d064b"}]}'
231
- http_version:
232
- recorded_at: Fri, 12 Sep 2014 23:25:59 GMT
233
- - request:
234
- method: get
235
- uri: https://api.clever.com/v1.1/students?ending_before=last&limit=20
236
- body:
237
- encoding: US-ASCII
238
- string: ''
239
- headers:
240
- Accept:
241
- - ! '*/*; q=0.5, application/xml'
242
- Accept-Encoding:
243
- - gzip, deflate
244
- Authorization:
245
- - Bearer DEMO_TOKEN
246
- User-Agent:
247
- - Ruby
248
- response:
249
- status:
250
- code: 200
251
- message: OK
252
- headers:
253
- Access-Control-Allow-Headers:
254
- - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
255
- Access-Control-Allow-Methods:
256
- - GET,PATCH,POST,DELETE
257
- Access-Control-Allow-Origin:
258
- - ! '*'
259
- Content-Type:
260
- - application/json; charset=utf-8
261
- Date:
262
- - Fri, 12 Sep 2014 23:25:59 GMT
263
- Etag:
264
- - ! '"-429370303"'
265
- Server:
266
- - nginx/1.4.7
267
- X-Powered-By:
268
- - Express
269
- Content-Length:
270
- - '13328'
271
- Connection:
272
- - keep-alive
273
- body:
274
- encoding: US-ASCII
275
- string: ! '{"data":[{"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
276
- 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
277
- 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
278
- 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
279
- 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
280
- 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
281
- 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
282
- 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"},{"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
283
- 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
284
- 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
285
- 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?ending_before=last&limit=20"},{"rel":"prev","uri":"/v1.1/students?limit=20&ending_before=530e5968049e75a9262d0638"}]}'
286
- http_version:
287
- recorded_at: Fri, 12 Sep 2014 23:25:59 GMT
288
- - request:
289
- method: get
290
- uri: https://api.clever.com/v1.1/events?ending_before=last&limit=1
291
- body:
292
- encoding: US-ASCII
293
- string: ''
294
- headers:
295
- Accept:
296
- - ! '*/*; q=0.5, application/xml'
297
- Accept-Encoding:
298
- - gzip, deflate
299
- Authorization:
300
- - Bearer DEMO_TOKEN
301
- User-Agent:
302
- - Ruby
303
- response:
304
- status:
305
- code: 200
306
- message: OK
307
- headers:
308
- Access-Control-Allow-Headers:
309
- - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
310
- Access-Control-Allow-Methods:
311
- - GET,PATCH,POST,DELETE
312
- Access-Control-Allow-Origin:
313
- - ! '*'
314
- Content-Type:
315
- - application/json; charset=utf-8
316
- Date:
317
- - Fri, 12 Sep 2014 23:25:59 GMT
318
- Etag:
319
- - ! '"-2038053858"'
320
- Server:
321
- - nginx/1.4.7
322
- X-Powered-By:
323
- - Express
324
- Content-Length:
325
- - '1436'
326
- Connection:
327
- - keep-alive
328
- body:
329
- encoding: US-ASCII
330
- string: ! '{"data":[{"data":{"type":"sections.updated","data":{"object":{"course_name":"Kindergarten
331
- Science, Class 003","course_number":"3","district":"4fd43cc56d11340000000005","grade":"Kindergarten","name":"Kindergarten
332
- Science, Class 003 - 003 - J. Stark","period":"4","school":"530e595026403103360ff9fe","sis_id":"866","subject":"science","teacher":"50c20477987eda0d3d02d310","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"students":["530e5961049e75a9262cffbe","530e5961049e75a9262cffc3","530e5961049e75a9262d0000","530e5961049e75a9262d0036","530e5961049e75a9262d0074","530e5962049e75a9262d00c5","530e5963049e75a9262d01fa","530e5964049e75a9262d027e","530e5964049e75a9262d02a8","530e5964049e75a9262d02ab","530e5964049e75a9262d02f7","530e5965049e75a9262d03b2","530e5965049e75a9262d03bf","530e5966049e75a9262d040a","530e5966049e75a9262d0449","530e5967049e75a9262d051b","530e5967049e75a9262d0565","530e5968049e75a9262d05f0","530e5968049e75a9262d061e","530e5968049e75a9262d0623"],"last_modified":"2014-02-26T21:15:39.195Z","created":"2014-02-26T21:15:39.193Z","id":"530e597b049e75a9262d0c12"},"previous_attributes":{"subject":"homeroom/advisory"}},"created":"2014-08-28T18:01:14.088Z","id":"53ff6e6b322eced00200008e"},"uri":"/v1.1/events/53ff6e6b322eced00200008e"}],"links":[{"rel":"self","uri":"/v1.1/events?ending_before=last&limit=1"},{"rel":"prev","uri":"/v1.1/events?limit=1&ending_before=53ff6e6b322eced00200008e"}]}'
333
- http_version:
334
- recorded_at: Fri, 12 Sep 2014 23:25:59 GMT
335
- - request:
336
- method: get
337
- uri: https://api.clever.com/v1.1/events?ending_before=last&limit=20
338
- body:
339
- encoding: US-ASCII
340
- string: ''
341
- headers:
342
- Accept:
343
- - ! '*/*; q=0.5, application/xml'
344
- Accept-Encoding:
345
- - gzip, deflate
346
- Authorization:
347
- - Bearer DEMO_TOKEN
348
- User-Agent:
349
- - Ruby
350
- response:
351
- status:
352
- code: 200
353
- message: OK
354
- headers:
355
- Access-Control-Allow-Headers:
356
- - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
357
- Access-Control-Allow-Methods:
358
- - GET,PATCH,POST,DELETE
359
- Access-Control-Allow-Origin:
360
- - ! '*'
361
- Content-Type:
362
- - application/json; charset=utf-8
363
- Date:
364
- - Fri, 12 Sep 2014 23:25:59 GMT
365
- Etag:
366
- - ! '"1351465060"'
367
- Server:
368
- - nginx/1.4.7
369
- X-Powered-By:
370
- - Express
371
- Content-Length:
372
- - '9293'
373
- Connection:
374
- - keep-alive
375
- body:
376
- encoding: US-ASCII
377
- string: ! '{"data":[{"data":{"type":"sections.updated","data":{"object":{"course_name":"Grade
378
- 3 Math, Class 301","course_number":"301","district":"4fd43cc56d11340000000005","grade":"3","name":"Grade
379
- 3 Math, Class 301 - 301 - S. Block","period":"5","school":"530e595026403103360ff9fe","sis_id":"771","subject":"math","teacher":"530e5955d50c310f36112c15","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"students":["530e5962049e75a9262d00fb","530e5962049e75a9262d015a","530e5963049e75a9262d0219","530e5964049e75a9262d0270","530e5964049e75a9262d02cf","530e5964049e75a9262d02fc","530e5965049e75a9262d0341","530e5965049e75a9262d0343","530e5965049e75a9262d038d","530e5965049e75a9262d03a7","530e5966049e75a9262d0415","530e5966049e75a9262d0439","530e5966049e75a9262d0458","530e5966049e75a9262d04d5","530e5967049e75a9262d04f4","530e5967049e75a9262d051f"],"last_modified":"2014-07-07T15:46:35.850Z","created":"2014-02-26T21:15:38.738Z","id":"530e597a049e75a9262d0baf"},"previous_attributes":{"students":["530e5960049e75a9262cff56","530e5962049e75a9262d00fb","530e5962049e75a9262d015a","530e5963049e75a9262d0219","530e5964049e75a9262d0270","530e5964049e75a9262d02cf","530e5964049e75a9262d02fc","530e5965049e75a9262d0341","530e5965049e75a9262d0343","530e5965049e75a9262d038d","530e5965049e75a9262d03a7","530e5966049e75a9262d0415","530e5966049e75a9262d0439","530e5966049e75a9262d0458","530e5966049e75a9262d04d5","530e5967049e75a9262d04f4","530e5967049e75a9262d051f"]}},"created":"2014-08-28T18:01:13.872Z","id":"53ff6e6b322eced002000088"},"uri":"/v1.1/events/53ff6e6b322eced002000088"},{"data":{"type":"sections.updated","data":{"object":{"course_name":"Kindergarten
380
- Music, Class 001","course_number":"1","district":"4fd43cc56d11340000000005","grade":"Kindergarten","name":"Kindergarten
381
- Music, Class 001 - 001 - H. Willms","period":"5","school":"530e595026403103360ff9fe","sis_id":"804","subject":"arts
382
- and music","teacher":"530e5955d50c310f36112c02","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"students":["530e5960049e75a9262cff5d","530e5960049e75a9262cff76","530e5961049e75a9262cffdc","530e5962049e75a9262d00d0","530e5962049e75a9262d012d","530e5963049e75a9262d01c1","530e5963049e75a9262d01d3","530e5963049e75a9262d01e1","530e5964049e75a9262d027a","530e5964049e75a9262d02ae","530e5965049e75a9262d03c0","530e5965049e75a9262d03c6","530e5966049e75a9262d042d","530e5966049e75a9262d0451","530e5966049e75a9262d0479","530e5967049e75a9262d057b","530e5967049e75a9262d05a3","530e5967049e75a9262d05ba","530e5967049e75a9262d05c1","530e5968049e75a9262d05e4"],"last_modified":"2014-02-26T21:15:38.877Z","created":"2014-02-26T21:15:38.875Z","id":"530e597a049e75a9262d0bd0"},"previous_attributes":{"subject":"homeroom/advisory"}},"created":"2014-08-28T18:01:14.064Z","id":"53ff6e6b322eced002000089"},"uri":"/v1.1/events/53ff6e6b322eced002000089"},{"data":{"type":"sections.updated","data":{"object":{"course_name":"Kindergarten
383
- Music, Class 002","course_number":"2","district":"4fd43cc56d11340000000005","grade":"Kindergarten","name":"Kindergarten
384
- Music, Class 002 - 002 - S. Schoen","period":"5","school":"530e595026403103360ff9fe","sis_id":"805","subject":"arts
385
- and music","teacher":"530e5955d50c310f36112c03","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"students":["530e5960049e75a9262cff1d","530e5960049e75a9262cff55","530e5961049e75a9262cffc2","530e5961049e75a9262d0012","530e5962049e75a9262d00c0","530e5962049e75a9262d010d","530e5962049e75a9262d0136","530e5962049e75a9262d0151","530e5962049e75a9262d0162","530e5963049e75a9262d01bb","530e5963049e75a9262d01f0","530e5964049e75a9262d0295","530e5964049e75a9262d02a7","530e5964049e75a9262d02d8","530e5965049e75a9262d0320","530e5965049e75a9262d03b9","530e5966049e75a9262d0491","530e5966049e75a9262d04c4","530e5967049e75a9262d0520","530e5968049e75a9262d0615"],"last_modified":"2014-02-26T21:15:38.882Z","created":"2014-02-26T21:15:38.879Z","id":"530e597a049e75a9262d0bd1"},"previous_attributes":{"subject":"homeroom/advisory"}},"created":"2014-08-28T18:01:14.067Z","id":"53ff6e6b322eced00200008a"},"uri":"/v1.1/events/53ff6e6b322eced00200008a"},{"data":{"type":"sections.updated","data":{"object":{"course_name":"Kindergarten
386
- Music, Class 003","course_number":"3","district":"4fd43cc56d11340000000005","grade":"Kindergarten","name":"Kindergarten
387
- Music, Class 003 - 003 - J. Stark","period":"4","school":"530e595026403103360ff9fe","sis_id":"806","subject":"arts
388
- and music","teacher":"50c20477987eda0d3d02d310","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"students":["530e5961049e75a9262cffbe","530e5961049e75a9262cffc3","530e5961049e75a9262d0000","530e5961049e75a9262d0036","530e5961049e75a9262d0074","530e5962049e75a9262d00c5","530e5963049e75a9262d01fa","530e5964049e75a9262d027e","530e5964049e75a9262d02a8","530e5964049e75a9262d02ab","530e5964049e75a9262d02f7","530e5965049e75a9262d03b2","530e5965049e75a9262d03bf","530e5966049e75a9262d040a","530e5966049e75a9262d0449","530e5967049e75a9262d051b","530e5967049e75a9262d0565","530e5968049e75a9262d05f0","530e5968049e75a9262d061e","530e5968049e75a9262d0623"],"last_modified":"2014-02-26T21:15:38.886Z","created":"2014-02-26T21:15:38.883Z","id":"530e597a049e75a9262d0bd2"},"previous_attributes":{"subject":"homeroom/advisory"}},"created":"2014-08-28T18:01:14.070Z","id":"53ff6e6b322eced00200008b"},"uri":"/v1.1/events/53ff6e6b322eced00200008b"},{"data":{"type":"sections.updated","data":{"object":{"course_name":"Kindergarten
389
- Science, Class 001","course_number":"1","district":"4fd43cc56d11340000000005","grade":"Kindergarten","name":"Kindergarten
390
- Science, Class 001 - 001 - H. Willms","period":"2","school":"530e595026403103360ff9fe","sis_id":"864","subject":"science","teacher":"530e5955d50c310f36112c02","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"students":["530e5960049e75a9262cff5d","530e5960049e75a9262cff76","530e5961049e75a9262cffdc","530e5962049e75a9262d00d0","530e5962049e75a9262d012d","530e5963049e75a9262d01c1","530e5963049e75a9262d01d3","530e5963049e75a9262d01e1","530e5964049e75a9262d027a","530e5964049e75a9262d02ae","530e5965049e75a9262d03c0","530e5965049e75a9262d03c6","530e5966049e75a9262d042d","530e5966049e75a9262d0451","530e5966049e75a9262d0479","530e5967049e75a9262d057b","530e5967049e75a9262d05a3","530e5967049e75a9262d05ba","530e5967049e75a9262d05c1","530e5968049e75a9262d05e4"],"last_modified":"2014-02-26T21:15:39.166Z","created":"2014-02-26T21:15:39.165Z","id":"530e597b049e75a9262d0c0a"},"previous_attributes":{"subject":"homeroom/advisory"}},"created":"2014-08-28T18:01:14.073Z","id":"53ff6e6b322eced00200008c"},"uri":"/v1.1/events/53ff6e6b322eced00200008c"},{"data":{"type":"sections.updated","data":{"object":{"course_name":"Kindergarten
391
- Science, Class 002","course_number":"2","district":"4fd43cc56d11340000000005","grade":"Kindergarten","name":"Kindergarten
392
- Science, Class 002 - 002 - S. Schoen","period":"3","school":"530e595026403103360ff9fe","sis_id":"865","subject":"science","teacher":"530e5955d50c310f36112c03","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"students":["530e5960049e75a9262cff1d","530e5960049e75a9262cff55","530e5961049e75a9262cffc2","530e5961049e75a9262d0012","530e5962049e75a9262d00c0","530e5962049e75a9262d010d","530e5962049e75a9262d0136","530e5962049e75a9262d0151","530e5962049e75a9262d0162","530e5963049e75a9262d01bb","530e5963049e75a9262d01f0","530e5964049e75a9262d0295","530e5964049e75a9262d02a7","530e5964049e75a9262d02d8","530e5965049e75a9262d0320","530e5965049e75a9262d03b9","530e5966049e75a9262d0491","530e5966049e75a9262d04c4","530e5967049e75a9262d0520","530e5968049e75a9262d0615"],"last_modified":"2014-02-26T21:15:39.183Z","created":"2014-02-26T21:15:39.181Z","id":"530e597b049e75a9262d0c0e"},"previous_attributes":{"subject":"homeroom/advisory"}},"created":"2014-08-28T18:01:14.076Z","id":"53ff6e6b322eced00200008d"},"uri":"/v1.1/events/53ff6e6b322eced00200008d"},{"data":{"type":"sections.updated","data":{"object":{"course_name":"Kindergarten
393
- Science, Class 003","course_number":"3","district":"4fd43cc56d11340000000005","grade":"Kindergarten","name":"Kindergarten
394
- Science, Class 003 - 003 - J. Stark","period":"4","school":"530e595026403103360ff9fe","sis_id":"866","subject":"science","teacher":"50c20477987eda0d3d02d310","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"students":["530e5961049e75a9262cffbe","530e5961049e75a9262cffc3","530e5961049e75a9262d0000","530e5961049e75a9262d0036","530e5961049e75a9262d0074","530e5962049e75a9262d00c5","530e5963049e75a9262d01fa","530e5964049e75a9262d027e","530e5964049e75a9262d02a8","530e5964049e75a9262d02ab","530e5964049e75a9262d02f7","530e5965049e75a9262d03b2","530e5965049e75a9262d03bf","530e5966049e75a9262d040a","530e5966049e75a9262d0449","530e5967049e75a9262d051b","530e5967049e75a9262d0565","530e5968049e75a9262d05f0","530e5968049e75a9262d061e","530e5968049e75a9262d0623"],"last_modified":"2014-02-26T21:15:39.195Z","created":"2014-02-26T21:15:39.193Z","id":"530e597b049e75a9262d0c12"},"previous_attributes":{"subject":"homeroom/advisory"}},"created":"2014-08-28T18:01:14.088Z","id":"53ff6e6b322eced00200008e"},"uri":"/v1.1/events/53ff6e6b322eced00200008e"}],"links":[{"rel":"self","uri":"/v1.1/events?ending_before=last&limit=20"}]}'
395
- http_version:
396
- recorded_at: Fri, 12 Sep 2014 23:25:59 GMT
397
- - request:
398
- method: get
399
- uri: https://api.clever.com/v1.1/sections?ending_before=last&limit=1
400
- body:
401
- encoding: US-ASCII
402
- string: ''
403
- headers:
404
- Accept:
405
- - ! '*/*; q=0.5, application/xml'
406
- Accept-Encoding:
407
- - gzip, deflate
408
- Authorization:
409
- - Bearer DEMO_TOKEN
410
- User-Agent:
411
- - Ruby
412
- response:
413
- status:
414
- code: 200
415
- message: OK
416
- headers:
417
- Access-Control-Allow-Headers:
418
- - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
419
- Access-Control-Allow-Methods:
420
- - GET,PATCH,POST,DELETE
421
- Access-Control-Allow-Origin:
422
- - ! '*'
423
- Content-Type:
424
- - application/json; charset=utf-8
425
- Date:
426
- - Fri, 12 Sep 2014 23:25:59 GMT
427
- Etag:
428
- - ! '"-2089879538"'
429
- Server:
430
- - nginx/1.4.7
431
- X-Powered-By:
432
- - Express
433
- Content-Length:
434
- - '1263'
435
- Connection:
436
- - keep-alive
437
- body:
438
- encoding: US-ASCII
439
- string: ! '{"data":[{"data":{"course_name":"Introduction to Visual Arts","course_number":"100","created":"2014-02-26T21:15:39.511Z","district":"4fd43cc56d11340000000005","grade":"9","last_modified":"2014-02-26T21:15:39.513Z","name":"Introduction
440
- to Visual Arts - 100 - R. Plant","period":"1","school":"530e595026403103360ff9fd","sis_id":"960","students":["530e5960049e75a9262cff3c","530e5961049e75a9262cffcd","530e5961049e75a9262d001a","530e5961049e75a9262d0038","530e5961049e75a9262d0048","530e5961049e75a9262d0085","530e5962049e75a9262d00e8","530e5962049e75a9262d015f","530e5963049e75a9262d01a2","530e5963049e75a9262d022f","530e5964049e75a9262d02d3","530e5965049e75a9262d0325","530e5966049e75a9262d04d7","530e5967049e75a9262d0501","530e5967049e75a9262d052d","530e5967049e75a9262d05b5","530e5967049e75a9262d05be","530e5968049e75a9262d05cb","530e5968049e75a9262d061c","530e5968049e75a9262d063c"],"subject":"arts
441
- and music","teacher":"530e5955d50c310f36112c09","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e597b049e75a9262d0c6c"},"uri":"/v1.1/sections/530e597b049e75a9262d0c6c"}],"links":[{"rel":"self","uri":"/v1.1/sections?ending_before=last&limit=1"},{"rel":"prev","uri":"/v1.1/sections?limit=1&ending_before=530e597b049e75a9262d0c6c"}]}'
442
- http_version:
443
- recorded_at: Fri, 12 Sep 2014 23:25:59 GMT
444
- - request:
445
- method: get
446
- uri: https://api.clever.com/v1.1/sections?ending_before=last&limit=20
447
- body:
448
- encoding: US-ASCII
449
- string: ''
450
- headers:
451
- Accept:
452
- - ! '*/*; q=0.5, application/xml'
453
- Accept-Encoding:
454
- - gzip, deflate
455
- Authorization:
456
- - Bearer DEMO_TOKEN
457
- User-Agent:
458
- - Ruby
459
- response:
460
- status:
461
- code: 200
462
- message: OK
463
- headers:
464
- Access-Control-Allow-Headers:
465
- - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
466
- Access-Control-Allow-Methods:
467
- - GET,PATCH,POST,DELETE
468
- Access-Control-Allow-Origin:
469
- - ! '*'
470
- Content-Type:
471
- - application/json; charset=utf-8
472
- Date:
473
- - Fri, 12 Sep 2014 23:26:00 GMT
474
- Etag:
475
- - ! '"-130458986"'
476
- Server:
477
- - nginx/1.4.7
478
- X-Powered-By:
479
- - Express
480
- Content-Length:
481
- - '25932'
482
- Connection:
483
- - keep-alive
484
- body:
485
- encoding: US-ASCII
486
- string: ! '{"data":[{"data":{"course_name":"Spanish II","course_number":"201","created":"2014-02-26T21:15:39.456Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:39.458Z","name":"Spanish
487
- II - 201 - L. Jacobs (Section 1)","period":"2","school":"530e595026403103360ff9fd","sis_id":"941","students":["530e5960049e75a9262cff1f","530e5960049e75a9262cff26","530e5960049e75a9262cff39","530e5960049e75a9262cff4f","530e5960049e75a9262cff95","530e5961049e75a9262cffd9","530e5961049e75a9262d0080","530e5961049e75a9262d0082","530e5962049e75a9262d00b6","530e5962049e75a9262d0102","530e5962049e75a9262d0172","530e5963049e75a9262d017f","530e5963049e75a9262d0180","530e5963049e75a9262d0202","530e5963049e75a9262d0253","530e5964049e75a9262d0288","530e5964049e75a9262d0300","530e5965049e75a9262d039e","530e5965049e75a9262d03b6","530e5965049e75a9262d03d2","530e5965049e75a9262d03e8","530e5966049e75a9262d03f5","530e5966049e75a9262d041c","530e5966049e75a9262d0455","530e5966049e75a9262d0475","530e5966049e75a9262d04ba","530e5967049e75a9262d0544","530e5967049e75a9262d0586","530e5967049e75a9262d058b","530e5967049e75a9262d0596","530e5967049e75a9262d05bf","530e5968049e75a9262d061f","530e5968049e75a9262d0645"],"subject":"language","teacher":"530e5955d50c310f36112bf8","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e597b049e75a9262d0c59"},"uri":"/v1.1/sections/530e597b049e75a9262d0c59"},{"data":{"course_name":"Spanish
488
- II","course_number":"201","created":"2014-02-26T21:15:39.459Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:39.461Z","name":"Spanish
489
- II - 201 - R. Gadsby (Section 2)","period":"2","school":"530e595026403103360ff9fd","sis_id":"942","students":["530e5960049e75a9262cff21","530e5960049e75a9262cff48","530e5960049e75a9262cff96","530e5961049e75a9262d0027","530e5961049e75a9262d0035","530e5961049e75a9262d0037","530e5961049e75a9262d004e","530e5961049e75a9262d0056","530e5962049e75a9262d00b5","530e5962049e75a9262d00e3","530e5962049e75a9262d012e","530e5962049e75a9262d0133","530e5962049e75a9262d0156","530e5962049e75a9262d0158","530e5963049e75a9262d01cc","530e5963049e75a9262d01f5","530e5964049e75a9262d0282","530e5964049e75a9262d0297","530e5965049e75a9262d031b","530e5965049e75a9262d0383","530e5965049e75a9262d03cf","530e5966049e75a9262d040c","530e5966049e75a9262d0418","530e5966049e75a9262d043c","530e5967049e75a9262d0594","530e5967049e75a9262d059e","530e5967049e75a9262d05b3","530e5967049e75a9262d05b9","530e5968049e75a9262d05e9","530e5968049e75a9262d05f7","530e5968049e75a9262d0617","530e5968049e75a9262d062f","530e5968049e75a9262d0632","530e5968049e75a9262d0647"],"subject":"language","teacher":"530e5955d50c310f36112c08","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e597b049e75a9262d0c5a"},"uri":"/v1.1/sections/530e597b049e75a9262d0c5a"},{"data":{"course_name":"Spanish
490
- III","course_number":"301","created":"2014-02-26T21:15:39.462Z","district":"4fd43cc56d11340000000005","grade":"11","last_modified":"2014-02-26T21:15:39.464Z","name":"Spanish
491
- III - 301 - R. Gadsby (Section 1)","period":"2","school":"530e595026403103360ff9fd","sis_id":"943","students":["530e5960049e75a9262cff4c","530e5960049e75a9262cff4d","530e5960049e75a9262cff53","530e5960049e75a9262cff7c","530e5960049e75a9262cff98","530e5961049e75a9262d0005","530e5961049e75a9262d002e","530e5961049e75a9262d004c","530e5961049e75a9262d005a","530e5961049e75a9262d005c","530e5962049e75a9262d009e","530e5962049e75a9262d00b3","530e5962049e75a9262d00bd","530e5962049e75a9262d00c3","530e5962049e75a9262d0106","530e5963049e75a9262d019d","530e5963049e75a9262d01a1","530e5963049e75a9262d01a7","530e5963049e75a9262d01cd","530e5963049e75a9262d01d5","530e5963049e75a9262d01fc","530e5963049e75a9262d01fd","530e5963049e75a9262d024c","530e5963049e75a9262d0255","530e5963049e75a9262d0259","530e5964049e75a9262d029d","530e5964049e75a9262d02a5","530e5964049e75a9262d02d6","530e5964049e75a9262d02eb","530e5964049e75a9262d02fd","530e5966049e75a9262d03f2","530e5966049e75a9262d0420","530e5966049e75a9262d044e","530e5966049e75a9262d046b","530e5966049e75a9262d04a3","530e5966049e75a9262d04b9","530e5967049e75a9262d04ff","530e5967049e75a9262d0534","530e5967049e75a9262d053b","530e5967049e75a9262d0564","530e5967049e75a9262d0568","530e5967049e75a9262d058d","530e5968049e75a9262d05c7","530e5968049e75a9262d05d2","530e5968049e75a9262d05ea","530e5968049e75a9262d0633","530e5968049e75a9262d0634","530e5968049e75a9262d0636","530e5968049e75a9262d0649","530e5968049e75a9262d064b"],"subject":"language","teacher":"530e5955d50c310f36112c08","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e597b049e75a9262d0c5b"},"uri":"/v1.1/sections/530e597b049e75a9262d0c5b"},{"data":{"course_name":"AP
492
- Spanish Language","course_number":"404","created":"2014-02-26T21:15:39.466Z","district":"4fd43cc56d11340000000005","grade":"12","last_modified":"2014-02-26T21:15:39.468Z","name":"AP
493
- Spanish Language - 404 - R. Gadsby (Section 1)","period":"2","school":"530e595026403103360ff9fd","sis_id":"944","students":["530e5960049e75a9262cff52","530e5960049e75a9262cff67","530e5961049e75a9262cffaf","530e5961049e75a9262cffb7","530e5961049e75a9262d000d","530e5961049e75a9262d002b","530e5961049e75a9262d005b","530e5961049e75a9262d007b","530e5962049e75a9262d00be","530e5962049e75a9262d00f7","530e5962049e75a9262d015b","530e5962049e75a9262d015d","530e5963049e75a9262d018b","530e5963049e75a9262d01c7","530e5963049e75a9262d01d6","530e5963049e75a9262d0209","530e5963049e75a9262d020b","530e5963049e75a9262d020d","530e5963049e75a9262d021d","530e5963049e75a9262d0227","530e5963049e75a9262d0232","530e5963049e75a9262d024a","530e5964049e75a9262d0278","530e5964049e75a9262d02b5","530e5964049e75a9262d02bc","530e5964049e75a9262d02ee","530e5964049e75a9262d02fe","530e5965049e75a9262d0326","530e5965049e75a9262d0332","530e5965049e75a9262d0349","530e5965049e75a9262d0372","530e5965049e75a9262d03cd","530e5966049e75a9262d03f3","530e5966049e75a9262d043e","530e5966049e75a9262d0447","530e5966049e75a9262d0467","530e5966049e75a9262d048b","530e5966049e75a9262d0492","530e5967049e75a9262d04f7","530e5967049e75a9262d04fe","530e5967049e75a9262d058e","530e5967049e75a9262d0591","530e5967049e75a9262d05bc","530e5967049e75a9262d05bd","530e5968049e75a9262d05c8","530e5968049e75a9262d05dc","530e5968049e75a9262d05dd","530e5968049e75a9262d05ec","530e5968049e75a9262d0602","530e5968049e75a9262d0613"],"subject":"language","teacher":"530e5955d50c310f36112c08","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e597b049e75a9262d0c5c"},"uri":"/v1.1/sections/530e597b049e75a9262d0c5c"},{"data":{"course_name":"Spanish,
494
- Class 801","course_number":"801","created":"2014-02-26T21:15:39.469Z","district":"4fd43cc56d11340000000005","grade":"8","last_modified":"2014-02-26T21:15:39.471Z","name":"Spanish,
495
- Class 801 - 801 - J. Doyle (Section 1)","period":"2","school":"530e595026403103360ff9ff","sis_id":"945","students":["530e5960049e75a9262cff37","530e5960049e75a9262cff9e","530e5961049e75a9262d0011","530e5961049e75a9262d0014","530e5962049e75a9262d00e1","530e5963049e75a9262d01d0","530e5963049e75a9262d01d1","530e5963049e75a9262d01dc","530e5963049e75a9262d01ed","530e5963049e75a9262d0228","530e5963049e75a9262d0252","530e5964049e75a9262d0291","530e5964049e75a9262d02cb","530e5965049e75a9262d031d","530e5965049e75a9262d0395","530e5965049e75a9262d03b8","530e5965049e75a9262d03c2","530e5966049e75a9262d03f0","530e5967049e75a9262d0515","530e5967049e75a9262d053e","530e5967049e75a9262d0542","530e5967049e75a9262d0592","530e5967049e75a9262d05af","530e5968049e75a9262d05d8","530e5968049e75a9262d05da","530e5968049e75a9262d061d"],"subject":"language","teacher":"530e5955d50c310f36112bea","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e597b049e75a9262d0c5d"},"uri":"/v1.1/sections/530e597b049e75a9262d0c5d"},{"data":{"course_name":"Spanish,
496
- Class 802","course_number":"802","created":"2014-02-26T21:15:39.472Z","district":"4fd43cc56d11340000000005","grade":"8","last_modified":"2014-02-26T21:15:39.473Z","name":"Spanish,
497
- Class 802 - 802 - J. Doyle (Section 2)","period":"2","school":"530e595026403103360ff9ff","sis_id":"946","students":["530e5960049e75a9262cff29","530e5960049e75a9262cff57","530e5961049e75a9262cffe5","530e5961049e75a9262d0013","530e5962049e75a9262d009c","530e5962049e75a9262d00b4","530e5962049e75a9262d00c7","530e5962049e75a9262d00df","530e5962049e75a9262d00e5","530e5963049e75a9262d0199","530e5963049e75a9262d01ca","530e5963049e75a9262d01d8","530e5965049e75a9262d0321","530e5965049e75a9262d0393","530e5965049e75a9262d0396","530e5965049e75a9262d039c","530e5965049e75a9262d03a0","530e5965049e75a9262d03bb","530e5965049e75a9262d03d5","530e5966049e75a9262d0414","530e5966049e75a9262d041b","530e5966049e75a9262d0421","530e5966049e75a9262d0446","530e5967049e75a9262d04e6","530e5967049e75a9262d0543","530e5968049e75a9262d0628"],"subject":"language","teacher":"530e5955d50c310f36112bea","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e597b049e75a9262d0c5e"},"uri":"/v1.1/sections/530e597b049e75a9262d0c5e"},{"data":{"course_name":"Spanish,
498
- Class 803","course_number":"803","created":"2014-02-26T21:15:39.474Z","district":"4fd43cc56d11340000000005","grade":"8","last_modified":"2014-02-26T21:15:39.476Z","name":"Spanish,
499
- Class 803 - 803 - J. Doyle (Section 3)","period":"2","school":"530e595026403103360ff9ff","sis_id":"947","students":["530e5960049e75a9262cff22","530e5960049e75a9262cff79","530e5960049e75a9262cffa4","530e5961049e75a9262cffec","530e5961049e75a9262d000e","530e5961049e75a9262d0061","530e5962049e75a9262d0108","530e5962049e75a9262d013d","530e5962049e75a9262d0148","530e5962049e75a9262d017c","530e5963049e75a9262d01e4","530e5963049e75a9262d022e","530e5963049e75a9262d0254","530e5965049e75a9262d0356","530e5965049e75a9262d038c","530e5965049e75a9262d03ea","530e5966049e75a9262d0429","530e5966049e75a9262d049c","530e5967049e75a9262d04eb","530e5967049e75a9262d04fd","530e5967049e75a9262d05aa","530e5968049e75a9262d05ca","530e5968049e75a9262d0619","530e5968049e75a9262d061a","530e5968049e75a9262d061b","530e5968049e75a9262d0629"],"subject":"language","teacher":"530e5955d50c310f36112bea","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e597b049e75a9262d0c5f"},"uri":"/v1.1/sections/530e597b049e75a9262d0c5f"},{"data":{"course_name":"Spanish
500
- I","course_number":"101","created":"2014-02-26T21:15:39.477Z","district":"4fd43cc56d11340000000005","grade":"9","last_modified":"2014-02-26T21:15:39.479Z","name":"Spanish
501
- I - 101 - L. Jacobs (Section 1)","period":"9","school":"530e595026403103360ff9fd","sis_id":"948","students":["530e5960049e75a9262cff27","530e5960049e75a9262cffa2","530e5961049e75a9262cffcd","530e5961049e75a9262d000c","530e5961049e75a9262d001a","530e5961049e75a9262d0038","530e5961049e75a9262d007d","530e5961049e75a9262d0085","530e5961049e75a9262d0089","530e5961049e75a9262d008f","530e5962049e75a9262d00ba","530e5962049e75a9262d0127","530e5962049e75a9262d0174","530e5963049e75a9262d01db","530e5963049e75a9262d0203","530e5963049e75a9262d021b","530e5963049e75a9262d0229","530e5964049e75a9262d0299","530e5964049e75a9262d02b6","530e5964049e75a9262d02f3","530e5964049e75a9262d0309","530e5965049e75a9262d038e","530e5965049e75a9262d03a2","530e5966049e75a9262d03fc","530e5966049e75a9262d042b","530e5966049e75a9262d045e","530e5966049e75a9262d04a5","530e5966049e75a9262d04d7","530e5967049e75a9262d0501","530e5967049e75a9262d05a8","530e5968049e75a9262d05e2","530e5968049e75a9262d0614","530e5968049e75a9262d0640"],"subject":"language","teacher":"530e5955d50c310f36112bf8","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e597b049e75a9262d0c60"},"uri":"/v1.1/sections/530e597b049e75a9262d0c60"},{"data":{"course_name":"Spanish
502
- I","course_number":"101","created":"2014-02-26T21:15:39.480Z","district":"4fd43cc56d11340000000005","grade":"9","last_modified":"2014-02-26T21:15:39.482Z","name":"Spanish
503
- I - 101 - L. Jacobs (Section 2)","period":"9","school":"530e595026403103360ff9fd","sis_id":"949","students":["530e5960049e75a9262cff23","530e5960049e75a9262cff3c","530e5960049e75a9262cff42","530e5960049e75a9262cff58","530e5961049e75a9262d0034","530e5961049e75a9262d0048","530e5961049e75a9262d0062","530e5961049e75a9262d007f","530e5962049e75a9262d00b7","530e5962049e75a9262d00e6","530e5962049e75a9262d0110","530e5963049e75a9262d0181","530e5963049e75a9262d019f","530e5963049e75a9262d01a2","530e5963049e75a9262d01a4","530e5963049e75a9262d01f8","530e5963049e75a9262d01fb","530e5963049e75a9262d020f","530e5963049e75a9262d0231","530e5964049e75a9262d0276","530e5964049e75a9262d02d3","530e5965049e75a9262d033c","530e5965049e75a9262d034f","530e5965049e75a9262d03a5","530e5966049e75a9262d046a","530e5966049e75a9262d048d","530e5966049e75a9262d0495","530e5967049e75a9262d052d","530e5967049e75a9262d0575","530e5967049e75a9262d05b7","530e5967049e75a9262d05be","530e5968049e75a9262d05d4","530e5968049e75a9262d063a","530e5968049e75a9262d0646"],"subject":"language","teacher":"530e5955d50c310f36112bf8","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e597b049e75a9262d0c61"},"uri":"/v1.1/sections/530e597b049e75a9262d0c61"},{"data":{"course_name":"Introduction
504
- to Programming","course_number":"200","created":"2014-02-26T21:15:39.483Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:39.485Z","name":"Introduction
505
- to Programming - 200 - L. Corwin","period":"2","school":"530e595026403103360ff9fd","sis_id":"950","students":["530e5960049e75a9262cff21","530e5960049e75a9262cff26","530e5960049e75a9262cff4f","530e5961049e75a9262cffd9","530e5961049e75a9262cffe0","530e5961049e75a9262d004e","530e5962049e75a9262d00b6","530e5963049e75a9262d017f","530e5963049e75a9262d01cc","530e5963049e75a9262d01ff","530e5963049e75a9262d0207","530e5964049e75a9262d0297","530e5965049e75a9262d031b","530e5965049e75a9262d039e","530e5966049e75a9262d041c","530e5966049e75a9262d04ba","530e5967049e75a9262d0503","530e5967049e75a9262d058b","530e5967049e75a9262d0596","530e5968049e75a9262d061f"],"subject":"technology
506
- and engineering","teacher":"530e5955d50c310f36112c01","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e597b049e75a9262d0c62"},"uri":"/v1.1/sections/530e597b049e75a9262d0c62"},{"data":{"course_name":"Intermediate
507
- Programming","course_number":"300","created":"2014-02-26T21:15:39.486Z","district":"4fd43cc56d11340000000005","grade":"11","last_modified":"2014-02-26T21:15:39.488Z","name":"Intermediate
508
- Programming - 300 - L. Corwin","period":"7","school":"530e595026403103360ff9fd","sis_id":"951","students":["530e5960049e75a9262cff4d","530e5960049e75a9262cff53","530e5961049e75a9262cffe1","530e5962049e75a9262d010e","530e5963049e75a9262d019d","530e5963049e75a9262d01cd","530e5963049e75a9262d01d2","530e5963049e75a9262d01fc","530e5963049e75a9262d01fd","530e5963049e75a9262d0255","530e5964049e75a9262d0281","530e5964049e75a9262d02eb","530e5965049e75a9262d037c","530e5966049e75a9262d0408","530e5966049e75a9262d0420","530e5966049e75a9262d048f","530e5967049e75a9262d05a1","530e5968049e75a9262d05eb","530e5968049e75a9262d0633","530e5968049e75a9262d0639"],"subject":"technology
509
- and engineering","teacher":"530e5955d50c310f36112c01","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e597b049e75a9262d0c63"},"uri":"/v1.1/sections/530e597b049e75a9262d0c63"},{"data":{"course_name":"AP
510
- Computer Science","course_number":"401","created":"2014-02-26T21:15:39.489Z","district":"4fd43cc56d11340000000005","grade":"12","last_modified":"2014-02-26T21:15:39.490Z","name":"AP
511
- Computer Science - 401 - L. Corwin (Section 1)","period":"8","school":"530e595026403103360ff9fd","sis_id":"952","students":["530e5960049e75a9262cff90","530e5961049e75a9262cffef","530e5961049e75a9262cfff7","530e5961049e75a9262d0039","530e5963049e75a9262d0227","530e5964049e75a9262d02ac","530e5964049e75a9262d02b5","530e5964049e75a9262d02fe","530e5965049e75a9262d0332","530e5965049e75a9262d0363","530e5965049e75a9262d03e5","530e5966049e75a9262d03f6","530e5966049e75a9262d0467","530e5967049e75a9262d04f7","530e5967049e75a9262d0584","530e5967049e75a9262d05bc","530e5967049e75a9262d05bd","530e5968049e75a9262d05dc","530e5968049e75a9262d05ec","530e5968049e75a9262d063b"],"subject":"technology
512
- and engineering","teacher":"530e5955d50c310f36112c01","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e597b049e75a9262d0c64"},"uri":"/v1.1/sections/530e597b049e75a9262d0c64"},{"data":{"course_name":"Technology,
513
- Class 601","course_number":"601","created":"2014-02-26T21:15:39.491Z","district":"4fd43cc56d11340000000005","grade":"6","last_modified":"2014-02-26T21:15:39.493Z","name":"Technology,
514
- Class 601 - 601 - T. Schultz","period":"8","school":"530e595026403103360ff9ff","sis_id":"953","students":["530e5960049e75a9262cff25","530e5960049e75a9262cff50","530e5960049e75a9262cff61","530e5960049e75a9262cff86","530e5961049e75a9262cffb4","530e5962049e75a9262d0125","530e5962049e75a9262d0129","530e5963049e75a9262d0204","530e5963049e75a9262d025e","530e5963049e75a9262d0260","530e5964049e75a9262d0266","530e5964049e75a9262d027d","530e5964049e75a9262d02b2","530e5965049e75a9262d036b","530e5965049e75a9262d03c3","530e5966049e75a9262d041a","530e5966049e75a9262d0460","530e5966049e75a9262d0472","530e5966049e75a9262d04af","530e5967049e75a9262d0522","530e5967049e75a9262d055b","530e5967049e75a9262d0589","530e5968049e75a9262d05d7","530e5968049e75a9262d05d9","530e5968049e75a9262d05df","530e5968049e75a9262d060f"],"subject":"technology
515
- and engineering","teacher":"530e5955d50c310f36112bee","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e597b049e75a9262d0c65"},"uri":"/v1.1/sections/530e597b049e75a9262d0c65"},{"data":{"course_name":"Technology,
516
- Class 602","course_number":"602","created":"2014-02-26T21:15:39.494Z","district":"4fd43cc56d11340000000005","grade":"6","last_modified":"2014-02-26T21:15:39.496Z","name":"Technology,
517
- Class 602 - 602 - T. Schultz","period":"8","school":"530e595026403103360ff9ff","sis_id":"954","students":["530e5960049e75a9262cff4e","530e5961049e75a9262cffed","530e5961049e75a9262cfff5","530e5961049e75a9262d0009","530e5961049e75a9262d000f","530e5961049e75a9262d005e","530e5961049e75a9262d0083","530e5962049e75a9262d0098","530e5962049e75a9262d00a0","530e5962049e75a9262d00d4","530e5962049e75a9262d010b","530e5963049e75a9262d0220","530e5964049e75a9262d02b3","530e5964049e75a9262d02b8","530e5964049e75a9262d02f6","530e5965049e75a9262d034c","530e5965049e75a9262d0389","530e5965049e75a9262d03c5","530e5966049e75a9262d041e","530e5966049e75a9262d0494","530e5967049e75a9262d05ae","530e5967049e75a9262d05c4","530e5968049e75a9262d05d6","530e5968049e75a9262d05f3","530e5968049e75a9262d05ff","530e5968049e75a9262d060b"],"subject":"technology
518
- and engineering","teacher":"530e5955d50c310f36112bee","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e597b049e75a9262d0c66"},"uri":"/v1.1/sections/530e597b049e75a9262d0c66"},{"data":{"course_name":"Technology,
519
- Class 603","course_number":"603","created":"2014-02-26T21:15:39.497Z","district":"4fd43cc56d11340000000005","grade":"6","last_modified":"2014-02-26T21:15:39.499Z","name":"Technology,
520
- Class 603 - 603 - T. Schultz","period":"8","school":"530e595026403103360ff9ff","sis_id":"955","students":["530e5960049e75a9262cff49","530e5960049e75a9262cff64","530e5961049e75a9262cffd7","530e5961049e75a9262cffe6","530e5961049e75a9262cffe7","530e5962049e75a9262d00b1","530e5962049e75a9262d00da","530e5962049e75a9262d00e0","530e5962049e75a9262d0132","530e5962049e75a9262d013b","530e5962049e75a9262d0168","530e5965049e75a9262d03b7","530e5966049e75a9262d03fa","530e5966049e75a9262d0433","530e5966049e75a9262d0497","530e5966049e75a9262d04c1","530e5967049e75a9262d04df","530e5967049e75a9262d051d","530e5967049e75a9262d058f","530e5967049e75a9262d05b8","530e5968049e75a9262d05cf","530e5968049e75a9262d0626","530e5968049e75a9262d062d","530e5968049e75a9262d062e","530e5968049e75a9262d0641","530e5968049e75a9262d064a"],"subject":"technology
521
- and engineering","teacher":"530e5955d50c310f36112bee","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e597b049e75a9262d0c67"},"uri":"/v1.1/sections/530e597b049e75a9262d0c67"},{"data":{"course_name":"Introduction
522
- to Web Design","course_number":"100","created":"2014-02-26T21:15:39.500Z","district":"4fd43cc56d11340000000005","grade":"9","last_modified":"2014-02-26T21:15:39.502Z","name":"Introduction
523
- to Web Design - 100 - L. Corwin","period":"1","school":"530e595026403103360ff9fd","sis_id":"956","students":["530e5960049e75a9262cff1e","530e5960049e75a9262cff27","530e5960049e75a9262cff7a","530e5961049e75a9262d0089","530e5962049e75a9262d00e6","530e5963049e75a9262d01db","530e5963049e75a9262d020f","530e5963049e75a9262d0211","530e5963049e75a9262d0229","530e5964049e75a9262d0309","530e5965049e75a9262d033f","530e5965049e75a9262d038f","530e5966049e75a9262d03f8","530e5966049e75a9262d0468","530e5966049e75a9262d046c","530e5966049e75a9262d0471","530e5966049e75a9262d0495","530e5967049e75a9262d0590","530e5968049e75a9262d05d4","530e5968049e75a9262d063a"],"subject":"technology
524
- and engineering","teacher":"530e5955d50c310f36112c01","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e597b049e75a9262d0c68"},"uri":"/v1.1/sections/530e597b049e75a9262d0c68"},{"data":{"course_name":"Intermediate
525
- Visual Arts","course_number":"200","created":"2014-02-26T21:15:39.503Z","district":"4fd43cc56d11340000000005","grade":"10","last_modified":"2014-02-26T21:15:39.504Z","name":"Intermediate
526
- Visual Arts - 200 - J. Page","period":"2","school":"530e595026403103360ff9fd","sis_id":"957","students":["530e5960049e75a9262cff1f","530e5960049e75a9262cff7b","530e5960049e75a9262cff95","530e5961049e75a9262d0020","530e5961049e75a9262d0027","530e5961049e75a9262d0035","530e5962049e75a9262d0102","530e5962049e75a9262d012b","530e5962049e75a9262d0133","530e5962049e75a9262d0156","530e5962049e75a9262d0158","530e5964049e75a9262d0300","530e5965049e75a9262d0383","530e5966049e75a9262d0418","530e5966049e75a9262d0455","530e5966049e75a9262d0475","530e5967049e75a9262d0577","530e5967049e75a9262d05c0","530e5968049e75a9262d05fc","530e5968049e75a9262d0647"],"subject":"arts
527
- and music","teacher":"530e5955d50c310f36112c0a","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e597b049e75a9262d0c69"},"uri":"/v1.1/sections/530e597b049e75a9262d0c69"},{"data":{"course_name":"Advanced
528
- Visual Arts","course_number":"300","created":"2014-02-26T21:15:39.505Z","district":"4fd43cc56d11340000000005","grade":"11","last_modified":"2014-02-26T21:15:39.507Z","name":"Advanced
529
- Visual Arts - 300 - J. Page (Section 1)","period":"7","school":"530e595026403103360ff9fd","sis_id":"958","students":["530e5960049e75a9262cff2f","530e5960049e75a9262cff98","530e5961049e75a9262d004c","530e5961049e75a9262d0086","530e5962049e75a9262d00bd","530e5963049e75a9262d0205","530e5963049e75a9262d022c","530e5964049e75a9262d02a2","530e5964049e75a9262d02e7","530e5965049e75a9262d0328","530e5966049e75a9262d03f2","530e5966049e75a9262d0416","530e5966049e75a9262d046b","530e5966049e75a9262d047e","530e5966049e75a9262d04d3","530e5967049e75a9262d04ff","530e5967049e75a9262d0527","530e5968049e75a9262d0634","530e5968049e75a9262d0636","530e5968049e75a9262d064b"],"subject":"arts
530
- and music","teacher":"530e5955d50c310f36112c0a","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e597b049e75a9262d0c6a"},"uri":"/v1.1/sections/530e597b049e75a9262d0c6a"},{"data":{"course_name":"AP
531
- Art History","course_number":"404","created":"2014-02-26T21:15:39.508Z","district":"4fd43cc56d11340000000005","grade":"12","last_modified":"2014-02-26T21:15:39.510Z","name":"AP
532
- Art History - 404 - R. Plant (Section 1)","period":"8","school":"530e595026403103360ff9fd","sis_id":"959","students":["530e5960049e75a9262cff6a","530e5961049e75a9262d000d","530e5961049e75a9262d005b","530e5963049e75a9262d0197","530e5963049e75a9262d01d6","530e5963049e75a9262d020b","530e5963049e75a9262d021d","530e5964049e75a9262d02d4","530e5965049e75a9262d0379","530e5965049e75a9262d03ee","530e5967049e75a9262d04fe","530e5967049e75a9262d0563","530e5967049e75a9262d058c","530e5967049e75a9262d0591","530e5968049e75a9262d05dd","530e5968049e75a9262d05fa","530e5968049e75a9262d060c","530e5968049e75a9262d0622","530e5968049e75a9262d062a","530e5968049e75a9262d063f"],"subject":"social
533
- studies","teacher":"530e5955d50c310f36112c09","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e597b049e75a9262d0c6b"},"uri":"/v1.1/sections/530e597b049e75a9262d0c6b"},{"data":{"course_name":"Introduction
534
- to Visual Arts","course_number":"100","created":"2014-02-26T21:15:39.511Z","district":"4fd43cc56d11340000000005","grade":"9","last_modified":"2014-02-26T21:15:39.513Z","name":"Introduction
535
- to Visual Arts - 100 - R. Plant","period":"1","school":"530e595026403103360ff9fd","sis_id":"960","students":["530e5960049e75a9262cff3c","530e5961049e75a9262cffcd","530e5961049e75a9262d001a","530e5961049e75a9262d0038","530e5961049e75a9262d0048","530e5961049e75a9262d0085","530e5962049e75a9262d00e8","530e5962049e75a9262d015f","530e5963049e75a9262d01a2","530e5963049e75a9262d022f","530e5964049e75a9262d02d3","530e5965049e75a9262d0325","530e5966049e75a9262d04d7","530e5967049e75a9262d0501","530e5967049e75a9262d052d","530e5967049e75a9262d05b5","530e5967049e75a9262d05be","530e5968049e75a9262d05cb","530e5968049e75a9262d061c","530e5968049e75a9262d063c"],"subject":"arts
536
- and music","teacher":"530e5955d50c310f36112c09","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"id":"530e597b049e75a9262d0c6c"},"uri":"/v1.1/sections/530e597b049e75a9262d0c6c"}],"links":[{"rel":"self","uri":"/v1.1/sections?ending_before=last&limit=20"},{"rel":"prev","uri":"/v1.1/sections?limit=20&ending_before=530e597b049e75a9262d0c59"}]}'
537
- http_version:
538
- recorded_at: Fri, 12 Sep 2014 23:26:00 GMT
539
- - request:
540
- method: get
541
- uri: https://api.clever.com/v1.1/teachers?ending_before=last&limit=1
542
- body:
543
- encoding: US-ASCII
544
- string: ''
545
- headers:
546
- Accept:
547
- - ! '*/*; q=0.5, application/xml'
548
- Accept-Encoding:
549
- - gzip, deflate
550
- Authorization:
551
- - Bearer DEMO_TOKEN
552
- User-Agent:
553
- - Ruby
554
- response:
555
- status:
556
- code: 200
557
- message: OK
558
- headers:
559
- Access-Control-Allow-Headers:
560
- - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
561
- Access-Control-Allow-Methods:
562
- - GET,PATCH,POST,DELETE
563
- Access-Control-Allow-Origin:
564
- - ! '*'
565
- Content-Type:
566
- - application/json; charset=utf-8
567
- Date:
568
- - Fri, 12 Sep 2014 23:26:00 GMT
569
- Server:
570
- - nginx/1.4.7
571
- X-Powered-By:
572
- - Express
573
- Content-Length:
574
- - '658'
575
- Connection:
576
- - keep-alive
577
- body:
578
- encoding: US-ASCII
579
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:01.572Z","credentials":{"district_username":"m_paucek","district_password":"jhga8salgh"},"district":"4fd43cc56d11340000000005","email":"paucek_m@example.org","last_modified":"2014-02-26T21:15:01.574Z","name":{"first":"Meaghan","middle":"P","last":"Paucek"},"school":"530e595026403103360ff9fd","sis_id":"93","teacher_number":"843713","title":"High
580
- School Drama Teacher","id":"530e5955d50c310f36112c19"},"uri":"/v1.1/teachers/530e5955d50c310f36112c19"}],"links":[{"rel":"self","uri":"/v1.1/teachers?ending_before=last&limit=1"},{"rel":"prev","uri":"/v1.1/teachers?limit=1&ending_before=530e5955d50c310f36112c19"}]}'
581
- http_version:
582
- recorded_at: Fri, 12 Sep 2014 23:26:00 GMT
583
- - request:
584
- method: get
585
- uri: https://api.clever.com/v1.1/teachers?ending_before=last&limit=20
586
- body:
587
- encoding: US-ASCII
588
- string: ''
589
- headers:
590
- Accept:
591
- - ! '*/*; q=0.5, application/xml'
592
- Accept-Encoding:
593
- - gzip, deflate
594
- Authorization:
595
- - Bearer DEMO_TOKEN
596
- User-Agent:
597
- - Ruby
598
- response:
599
- status:
600
- code: 200
601
- message: OK
602
- headers:
603
- Access-Control-Allow-Headers:
604
- - Content-Type,Authorization,X-Requested-With,Accept,Origin,Referer,User-Agent
605
- Access-Control-Allow-Methods:
606
- - GET,PATCH,POST,DELETE
607
- Access-Control-Allow-Origin:
608
- - ! '*'
609
- Content-Type:
610
- - application/json; charset=utf-8
611
- Date:
612
- - Fri, 12 Sep 2014 23:26:00 GMT
613
- Etag:
614
- - ! '"-1782694113"'
615
- Server:
616
- - nginx/1.4.7
617
- X-Powered-By:
618
- - Express
619
- Content-Length:
620
- - '10151'
621
- Connection:
622
- - keep-alive
623
- body:
624
- encoding: US-ASCII
625
- string: ! '{"data":[{"data":{"created":"2014-02-26T21:15:01.488Z","credentials":{"district_username":"coulton.john","district_password":"posi924adA"},"district":"4fd43cc56d11340000000005","email":"john.coulton@example.net","last_modified":"2014-02-26T21:15:01.491Z","name":{"first":"John","middle":"D","last":"Coulton"},"school":"530e595026403103360ff9fd","sis_id":"72","teacher_number":"900381","title":"High
626
- School Music Teacher","id":"530e5955d50c310f36112c06"},"uri":"/v1.1/teachers/530e5955d50c310f36112c06"},{"data":{"created":"2014-02-26T21:15:01.493Z","credentials":{"district_username":"mccartney_paula","district_password":"jf098fjdk2a"},"district":"4fd43cc56d11340000000005","email":"paula_mccartney@example.org","last_modified":"2014-02-26T21:15:01.494Z","name":{"first":"Paula","middle":"H","last":"McCartney"},"school":"530e595026403103360ff9fd","sis_id":"75","teacher_number":"847826","title":"High
627
- School Health and Physical Education Teacher","id":"530e5955d50c310f36112c07"},"uri":"/v1.1/teachers/530e5955d50c310f36112c07"},{"data":{"created":"2014-02-26T21:15:01.496Z","credentials":{"district_username":"roger_gadsby","district_password":"lkjgf8hasdofjh"},"district":"4fd43cc56d11340000000005","email":"gadsby.roger@example.com","last_modified":"2014-02-26T21:15:01.497Z","name":{"first":"Roger","middle":"X","last":"Gadsby"},"school":"530e595026403103360ff9fd","sis_id":"76","teacher_number":"219349","title":"High
628
- School Music Teacher","id":"530e5955d50c310f36112c08"},"uri":"/v1.1/teachers/530e5955d50c310f36112c08"},{"data":{"created":"2014-02-26T21:15:01.499Z","credentials":{"district_username":"plant_robin","district_password":"84dhhfsfgh"},"district":"4fd43cc56d11340000000005","email":"robin_plant@example.org","last_modified":"2014-02-26T21:15:01.501Z","name":{"first":"Robin","middle":"M","last":"Plant"},"school":"530e595026403103360ff9fd","sis_id":"77","teacher_number":"532771","title":"High
629
- School Arts Teacher","id":"530e5955d50c310f36112c09"},"uri":"/v1.1/teachers/530e5955d50c310f36112c09"},{"data":{"created":"2014-02-26T21:15:01.502Z","credentials":{"district_username":"page.james","district_password":"843r5hfsajfh"},"district":"4fd43cc56d11340000000005","email":"page.james@example.net","last_modified":"2014-02-26T21:15:01.504Z","name":{"first":"James","middle":"V","last":"Page"},"school":"530e595026403103360ff9fd","sis_id":"78","teacher_number":"884763","title":"High
630
- School Arts Teacher","id":"530e5955d50c310f36112c0a"},"uri":"/v1.1/teachers/530e5955d50c310f36112c0a"},{"data":{"created":"2014-02-26T21:15:01.505Z","credentials":{"district_username":"ray_logan","district_password":"u30rufjnasdf"},"district":"4fd43cc56d11340000000005","email":"ray.logan@example.net","last_modified":"2014-02-26T21:15:01.507Z","name":{"first":"Logan","middle":"K","last":"Ray"},"school":"530e595026403103360ff9fd","sis_id":"79","teacher_number":"592128","title":"High
631
- School Technology Teacher","id":"530e5955d50c310f36112c0b"},"uri":"/v1.1/teachers/530e5955d50c310f36112c0b"},{"data":{"created":"2014-02-26T21:15:01.510Z","credentials":{"district_username":"janae.doyle","district_password":"ahVu5ush0"},"district":"4fd43cc56d11340000000005","email":"janae.doyle@example.com","last_modified":"2014-02-26T21:15:01.513Z","name":{"first":"Janae","middle":"S","last":"Doyle"},"school":"530e595026403103360ff9fe","sis_id":"8","teacher_number":"440236","title":"High
632
- School History Teacher","id":"530e5955d50c310f36112c0c"},"uri":"/v1.1/teachers/530e5955d50c310f36112c0c"},{"data":{"created":"2014-02-26T21:15:01.516Z","credentials":{"district_username":"james_washington","district_password":"nvsjdfg83fh"},"district":"4fd43cc56d11340000000005","email":"washington_james@example.net","last_modified":"2014-02-26T21:15:01.517Z","name":{"first":"James","middle":"Y","last":"Washington"},"school":"530e595026403103360ff9fd","sis_id":"82","teacher_number":"962081","title":"High
633
- School Science Teacher","id":"530e5955d50c310f36112c0d"},"uri":"/v1.1/teachers/530e5955d50c310f36112c0d"},{"data":{"created":"2014-02-26T21:15:01.519Z","credentials":{"district_username":"madison.samantha","district_password":"efjhw20"},"district":"4fd43cc56d11340000000005","email":"samantha_madison@example.net","last_modified":"2014-02-26T21:15:01.521Z","name":{"first":"Samantha","middle":"U","last":"Madison"},"school":"530e595026403103360ff9ff","sis_id":"83","teacher_number":"557191","title":"Middle
634
- School Guidance Counselor","id":"530e5955d50c310f36112c0e"},"uri":"/v1.1/teachers/530e5955d50c310f36112c0e"},{"data":{"created":"2014-02-26T21:15:01.522Z","credentials":{"district_username":"rachel.monroe","district_password":"fajshgnv83d"},"district":"4fd43cc56d11340000000005","email":"rachel.monroe@example.net","last_modified":"2014-02-26T21:15:01.536Z","name":{"first":"Rachel","middle":"A","last":"Monroe"},"school":"530e595026403103360ff9ff","sis_id":"84","teacher_number":"328889","title":"Middle
635
- School Guidance Counselor","id":"530e5955d50c310f36112c0f"},"uri":"/v1.1/teachers/530e5955d50c310f36112c0f"},{"data":{"created":"2014-02-26T21:15:01.537Z","credentials":{"district_username":"kari_hudson","district_password":"dfafsbe5tw3"},"district":"4fd43cc56d11340000000005","email":"kari.hudson@example.net","last_modified":"2014-02-26T21:15:01.538Z","name":{"first":"Kari","middle":"H","last":"Hudson"},"school":"530e595026403103360ff9ff","sis_id":"85","teacher_number":"989342","title":"Middle
636
- School Guidance Counselor","id":"530e5955d50c310f36112c10"},"uri":"/v1.1/teachers/530e5955d50c310f36112c10"},{"data":{"created":"2014-02-26T21:15:01.541Z","credentials":{"district_username":"brianna.greene","district_password":"878fddh"},"district":"4fd43cc56d11340000000005","email":"brianna.greene@example.org","last_modified":"2014-02-26T21:15:01.542Z","name":{"first":"Brianna","middle":"P","last":"Greene"},"school":"530e595026403103360ff9fd","sis_id":"86","teacher_number":"595853","title":"High
637
- School Guidance Counselor","id":"530e5955d50c310f36112c11"},"uri":"/v1.1/teachers/530e5955d50c310f36112c11"},{"data":{"created":"2014-02-26T21:15:01.544Z","credentials":{"district_username":"vaux_tracy","district_password":"09876dfgh"},"district":"4fd43cc56d11340000000005","email":"vaux_tracy@example.com","last_modified":"2014-02-26T21:15:01.547Z","name":{"first":"Tracy","middle":"A","last":"Vaux"},"school":"530e595026403103360ff9fd","sis_id":"87","teacher_number":"148041","title":"High
638
- School Guidance Counselor","id":"530e5955d50c310f36112c12"},"uri":"/v1.1/teachers/530e5955d50c310f36112c12"},{"data":{"created":"2014-02-26T21:15:01.549Z","credentials":{"district_username":"britcher_elizabeth","district_password":"password1"},"district":"4fd43cc56d11340000000005","email":"elizabeth.britcher@example.net","last_modified":"2014-02-26T21:15:01.553Z","name":{"first":"Elizabeth","middle":"H","last":"Britcher"},"school":"530e595026403103360ff9fd","sis_id":"88","teacher_number":"969161","title":"High
639
- School Guidance Counselor","id":"530e5955d50c310f36112c13"},"uri":"/v1.1/teachers/530e5955d50c310f36112c13"},{"data":{"created":"2014-02-26T21:15:01.554Z","credentials":{"district_username":"josephine.isaacs","district_password":"rgrgj924"},"district":"4fd43cc56d11340000000005","email":"josephine_isaacs@example.com","last_modified":"2014-02-26T21:15:01.556Z","name":{"first":"Josephine","middle":"K","last":"Isaacs"},"school":"530e595026403103360ff9fd","sis_id":"89","teacher_number":"565897","title":"College
640
- Counselor","id":"530e5955d50c310f36112c14"},"uri":"/v1.1/teachers/530e5955d50c310f36112c14"},{"data":{"created":"2014-02-26T21:15:01.561Z","credentials":{"district_username":"santa_block","district_password":"Aisew0eax"},"district":"4fd43cc56d11340000000005","email":"block.santa@example.org","last_modified":"2014-02-26T21:15:01.562Z","name":{"first":"Santa","middle":"M","last":"Block"},"school":"530e595026403103360ff9fe","sis_id":"9","teacher_number":"855606","title":"Grade
641
- 3 Common Branch Teacher","id":"530e5955d50c310f36112c15"},"uri":"/v1.1/teachers/530e5955d50c310f36112c15"},{"data":{"created":"2014-02-26T21:15:01.563Z","credentials":{"district_username":"cummings_jacklyn","district_password":"fido"},"district":"4fd43cc56d11340000000005","email":"jacklyn_cummings@example.org","last_modified":"2014-02-26T21:15:01.565Z","name":{"first":"Jacklyn","middle":"P","last":"Cummings"},"school":"530e595026403103360ff9fd","sis_id":"90","teacher_number":"857472","title":"Assistant
642
- Principal","id":"530e5955d50c310f36112c16"},"uri":"/v1.1/teachers/530e5955d50c310f36112c16"},{"data":{"created":"2014-02-26T21:15:01.566Z","credentials":{"district_username":"morgan.nagle","district_password":"48urjnslvdjbn0"},"district":"4fd43cc56d11340000000005","email":"nagle_morgan@example.com","last_modified":"2014-02-26T21:15:01.567Z","name":{"first":"Morgan","middle":"E","last":"Nagle"},"school":"530e595026403103360ff9fd","sis_id":"91","teacher_number":"712084","title":"Assistant
643
- Principal","id":"530e5955d50c310f36112c17"},"uri":"/v1.1/teachers/530e5955d50c310f36112c17"},{"data":{"created":"2014-02-26T21:15:01.568Z","credentials":{"district_username":"pennyworth.daniela","district_password":"hfhglh345d"},"district":"4fd43cc56d11340000000005","email":"pennyworth.daniela@example.net","last_modified":"2014-02-26T21:15:01.570Z","name":{"first":"Daniela","middle":"B","last":"Pennyworth"},"school":"530e595026403103360ff9fd","sis_id":"92","teacher_number":"499660","title":"Literacy
644
- Coach","id":"530e5955d50c310f36112c18"},"uri":"/v1.1/teachers/530e5955d50c310f36112c18"},{"data":{"created":"2014-02-26T21:15:01.572Z","credentials":{"district_username":"m_paucek","district_password":"jhga8salgh"},"district":"4fd43cc56d11340000000005","email":"paucek_m@example.org","last_modified":"2014-02-26T21:15:01.574Z","name":{"first":"Meaghan","middle":"P","last":"Paucek"},"school":"530e595026403103360ff9fd","sis_id":"93","teacher_number":"843713","title":"High
645
- School Drama Teacher","id":"530e5955d50c310f36112c19"},"uri":"/v1.1/teachers/530e5955d50c310f36112c19"}],"links":[{"rel":"self","uri":"/v1.1/teachers?ending_before=last&limit=20"},{"rel":"prev","uri":"/v1.1/teachers?limit=20&ending_before=530e5955d50c310f36112c06"}]}'
646
- http_version:
647
- recorded_at: Fri, 12 Sep 2014 23:26:00 GMT
648
- recorded_with: VCR 2.9.3