tatooine 1.0.1 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.travis.yml +8 -7
- data/CHANGELOG.md +7 -2
- data/lib/tatooine.rb +1 -1
- data/lib/tatooine/version.rb +1 -1
- data/spec/film_spec.rb +5 -3
- data/spec/fixtures/vcr_cassettes/film_1.yml +15 -11
- data/spec/fixtures/vcr_cassettes/film_1_and_schema.yml +14 -10
- data/spec/fixtures/vcr_cassettes/film_count.yml +52 -39
- data/spec/fixtures/vcr_cassettes/film_list.yml +260 -215
- data/spec/fixtures/vcr_cassettes/film_schema.yml +52 -39
- data/spec/fixtures/vcr_cassettes/person_1.yml +14 -10
- data/spec/fixtures/vcr_cassettes/person_1_and_schema.yml +14 -10
- data/spec/fixtures/vcr_cassettes/person_count.yml +23 -19
- data/spec/fixtures/vcr_cassettes/person_list.yml +23 -19
- data/spec/fixtures/vcr_cassettes/person_next.yml +20 -16
- data/spec/fixtures/vcr_cassettes/person_previous.yml +23 -19
- data/spec/fixtures/vcr_cassettes/person_schema.yml +23 -19
- data/spec/fixtures/vcr_cassettes/planet_1.yml +14 -10
- data/spec/fixtures/vcr_cassettes/planet_1_and_schema.yml +14 -10
- data/spec/fixtures/vcr_cassettes/planet_count.yml +24 -20
- data/spec/fixtures/vcr_cassettes/planet_list.yml +24 -20
- data/spec/fixtures/vcr_cassettes/planet_next.yml +24 -20
- data/spec/fixtures/vcr_cassettes/planet_previous.yml +24 -20
- data/spec/fixtures/vcr_cassettes/planet_schema.yml +24 -20
- data/spec/fixtures/vcr_cassettes/species_1.yml +15 -11
- data/spec/fixtures/vcr_cassettes/species_1_and_schema.yml +15 -11
- data/spec/fixtures/vcr_cassettes/species_count.yml +26 -22
- data/spec/fixtures/vcr_cassettes/species_list.yml +26 -22
- data/spec/fixtures/vcr_cassettes/species_next.yml +22 -19
- data/spec/fixtures/vcr_cassettes/species_previous.yml +26 -22
- data/spec/fixtures/vcr_cassettes/species_schema.yml +26 -22
- data/spec/fixtures/vcr_cassettes/starship_10.yml +14 -10
- data/spec/fixtures/vcr_cassettes/starship_2_and_schema.yml +14 -10
- data/spec/fixtures/vcr_cassettes/starship_count.yml +25 -21
- data/spec/fixtures/vcr_cassettes/starship_list.yml +25 -21
- data/spec/fixtures/vcr_cassettes/starship_next.yml +24 -20
- data/spec/fixtures/vcr_cassettes/starship_previous.yml +25 -21
- data/spec/fixtures/vcr_cassettes/starship_schema.yml +25 -21
- data/spec/fixtures/vcr_cassettes/vehicle_14.yml +14 -10
- data/spec/fixtures/vcr_cassettes/vehicle_14_and_schema.yml +14 -10
- data/spec/fixtures/vcr_cassettes/vehicle_count.yml +24 -20
- data/spec/fixtures/vcr_cassettes/vehicle_list.yml +24 -20
- data/spec/fixtures/vcr_cassettes/vehicle_next.yml +24 -20
- data/spec/fixtures/vcr_cassettes/vehicle_previous.yml +24 -20
- data/spec/fixtures/vcr_cassettes/vehicle_schema.yml +24 -20
- data/spec/person_spec.rb +2 -2
- data/spec/planet_spec.rb +2 -2
- data/spec/species_spec.rb +2 -2
- data/spec/starship_spec.rb +2 -2
- data/spec/vehicle_spec.rb +1 -1
- data/tatooine.gemspec +3 -3
- metadata +8 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 740ccb354b5564b1aa9946be3225c4d92030715bfe06ef7792737decc68ccf71
|
4
|
+
data.tar.gz: b71e0eb2d347ad09b0567d9c3df9290302f29bf876463b7655db8f3d1c4022c7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 542f1fc4665f0dcd08007867bbd36bbe9b5596167d0d07f8c87f0b6998630adc59873d5f9721335412b21afe44f991d42762783b2d56e5676a07eb28805d8fe4
|
7
|
+
data.tar.gz: afd9007ed5cc5fecce6dc71c095afb50294ab13ce7e7bc6cff16206f3a1bffac038d8bb851309bffb15093977fad2e457aac1363f81dbc2266ecb0558f937861
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,10 +1,15 @@
|
|
1
1
|
# ChangeLog
|
2
2
|
|
3
|
-
|
3
|
+
## 2.0.0
|
4
|
+
|
5
|
+
* Changes API URL to use HTTPS
|
6
|
+
* Updates Ruby version to >= 2.3.0
|
7
|
+
|
8
|
+
## 1.0.1
|
4
9
|
|
5
10
|
* Fixes Ruby version requirements at >= 1.9.2
|
6
11
|
|
7
|
-
|
12
|
+
## 1.0.0
|
8
13
|
|
9
14
|
* Initial version
|
10
15
|
* Support for Planets, Species, People, Vehicles, Starships and Films
|
data/lib/tatooine.rb
CHANGED
data/lib/tatooine/version.rb
CHANGED
data/spec/film_spec.rb
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
require "./spec/spec_helper"
|
2
2
|
|
3
3
|
describe Tatooine::Film do
|
4
|
+
EXPECTED_MOVIE_COUNT = 7
|
5
|
+
|
4
6
|
describe "#schema" do
|
5
7
|
before(:all) do
|
6
8
|
VCR.use_cassette("film schema") do
|
@@ -22,7 +24,7 @@ describe Tatooine::Film do
|
|
22
24
|
end
|
23
25
|
|
24
26
|
it "should return the correct count" do
|
25
|
-
expect(@count).to be(
|
27
|
+
expect(@count).to be(EXPECTED_MOVIE_COUNT)
|
26
28
|
end
|
27
29
|
end
|
28
30
|
|
@@ -35,7 +37,7 @@ describe Tatooine::Film do
|
|
35
37
|
|
36
38
|
it "gets a list of films" do
|
37
39
|
expect(@films).to be_instance_of(Array)
|
38
|
-
expect(@films.length).to be(
|
40
|
+
expect(@films.length).to be(EXPECTED_MOVIE_COUNT)
|
39
41
|
expect(@films.first).to be_instance_of(Tatooine::Film)
|
40
42
|
end
|
41
43
|
end
|
@@ -48,7 +50,7 @@ describe Tatooine::Film do
|
|
48
50
|
end
|
49
51
|
|
50
52
|
it "gets the url of the film" do
|
51
|
-
expect(@film.url).to eq("
|
53
|
+
expect(@film.url).to eq("#{Tatooine::API_BASE}films/1/")
|
52
54
|
end
|
53
55
|
|
54
56
|
it "gets the attributes of the film" do
|
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri:
|
5
|
+
uri: https://swapi.co/api/films/1/
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Tatooine Ruby Gem -
|
11
|
+
- Tatooine Ruby Gem - 1.0.1
|
12
12
|
Accept-Encoding:
|
13
13
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
14
14
|
Accept:
|
@@ -19,7 +19,7 @@ http_interactions:
|
|
19
19
|
message: OK
|
20
20
|
headers:
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Tue, 28 Aug 2018 21:41:34 GMT
|
23
23
|
Content-Type:
|
24
24
|
- application/json
|
25
25
|
Transfer-Encoding:
|
@@ -27,8 +27,10 @@ http_interactions:
|
|
27
27
|
Connection:
|
28
28
|
- keep-alive
|
29
29
|
Set-Cookie:
|
30
|
-
- __cfduid=
|
31
|
-
|
30
|
+
- __cfduid=d84a8300af35e83fe5bbc11b0e1c59f0e1535492494; expires=Wed, 28-Aug-19
|
31
|
+
21:41:34 GMT; path=/; domain=.swapi.co; HttpOnly; Secure
|
32
|
+
Etag:
|
33
|
+
- W/"efcda1cd8821a886c81de0c6de9dd6f1"
|
32
34
|
Allow:
|
33
35
|
- GET, HEAD, OPTIONS
|
34
36
|
X-Frame-Options:
|
@@ -37,12 +39,14 @@ http_interactions:
|
|
37
39
|
- Accept, Cookie
|
38
40
|
Via:
|
39
41
|
- 1.1 vegur
|
42
|
+
Expect-Ct:
|
43
|
+
- max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
|
40
44
|
Server:
|
41
|
-
- cloudflare
|
45
|
+
- cloudflare
|
42
46
|
Cf-Ray:
|
43
|
-
-
|
47
|
+
- 4519f1599bf340e2-HAM
|
44
48
|
body:
|
45
|
-
encoding:
|
49
|
+
encoding: ASCII-8BIT
|
46
50
|
string: '{"title":"A New Hope","episode_id":4,"opening_crawl":"It is a period
|
47
51
|
of civil war.\r\nRebel spaceships, striking\r\nfrom a hidden base, have won\r\ntheir
|
48
52
|
first victory against\r\nthe evil Galactic Empire.\r\n\r\nDuring the battle,
|
@@ -51,7 +55,7 @@ http_interactions:
|
|
51
55
|
destroy an entire planet.\r\n\r\nPursued by the Empire''s\r\nsinister agents,
|
52
56
|
Princess\r\nLeia races home aboard her\r\nstarship, custodian of the\r\nstolen
|
53
57
|
plans that can save her\r\npeople and restore\r\nfreedom to the galaxy....","director":"George
|
54
|
-
Lucas","producer":"Gary Kurtz, Rick McCallum","characters":["
|
55
|
-
http_version:
|
56
|
-
recorded_at:
|
58
|
+
Lucas","producer":"Gary Kurtz, Rick McCallum","release_date":"1977-05-25","characters":["https://swapi.co/api/people/1/","https://swapi.co/api/people/2/","https://swapi.co/api/people/3/","https://swapi.co/api/people/4/","https://swapi.co/api/people/5/","https://swapi.co/api/people/6/","https://swapi.co/api/people/7/","https://swapi.co/api/people/8/","https://swapi.co/api/people/9/","https://swapi.co/api/people/10/","https://swapi.co/api/people/12/","https://swapi.co/api/people/13/","https://swapi.co/api/people/14/","https://swapi.co/api/people/15/","https://swapi.co/api/people/16/","https://swapi.co/api/people/18/","https://swapi.co/api/people/19/","https://swapi.co/api/people/81/"],"planets":["https://swapi.co/api/planets/2/","https://swapi.co/api/planets/3/","https://swapi.co/api/planets/1/"],"starships":["https://swapi.co/api/starships/2/","https://swapi.co/api/starships/3/","https://swapi.co/api/starships/5/","https://swapi.co/api/starships/9/","https://swapi.co/api/starships/10/","https://swapi.co/api/starships/11/","https://swapi.co/api/starships/12/","https://swapi.co/api/starships/13/"],"vehicles":["https://swapi.co/api/vehicles/4/","https://swapi.co/api/vehicles/6/","https://swapi.co/api/vehicles/7/","https://swapi.co/api/vehicles/8/"],"species":["https://swapi.co/api/species/5/","https://swapi.co/api/species/3/","https://swapi.co/api/species/2/","https://swapi.co/api/species/1/","https://swapi.co/api/species/4/"],"created":"2014-12-10T14:23:31.880000Z","edited":"2015-04-11T09:46:52.774897Z","url":"https://swapi.co/api/films/1/"}'
|
59
|
+
http_version:
|
60
|
+
recorded_at: Tue, 28 Aug 2018 21:41:34 GMT
|
57
61
|
recorded_with: VCR 2.9.3
|
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri:
|
5
|
+
uri: https://swapi.co/api/films/1/
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Tatooine Ruby Gem -
|
11
|
+
- Tatooine Ruby Gem - 1.0.1
|
12
12
|
Accept-Encoding:
|
13
13
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
14
14
|
Accept:
|
@@ -19,7 +19,7 @@ http_interactions:
|
|
19
19
|
message: OK
|
20
20
|
headers:
|
21
21
|
Date:
|
22
|
-
- Tue,
|
22
|
+
- Tue, 28 Aug 2018 21:41:35 GMT
|
23
23
|
Content-Type:
|
24
24
|
- application/json
|
25
25
|
Transfer-Encoding:
|
@@ -27,8 +27,10 @@ http_interactions:
|
|
27
27
|
Connection:
|
28
28
|
- keep-alive
|
29
29
|
Set-Cookie:
|
30
|
-
- __cfduid=
|
31
|
-
|
30
|
+
- __cfduid=d01c87a31db82fb1815892593f32d95611535492494; expires=Wed, 28-Aug-19
|
31
|
+
21:41:34 GMT; path=/; domain=.swapi.co; HttpOnly; Secure
|
32
|
+
Etag:
|
33
|
+
- W/"efcda1cd8821a886c81de0c6de9dd6f1"
|
32
34
|
Allow:
|
33
35
|
- GET, HEAD, OPTIONS
|
34
36
|
X-Frame-Options:
|
@@ -37,12 +39,14 @@ http_interactions:
|
|
37
39
|
- Accept, Cookie
|
38
40
|
Via:
|
39
41
|
- 1.1 vegur
|
42
|
+
Expect-Ct:
|
43
|
+
- max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
|
40
44
|
Server:
|
41
|
-
- cloudflare
|
45
|
+
- cloudflare
|
42
46
|
Cf-Ray:
|
43
|
-
-
|
47
|
+
- 4519f15d487f407c-HAM
|
44
48
|
body:
|
45
|
-
encoding:
|
49
|
+
encoding: ASCII-8BIT
|
46
50
|
string: '{"title":"A New Hope","episode_id":4,"opening_crawl":"It is a period
|
47
51
|
of civil war.\r\nRebel spaceships, striking\r\nfrom a hidden base, have won\r\ntheir
|
48
52
|
first victory against\r\nthe evil Galactic Empire.\r\n\r\nDuring the battle,
|
@@ -51,7 +55,7 @@ http_interactions:
|
|
51
55
|
destroy an entire planet.\r\n\r\nPursued by the Empire''s\r\nsinister agents,
|
52
56
|
Princess\r\nLeia races home aboard her\r\nstarship, custodian of the\r\nstolen
|
53
57
|
plans that can save her\r\npeople and restore\r\nfreedom to the galaxy....","director":"George
|
54
|
-
Lucas","producer":"Gary Kurtz, Rick McCallum","characters":["
|
58
|
+
Lucas","producer":"Gary Kurtz, Rick McCallum","release_date":"1977-05-25","characters":["https://swapi.co/api/people/1/","https://swapi.co/api/people/2/","https://swapi.co/api/people/3/","https://swapi.co/api/people/4/","https://swapi.co/api/people/5/","https://swapi.co/api/people/6/","https://swapi.co/api/people/7/","https://swapi.co/api/people/8/","https://swapi.co/api/people/9/","https://swapi.co/api/people/10/","https://swapi.co/api/people/12/","https://swapi.co/api/people/13/","https://swapi.co/api/people/14/","https://swapi.co/api/people/15/","https://swapi.co/api/people/16/","https://swapi.co/api/people/18/","https://swapi.co/api/people/19/","https://swapi.co/api/people/81/"],"planets":["https://swapi.co/api/planets/2/","https://swapi.co/api/planets/3/","https://swapi.co/api/planets/1/"],"starships":["https://swapi.co/api/starships/2/","https://swapi.co/api/starships/3/","https://swapi.co/api/starships/5/","https://swapi.co/api/starships/9/","https://swapi.co/api/starships/10/","https://swapi.co/api/starships/11/","https://swapi.co/api/starships/12/","https://swapi.co/api/starships/13/"],"vehicles":["https://swapi.co/api/vehicles/4/","https://swapi.co/api/vehicles/6/","https://swapi.co/api/vehicles/7/","https://swapi.co/api/vehicles/8/"],"species":["https://swapi.co/api/species/5/","https://swapi.co/api/species/3/","https://swapi.co/api/species/2/","https://swapi.co/api/species/1/","https://swapi.co/api/species/4/"],"created":"2014-12-10T14:23:31.880000Z","edited":"2015-04-11T09:46:52.774897Z","url":"https://swapi.co/api/films/1/"}'
|
55
59
|
http_version:
|
56
|
-
recorded_at: Tue,
|
60
|
+
recorded_at: Tue, 28 Aug 2018 21:41:35 GMT
|
57
61
|
recorded_with: VCR 2.9.3
|
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri:
|
5
|
+
uri: https://swapi.co/api/films/
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Tatooine Ruby Gem -
|
11
|
+
- Tatooine Ruby Gem - 1.0.1
|
12
12
|
Accept-Encoding:
|
13
13
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
14
14
|
Accept:
|
@@ -19,7 +19,7 @@ http_interactions:
|
|
19
19
|
message: OK
|
20
20
|
headers:
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Tue, 28 Aug 2018 21:41:30 GMT
|
23
23
|
Content-Type:
|
24
24
|
- application/json
|
25
25
|
Transfer-Encoding:
|
@@ -27,8 +27,10 @@ http_interactions:
|
|
27
27
|
Connection:
|
28
28
|
- keep-alive
|
29
29
|
Set-Cookie:
|
30
|
-
- __cfduid=
|
31
|
-
|
30
|
+
- __cfduid=d38350d940708f4d3a443bc3f43c557201535492489; expires=Wed, 28-Aug-19
|
31
|
+
21:41:29 GMT; path=/; domain=.swapi.co; HttpOnly; Secure
|
32
|
+
Etag:
|
33
|
+
- W/"a6f57b83572279727b3a9208d0653a82"
|
32
34
|
Allow:
|
33
35
|
- GET, HEAD, OPTIONS
|
34
36
|
X-Frame-Options:
|
@@ -37,13 +39,15 @@ http_interactions:
|
|
37
39
|
- Accept, Cookie
|
38
40
|
Via:
|
39
41
|
- 1.1 vegur
|
42
|
+
Expect-Ct:
|
43
|
+
- max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
|
40
44
|
Server:
|
41
|
-
- cloudflare
|
45
|
+
- cloudflare
|
42
46
|
Cf-Ray:
|
43
|
-
-
|
47
|
+
- 4519f13b7a77407c-HAM
|
44
48
|
body:
|
45
|
-
encoding:
|
46
|
-
string: '{"count":
|
49
|
+
encoding: ASCII-8BIT
|
50
|
+
string: '{"count":7,"next":null,"previous":null,"results":[{"title":"A New Hope","episode_id":4,"opening_crawl":"It
|
47
51
|
is a period of civil war.\r\nRebel spaceships, striking\r\nfrom a hidden base,
|
48
52
|
have won\r\ntheir first victory against\r\nthe evil Galactic Empire.\r\n\r\nDuring
|
49
53
|
the battle, Rebel\r\nspies managed to steal secret\r\nplans to the Empire''s\r\nultimate
|
@@ -51,33 +55,7 @@ http_interactions:
|
|
51
55
|
destroy an entire planet.\r\n\r\nPursued by the Empire''s\r\nsinister agents,
|
52
56
|
Princess\r\nLeia races home aboard her\r\nstarship, custodian of the\r\nstolen
|
53
57
|
plans that can save her\r\npeople and restore\r\nfreedom to the galaxy....","director":"George
|
54
|
-
Lucas","producer":"Gary Kurtz, Rick McCallum","characters":["
|
55
|
-
Empire Strikes Back","episode_id":5,"opening_crawl":"It is a dark time for
|
56
|
-
the\r\nRebellion. Although the Death\r\nStar has been destroyed,\r\nImperial
|
57
|
-
troops have driven the\r\nRebel forces from their hidden\r\nbase and pursued
|
58
|
-
them across\r\nthe galaxy.\r\n\r\nEvading the dreaded Imperial\r\nStarfleet,
|
59
|
-
a group of freedom\r\nfighters led by Luke Skywalker\r\nhas established a
|
60
|
-
new secret\r\nbase on the remote ice world\r\nof Hoth.\r\n\r\nThe evil lord
|
61
|
-
Darth Vader,\r\nobsessed with finding young\r\nSkywalker, has dispatched\r\nthousands
|
62
|
-
of remote probes into\r\nthe far reaches of space....","director":"Irvin Kershner","producer":"Gary
|
63
|
-
Kutz, Rick McCallum","characters":["http://swapi.co/api/people/1/","http://swapi.co/api/people/2/","http://swapi.co/api/people/3/","http://swapi.co/api/people/4/","http://swapi.co/api/people/5/","http://swapi.co/api/people/10/","http://swapi.co/api/people/13/","http://swapi.co/api/people/14/","http://swapi.co/api/people/18/","http://swapi.co/api/people/20/","http://swapi.co/api/people/21/","http://swapi.co/api/people/22/","http://swapi.co/api/people/23/","http://swapi.co/api/people/24/","http://swapi.co/api/people/25/","http://swapi.co/api/people/26/"],"planets":["http://swapi.co/api/planets/4/","http://swapi.co/api/planets/5/","http://swapi.co/api/planets/6/","http://swapi.co/api/planets/27/"],"starships":["http://swapi.co/api/starships/10/","http://swapi.co/api/starships/11/","http://swapi.co/api/starships/12/","http://swapi.co/api/starships/15/","http://swapi.co/api/starships/21/","http://swapi.co/api/starships/22/","http://swapi.co/api/starships/23/","http://swapi.co/api/starships/3/","http://swapi.co/api/starships/17/"],"vehicles":["http://swapi.co/api/vehicles/14/","http://swapi.co/api/vehicles/20/","http://swapi.co/api/vehicles/16/","http://swapi.co/api/vehicles/18/","http://swapi.co/api/vehicles/19/","http://swapi.co/api/vehicles/8/"],"species":["http://swapi.co/api/species/2/","http://swapi.co/api/species/6/","http://swapi.co/api/species/7/","http://swapi.co/api/species/1/","http://swapi.co/api/species/3/"],"created":"2014-12-12T11:26:24.656000Z","edited":"2014-12-15T13:07:53.386000Z","url":"http://swapi.co/api/films/2/"},{"title":"Return
|
64
|
-
of the Jedi","episode_id":6,"opening_crawl":"Luke Skywalker has returned to\r\nhis
|
65
|
-
home planet of Tatooine in\r\nan attempt to rescue his\r\nfriend Han Solo
|
66
|
-
from the\r\nclutches of the vile gangster\r\nJabba the Hutt.\r\n\r\nLittle
|
67
|
-
does Luke know that the\r\nGALACTIC EMPIRE has secretly\r\nbegun construction
|
68
|
-
on a new\r\narmored space station even\r\nmore powerful than the first\r\ndreaded
|
69
|
-
Death Star.\r\n\r\nWhen completed, this ultimate\r\nweapon will spell certain
|
70
|
-
doom\r\nfor the small band of rebels\r\nstruggling to restore freedom\r\nto
|
71
|
-
the galaxy...","director":"Richard Marquand","producer":"Howard G. Kazanjian,
|
72
|
-
George Lucas, Rick McCallum","characters":["http://swapi.co/api/people/1/","http://swapi.co/api/people/2/","http://swapi.co/api/people/3/","http://swapi.co/api/people/4/","http://swapi.co/api/people/5/","http://swapi.co/api/people/10/","http://swapi.co/api/people/13/","http://swapi.co/api/people/14/","http://swapi.co/api/people/16/","http://swapi.co/api/people/18/","http://swapi.co/api/people/20/","http://swapi.co/api/people/21/","http://swapi.co/api/people/22/","http://swapi.co/api/people/25/","http://swapi.co/api/people/27/","http://swapi.co/api/people/28/","http://swapi.co/api/people/29/","http://swapi.co/api/people/30/","http://swapi.co/api/people/31/","http://swapi.co/api/people/45/"],"planets":["http://swapi.co/api/planets/5/","http://swapi.co/api/planets/7/","http://swapi.co/api/planets/8/","http://swapi.co/api/planets/9/","http://swapi.co/api/planets/1/"],"starships":["http://swapi.co/api/starships/10/","http://swapi.co/api/starships/11/","http://swapi.co/api/starships/12/","http://swapi.co/api/starships/15/","http://swapi.co/api/starships/22/","http://swapi.co/api/starships/23/","http://swapi.co/api/starships/27/","http://swapi.co/api/starships/28/","http://swapi.co/api/starships/29/","http://swapi.co/api/starships/3/","http://swapi.co/api/starships/17/","http://swapi.co/api/starships/2/"],"vehicles":["http://swapi.co/api/vehicles/16/","http://swapi.co/api/vehicles/25/","http://swapi.co/api/vehicles/24/","http://swapi.co/api/vehicles/26/","http://swapi.co/api/vehicles/18/","http://swapi.co/api/vehicles/19/","http://swapi.co/api/vehicles/30/","http://swapi.co/api/vehicles/8/"],"species":["http://swapi.co/api/species/2/","http://swapi.co/api/species/5/","http://swapi.co/api/species/6/","http://swapi.co/api/species/8/","http://swapi.co/api/species/9/","http://swapi.co/api/species/10/","http://swapi.co/api/species/15/","http://swapi.co/api/species/1/","http://swapi.co/api/species/3/"],"created":"2014-12-18T10:39:33.255000Z","edited":"2014-12-20T09:48:37.462000Z","url":"http://swapi.co/api/films/3/"},{"title":"The
|
73
|
-
Phantom Menace","episode_id":1,"opening_crawl":"Turmoil has engulfed the\r\nGalactic
|
74
|
-
Republic. The taxation\r\nof trade routes to outlying star\r\nsystems is in
|
75
|
-
dispute.\r\n\r\nHoping to resolve the matter\r\nwith a blockade of deadly\r\nbattleships,
|
76
|
-
the greedy Trade\r\nFederation has stopped all\r\nshipping to the small planet\r\nof
|
77
|
-
Naboo.\r\n\r\nWhile the Congress of the\r\nRepublic endlessly debates\r\nthis
|
78
|
-
alarming chain of events,\r\nthe Supreme Chancellor has\r\nsecretly dispatched
|
79
|
-
two Jedi\r\nKnights, the guardians of\r\npeace and justice in the\r\ngalaxy,
|
80
|
-
to settle the conflict....","director":"George Lucas","producer":"Rick McCallum","characters":["http://swapi.co/api/people/2/","http://swapi.co/api/people/3/","http://swapi.co/api/people/10/","http://swapi.co/api/people/11/","http://swapi.co/api/people/16/","http://swapi.co/api/people/20/","http://swapi.co/api/people/21/","http://swapi.co/api/people/32/","http://swapi.co/api/people/33/","http://swapi.co/api/people/34/","http://swapi.co/api/people/35/","http://swapi.co/api/people/36/","http://swapi.co/api/people/37/","http://swapi.co/api/people/38/","http://swapi.co/api/people/39/","http://swapi.co/api/people/40/","http://swapi.co/api/people/41/","http://swapi.co/api/people/42/","http://swapi.co/api/people/43/","http://swapi.co/api/people/44/","http://swapi.co/api/people/46/","http://swapi.co/api/people/47/","http://swapi.co/api/people/48/","http://swapi.co/api/people/49/","http://swapi.co/api/people/50/","http://swapi.co/api/people/51/","http://swapi.co/api/people/52/","http://swapi.co/api/people/53/","http://swapi.co/api/people/54/","http://swapi.co/api/people/55/","http://swapi.co/api/people/56/","http://swapi.co/api/people/57/","http://swapi.co/api/people/58/","http://swapi.co/api/people/59/"],"planets":["http://swapi.co/api/planets/8/","http://swapi.co/api/planets/9/","http://swapi.co/api/planets/1/"],"starships":["http://swapi.co/api/starships/40/","http://swapi.co/api/starships/41/","http://swapi.co/api/starships/31/","http://swapi.co/api/starships/32/","http://swapi.co/api/starships/39/"],"vehicles":["http://swapi.co/api/vehicles/38/","http://swapi.co/api/vehicles/36/","http://swapi.co/api/vehicles/37/","http://swapi.co/api/vehicles/34/","http://swapi.co/api/vehicles/35/","http://swapi.co/api/vehicles/33/","http://swapi.co/api/vehicles/42/"],"species":["http://swapi.co/api/species/2/","http://swapi.co/api/species/6/","http://swapi.co/api/species/11/","http://swapi.co/api/species/12/","http://swapi.co/api/species/13/","http://swapi.co/api/species/14/","http://swapi.co/api/species/15/","http://swapi.co/api/species/16/","http://swapi.co/api/species/17/","http://swapi.co/api/species/18/","http://swapi.co/api/species/19/","http://swapi.co/api/species/20/","http://swapi.co/api/species/21/","http://swapi.co/api/species/22/","http://swapi.co/api/species/23/","http://swapi.co/api/species/24/","http://swapi.co/api/species/25/","http://swapi.co/api/species/26/","http://swapi.co/api/species/27/","http://swapi.co/api/species/1/"],"created":"2014-12-19T16:52:55.740000Z","edited":"2014-12-20T10:54:07.216000Z","url":"http://swapi.co/api/films/4/"},{"title":"Attack
|
58
|
+
Lucas","producer":"Gary Kurtz, Rick McCallum","release_date":"1977-05-25","characters":["https://swapi.co/api/people/1/","https://swapi.co/api/people/2/","https://swapi.co/api/people/3/","https://swapi.co/api/people/4/","https://swapi.co/api/people/5/","https://swapi.co/api/people/6/","https://swapi.co/api/people/7/","https://swapi.co/api/people/8/","https://swapi.co/api/people/9/","https://swapi.co/api/people/10/","https://swapi.co/api/people/12/","https://swapi.co/api/people/13/","https://swapi.co/api/people/14/","https://swapi.co/api/people/15/","https://swapi.co/api/people/16/","https://swapi.co/api/people/18/","https://swapi.co/api/people/19/","https://swapi.co/api/people/81/"],"planets":["https://swapi.co/api/planets/2/","https://swapi.co/api/planets/3/","https://swapi.co/api/planets/1/"],"starships":["https://swapi.co/api/starships/2/","https://swapi.co/api/starships/3/","https://swapi.co/api/starships/5/","https://swapi.co/api/starships/9/","https://swapi.co/api/starships/10/","https://swapi.co/api/starships/11/","https://swapi.co/api/starships/12/","https://swapi.co/api/starships/13/"],"vehicles":["https://swapi.co/api/vehicles/4/","https://swapi.co/api/vehicles/6/","https://swapi.co/api/vehicles/7/","https://swapi.co/api/vehicles/8/"],"species":["https://swapi.co/api/species/5/","https://swapi.co/api/species/3/","https://swapi.co/api/species/2/","https://swapi.co/api/species/1/","https://swapi.co/api/species/4/"],"created":"2014-12-10T14:23:31.880000Z","edited":"2015-04-11T09:46:52.774897Z","url":"https://swapi.co/api/films/1/"},{"title":"Attack
|
81
59
|
of the Clones","episode_id":2,"opening_crawl":"There is unrest in the Galactic\r\nSenate.
|
82
60
|
Several thousand solar\r\nsystems have declared their\r\nintentions to leave
|
83
61
|
the Republic.\r\n\r\nThis separatist movement,\r\nunder the leadership of
|
@@ -86,7 +64,15 @@ http_interactions:
|
|
86
64
|
Amidala, the former\r\nQueen of Naboo, is returning\r\nto the Galactic Senate
|
87
65
|
to vote\r\non the critical issue of creating\r\nan ARMY OF THE REPUBLIC\r\nto
|
88
66
|
assist the overwhelmed\r\nJedi....","director":"George Lucas","producer":"Rick
|
89
|
-
McCallum","characters":["
|
67
|
+
McCallum","release_date":"2002-05-16","characters":["https://swapi.co/api/people/2/","https://swapi.co/api/people/3/","https://swapi.co/api/people/6/","https://swapi.co/api/people/7/","https://swapi.co/api/people/10/","https://swapi.co/api/people/11/","https://swapi.co/api/people/20/","https://swapi.co/api/people/21/","https://swapi.co/api/people/22/","https://swapi.co/api/people/33/","https://swapi.co/api/people/36/","https://swapi.co/api/people/40/","https://swapi.co/api/people/43/","https://swapi.co/api/people/46/","https://swapi.co/api/people/51/","https://swapi.co/api/people/52/","https://swapi.co/api/people/53/","https://swapi.co/api/people/58/","https://swapi.co/api/people/59/","https://swapi.co/api/people/60/","https://swapi.co/api/people/61/","https://swapi.co/api/people/62/","https://swapi.co/api/people/63/","https://swapi.co/api/people/64/","https://swapi.co/api/people/65/","https://swapi.co/api/people/66/","https://swapi.co/api/people/67/","https://swapi.co/api/people/68/","https://swapi.co/api/people/69/","https://swapi.co/api/people/70/","https://swapi.co/api/people/71/","https://swapi.co/api/people/72/","https://swapi.co/api/people/73/","https://swapi.co/api/people/74/","https://swapi.co/api/people/75/","https://swapi.co/api/people/76/","https://swapi.co/api/people/77/","https://swapi.co/api/people/78/","https://swapi.co/api/people/82/","https://swapi.co/api/people/35/"],"planets":["https://swapi.co/api/planets/8/","https://swapi.co/api/planets/9/","https://swapi.co/api/planets/10/","https://swapi.co/api/planets/11/","https://swapi.co/api/planets/1/"],"starships":["https://swapi.co/api/starships/21/","https://swapi.co/api/starships/39/","https://swapi.co/api/starships/43/","https://swapi.co/api/starships/47/","https://swapi.co/api/starships/48/","https://swapi.co/api/starships/49/","https://swapi.co/api/starships/32/","https://swapi.co/api/starships/52/","https://swapi.co/api/starships/58/"],"vehicles":["https://swapi.co/api/vehicles/4/","https://swapi.co/api/vehicles/44/","https://swapi.co/api/vehicles/45/","https://swapi.co/api/vehicles/46/","https://swapi.co/api/vehicles/50/","https://swapi.co/api/vehicles/51/","https://swapi.co/api/vehicles/53/","https://swapi.co/api/vehicles/54/","https://swapi.co/api/vehicles/55/","https://swapi.co/api/vehicles/56/","https://swapi.co/api/vehicles/57/"],"species":["https://swapi.co/api/species/32/","https://swapi.co/api/species/33/","https://swapi.co/api/species/2/","https://swapi.co/api/species/35/","https://swapi.co/api/species/6/","https://swapi.co/api/species/1/","https://swapi.co/api/species/12/","https://swapi.co/api/species/34/","https://swapi.co/api/species/13/","https://swapi.co/api/species/15/","https://swapi.co/api/species/28/","https://swapi.co/api/species/29/","https://swapi.co/api/species/30/","https://swapi.co/api/species/31/"],"created":"2014-12-20T10:57:57.886000Z","edited":"2015-04-11T09:45:01.623982Z","url":"https://swapi.co/api/films/5/"},{"title":"The
|
68
|
+
Phantom Menace","episode_id":1,"opening_crawl":"Turmoil has engulfed the\r\nGalactic
|
69
|
+
Republic. The taxation\r\nof trade routes to outlying star\r\nsystems is in
|
70
|
+
dispute.\r\n\r\nHoping to resolve the matter\r\nwith a blockade of deadly\r\nbattleships,
|
71
|
+
the greedy Trade\r\nFederation has stopped all\r\nshipping to the small planet\r\nof
|
72
|
+
Naboo.\r\n\r\nWhile the Congress of the\r\nRepublic endlessly debates\r\nthis
|
73
|
+
alarming chain of events,\r\nthe Supreme Chancellor has\r\nsecretly dispatched
|
74
|
+
two Jedi\r\nKnights, the guardians of\r\npeace and justice in the\r\ngalaxy,
|
75
|
+
to settle the conflict....","director":"George Lucas","producer":"Rick McCallum","release_date":"1999-05-19","characters":["https://swapi.co/api/people/2/","https://swapi.co/api/people/3/","https://swapi.co/api/people/10/","https://swapi.co/api/people/11/","https://swapi.co/api/people/16/","https://swapi.co/api/people/20/","https://swapi.co/api/people/21/","https://swapi.co/api/people/32/","https://swapi.co/api/people/33/","https://swapi.co/api/people/34/","https://swapi.co/api/people/36/","https://swapi.co/api/people/37/","https://swapi.co/api/people/38/","https://swapi.co/api/people/39/","https://swapi.co/api/people/40/","https://swapi.co/api/people/41/","https://swapi.co/api/people/42/","https://swapi.co/api/people/43/","https://swapi.co/api/people/44/","https://swapi.co/api/people/46/","https://swapi.co/api/people/48/","https://swapi.co/api/people/49/","https://swapi.co/api/people/50/","https://swapi.co/api/people/51/","https://swapi.co/api/people/52/","https://swapi.co/api/people/53/","https://swapi.co/api/people/54/","https://swapi.co/api/people/55/","https://swapi.co/api/people/56/","https://swapi.co/api/people/57/","https://swapi.co/api/people/58/","https://swapi.co/api/people/59/","https://swapi.co/api/people/47/","https://swapi.co/api/people/35/"],"planets":["https://swapi.co/api/planets/8/","https://swapi.co/api/planets/9/","https://swapi.co/api/planets/1/"],"starships":["https://swapi.co/api/starships/40/","https://swapi.co/api/starships/41/","https://swapi.co/api/starships/31/","https://swapi.co/api/starships/32/","https://swapi.co/api/starships/39/"],"vehicles":["https://swapi.co/api/vehicles/33/","https://swapi.co/api/vehicles/34/","https://swapi.co/api/vehicles/35/","https://swapi.co/api/vehicles/36/","https://swapi.co/api/vehicles/37/","https://swapi.co/api/vehicles/38/","https://swapi.co/api/vehicles/42/"],"species":["https://swapi.co/api/species/1/","https://swapi.co/api/species/2/","https://swapi.co/api/species/6/","https://swapi.co/api/species/11/","https://swapi.co/api/species/12/","https://swapi.co/api/species/13/","https://swapi.co/api/species/14/","https://swapi.co/api/species/15/","https://swapi.co/api/species/16/","https://swapi.co/api/species/17/","https://swapi.co/api/species/18/","https://swapi.co/api/species/19/","https://swapi.co/api/species/20/","https://swapi.co/api/species/21/","https://swapi.co/api/species/22/","https://swapi.co/api/species/23/","https://swapi.co/api/species/24/","https://swapi.co/api/species/25/","https://swapi.co/api/species/26/","https://swapi.co/api/species/27/"],"created":"2014-12-19T16:52:55.740000Z","edited":"2015-04-11T09:45:18.689301Z","url":"https://swapi.co/api/films/4/"},{"title":"Revenge
|
90
76
|
of the Sith","episode_id":3,"opening_crawl":"War! The Republic is crumbling\r\nunder
|
91
77
|
attacks by the ruthless\r\nSith Lord, Count Dooku.\r\nThere are heroes on
|
92
78
|
both sides.\r\nEvil is everywhere.\r\n\r\nIn a stunning move, the\r\nfiendish
|
@@ -95,7 +81,34 @@ http_interactions:
|
|
95
81
|
the Separatist Droid Army\r\nattempts to flee the besieged\r\ncapital with
|
96
82
|
their valuable\r\nhostage, two Jedi Knights lead a\r\ndesperate mission to
|
97
83
|
rescue the\r\ncaptive Chancellor....","director":"George Lucas","producer":"Rick
|
98
|
-
McCallum","characters":["
|
84
|
+
McCallum","release_date":"2005-05-19","characters":["https://swapi.co/api/people/1/","https://swapi.co/api/people/2/","https://swapi.co/api/people/3/","https://swapi.co/api/people/4/","https://swapi.co/api/people/5/","https://swapi.co/api/people/6/","https://swapi.co/api/people/7/","https://swapi.co/api/people/10/","https://swapi.co/api/people/11/","https://swapi.co/api/people/12/","https://swapi.co/api/people/13/","https://swapi.co/api/people/20/","https://swapi.co/api/people/21/","https://swapi.co/api/people/33/","https://swapi.co/api/people/46/","https://swapi.co/api/people/51/","https://swapi.co/api/people/52/","https://swapi.co/api/people/53/","https://swapi.co/api/people/54/","https://swapi.co/api/people/55/","https://swapi.co/api/people/56/","https://swapi.co/api/people/58/","https://swapi.co/api/people/63/","https://swapi.co/api/people/64/","https://swapi.co/api/people/67/","https://swapi.co/api/people/68/","https://swapi.co/api/people/75/","https://swapi.co/api/people/78/","https://swapi.co/api/people/79/","https://swapi.co/api/people/80/","https://swapi.co/api/people/81/","https://swapi.co/api/people/82/","https://swapi.co/api/people/83/","https://swapi.co/api/people/35/"],"planets":["https://swapi.co/api/planets/2/","https://swapi.co/api/planets/5/","https://swapi.co/api/planets/8/","https://swapi.co/api/planets/9/","https://swapi.co/api/planets/12/","https://swapi.co/api/planets/13/","https://swapi.co/api/planets/14/","https://swapi.co/api/planets/15/","https://swapi.co/api/planets/16/","https://swapi.co/api/planets/17/","https://swapi.co/api/planets/18/","https://swapi.co/api/planets/19/","https://swapi.co/api/planets/1/"],"starships":["https://swapi.co/api/starships/48/","https://swapi.co/api/starships/59/","https://swapi.co/api/starships/61/","https://swapi.co/api/starships/32/","https://swapi.co/api/starships/63/","https://swapi.co/api/starships/64/","https://swapi.co/api/starships/65/","https://swapi.co/api/starships/66/","https://swapi.co/api/starships/74/","https://swapi.co/api/starships/75/","https://swapi.co/api/starships/2/","https://swapi.co/api/starships/68/"],"vehicles":["https://swapi.co/api/vehicles/33/","https://swapi.co/api/vehicles/50/","https://swapi.co/api/vehicles/53/","https://swapi.co/api/vehicles/56/","https://swapi.co/api/vehicles/60/","https://swapi.co/api/vehicles/62/","https://swapi.co/api/vehicles/67/","https://swapi.co/api/vehicles/69/","https://swapi.co/api/vehicles/70/","https://swapi.co/api/vehicles/71/","https://swapi.co/api/vehicles/72/","https://swapi.co/api/vehicles/73/","https://swapi.co/api/vehicles/76/"],"species":["https://swapi.co/api/species/19/","https://swapi.co/api/species/33/","https://swapi.co/api/species/2/","https://swapi.co/api/species/3/","https://swapi.co/api/species/36/","https://swapi.co/api/species/37/","https://swapi.co/api/species/6/","https://swapi.co/api/species/1/","https://swapi.co/api/species/34/","https://swapi.co/api/species/15/","https://swapi.co/api/species/35/","https://swapi.co/api/species/20/","https://swapi.co/api/species/23/","https://swapi.co/api/species/24/","https://swapi.co/api/species/25/","https://swapi.co/api/species/26/","https://swapi.co/api/species/27/","https://swapi.co/api/species/28/","https://swapi.co/api/species/29/","https://swapi.co/api/species/30/"],"created":"2014-12-20T18:49:38.403000Z","edited":"2015-04-11T09:45:44.862122Z","url":"https://swapi.co/api/films/6/"},{"title":"Return
|
85
|
+
of the Jedi","episode_id":6,"opening_crawl":"Luke Skywalker has returned to\r\nhis
|
86
|
+
home planet of Tatooine in\r\nan attempt to rescue his\r\nfriend Han Solo
|
87
|
+
from the\r\nclutches of the vile gangster\r\nJabba the Hutt.\r\n\r\nLittle
|
88
|
+
does Luke know that the\r\nGALACTIC EMPIRE has secretly\r\nbegun construction
|
89
|
+
on a new\r\narmored space station even\r\nmore powerful than the first\r\ndreaded
|
90
|
+
Death Star.\r\n\r\nWhen completed, this ultimate\r\nweapon will spell certain
|
91
|
+
doom\r\nfor the small band of rebels\r\nstruggling to restore freedom\r\nto
|
92
|
+
the galaxy...","director":"Richard Marquand","producer":"Howard G. Kazanjian,
|
93
|
+
George Lucas, Rick McCallum","release_date":"1983-05-25","characters":["https://swapi.co/api/people/1/","https://swapi.co/api/people/2/","https://swapi.co/api/people/3/","https://swapi.co/api/people/4/","https://swapi.co/api/people/5/","https://swapi.co/api/people/10/","https://swapi.co/api/people/13/","https://swapi.co/api/people/14/","https://swapi.co/api/people/16/","https://swapi.co/api/people/18/","https://swapi.co/api/people/20/","https://swapi.co/api/people/21/","https://swapi.co/api/people/22/","https://swapi.co/api/people/25/","https://swapi.co/api/people/27/","https://swapi.co/api/people/28/","https://swapi.co/api/people/29/","https://swapi.co/api/people/30/","https://swapi.co/api/people/31/","https://swapi.co/api/people/45/"],"planets":["https://swapi.co/api/planets/5/","https://swapi.co/api/planets/7/","https://swapi.co/api/planets/8/","https://swapi.co/api/planets/9/","https://swapi.co/api/planets/1/"],"starships":["https://swapi.co/api/starships/15/","https://swapi.co/api/starships/10/","https://swapi.co/api/starships/11/","https://swapi.co/api/starships/12/","https://swapi.co/api/starships/22/","https://swapi.co/api/starships/23/","https://swapi.co/api/starships/27/","https://swapi.co/api/starships/28/","https://swapi.co/api/starships/29/","https://swapi.co/api/starships/3/","https://swapi.co/api/starships/17/","https://swapi.co/api/starships/2/"],"vehicles":["https://swapi.co/api/vehicles/8/","https://swapi.co/api/vehicles/16/","https://swapi.co/api/vehicles/18/","https://swapi.co/api/vehicles/19/","https://swapi.co/api/vehicles/24/","https://swapi.co/api/vehicles/25/","https://swapi.co/api/vehicles/26/","https://swapi.co/api/vehicles/30/"],"species":["https://swapi.co/api/species/1/","https://swapi.co/api/species/2/","https://swapi.co/api/species/3/","https://swapi.co/api/species/5/","https://swapi.co/api/species/6/","https://swapi.co/api/species/8/","https://swapi.co/api/species/9/","https://swapi.co/api/species/10/","https://swapi.co/api/species/15/"],"created":"2014-12-18T10:39:33.255000Z","edited":"2015-04-11T09:46:05.220365Z","url":"https://swapi.co/api/films/3/"},{"title":"The
|
94
|
+
Empire Strikes Back","episode_id":5,"opening_crawl":"It is a dark time for
|
95
|
+
the\r\nRebellion. Although the Death\r\nStar has been destroyed,\r\nImperial
|
96
|
+
troops have driven the\r\nRebel forces from their hidden\r\nbase and pursued
|
97
|
+
them across\r\nthe galaxy.\r\n\r\nEvading the dreaded Imperial\r\nStarfleet,
|
98
|
+
a group of freedom\r\nfighters led by Luke Skywalker\r\nhas established a
|
99
|
+
new secret\r\nbase on the remote ice world\r\nof Hoth.\r\n\r\nThe evil lord
|
100
|
+
Darth Vader,\r\nobsessed with finding young\r\nSkywalker, has dispatched\r\nthousands
|
101
|
+
of remote probes into\r\nthe far reaches of space....","director":"Irvin Kershner","producer":"Gary
|
102
|
+
Kurtz, Rick McCallum","release_date":"1980-05-17","characters":["https://swapi.co/api/people/1/","https://swapi.co/api/people/2/","https://swapi.co/api/people/3/","https://swapi.co/api/people/4/","https://swapi.co/api/people/5/","https://swapi.co/api/people/10/","https://swapi.co/api/people/13/","https://swapi.co/api/people/14/","https://swapi.co/api/people/18/","https://swapi.co/api/people/20/","https://swapi.co/api/people/21/","https://swapi.co/api/people/22/","https://swapi.co/api/people/23/","https://swapi.co/api/people/24/","https://swapi.co/api/people/25/","https://swapi.co/api/people/26/"],"planets":["https://swapi.co/api/planets/4/","https://swapi.co/api/planets/5/","https://swapi.co/api/planets/6/","https://swapi.co/api/planets/27/"],"starships":["https://swapi.co/api/starships/15/","https://swapi.co/api/starships/10/","https://swapi.co/api/starships/11/","https://swapi.co/api/starships/12/","https://swapi.co/api/starships/21/","https://swapi.co/api/starships/22/","https://swapi.co/api/starships/23/","https://swapi.co/api/starships/3/","https://swapi.co/api/starships/17/"],"vehicles":["https://swapi.co/api/vehicles/8/","https://swapi.co/api/vehicles/14/","https://swapi.co/api/vehicles/16/","https://swapi.co/api/vehicles/18/","https://swapi.co/api/vehicles/19/","https://swapi.co/api/vehicles/20/"],"species":["https://swapi.co/api/species/6/","https://swapi.co/api/species/7/","https://swapi.co/api/species/3/","https://swapi.co/api/species/2/","https://swapi.co/api/species/1/"],"created":"2014-12-12T11:26:24.656000Z","edited":"2017-04-19T10:57:29.544256Z","url":"https://swapi.co/api/films/2/"},{"title":"The
|
103
|
+
Force Awakens","episode_id":7,"opening_crawl":"Luke Skywalker has vanished.\r\nIn
|
104
|
+
his absence, the sinister\r\nFIRST ORDER has risen from\r\nthe ashes of the
|
105
|
+
Empire\r\nand will not rest until\r\nSkywalker, the last Jedi,\r\nhas been
|
106
|
+
destroyed.\r\n \r\nWith the support of the\r\nREPUBLIC, General Leia Organa\r\nleads
|
107
|
+
a brave RESISTANCE.\r\nShe is desperate to find her\r\nbrother Luke and gain
|
108
|
+
his\r\nhelp in restoring peace and\r\njustice to the galaxy.\r\n \r\nLeia
|
109
|
+
has sent her most daring\r\npilot on a secret mission\r\nto Jakku, where an
|
110
|
+
old ally\r\nhas discovered a clue to\r\nLuke''s whereabouts....","director":"J.
|
111
|
+
J. Abrams","producer":"Kathleen Kennedy, J. J. Abrams, Bryan Burk","release_date":"2015-12-11","characters":["https://swapi.co/api/people/1/","https://swapi.co/api/people/3/","https://swapi.co/api/people/5/","https://swapi.co/api/people/13/","https://swapi.co/api/people/14/","https://swapi.co/api/people/27/","https://swapi.co/api/people/84/","https://swapi.co/api/people/85/","https://swapi.co/api/people/86/","https://swapi.co/api/people/87/","https://swapi.co/api/people/88/"],"planets":["https://swapi.co/api/planets/61/"],"starships":["https://swapi.co/api/starships/77/","https://swapi.co/api/starships/10/"],"vehicles":[],"species":["https://swapi.co/api/species/3/","https://swapi.co/api/species/2/","https://swapi.co/api/species/1/"],"created":"2015-04-17T06:51:30.504780Z","edited":"2015-12-17T14:31:47.617768Z","url":"https://swapi.co/api/films/7/"}]}'
|
99
112
|
http_version:
|
100
|
-
recorded_at:
|
113
|
+
recorded_at: Tue, 28 Aug 2018 21:41:30 GMT
|
101
114
|
recorded_with: VCR 2.9.3
|
@@ -2,13 +2,13 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri:
|
5
|
+
uri: https://swapi.co/api/films/
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Tatooine Ruby Gem -
|
11
|
+
- Tatooine Ruby Gem - 1.0.1
|
12
12
|
Accept-Encoding:
|
13
13
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
14
14
|
Accept:
|
@@ -19,7 +19,7 @@ http_interactions:
|
|
19
19
|
message: OK
|
20
20
|
headers:
|
21
21
|
Date:
|
22
|
-
-
|
22
|
+
- Tue, 28 Aug 2018 21:41:31 GMT
|
23
23
|
Content-Type:
|
24
24
|
- application/json
|
25
25
|
Transfer-Encoding:
|
@@ -27,8 +27,10 @@ http_interactions:
|
|
27
27
|
Connection:
|
28
28
|
- keep-alive
|
29
29
|
Set-Cookie:
|
30
|
-
- __cfduid=
|
31
|
-
|
30
|
+
- __cfduid=d295fda71dffb593a9e1371daa3fe641c1535492490; expires=Wed, 28-Aug-19
|
31
|
+
21:41:30 GMT; path=/; domain=.swapi.co; HttpOnly; Secure
|
32
|
+
Etag:
|
33
|
+
- W/"a6f57b83572279727b3a9208d0653a82"
|
32
34
|
Allow:
|
33
35
|
- GET, HEAD, OPTIONS
|
34
36
|
X-Frame-Options:
|
@@ -37,13 +39,15 @@ http_interactions:
|
|
37
39
|
- Accept, Cookie
|
38
40
|
Via:
|
39
41
|
- 1.1 vegur
|
42
|
+
Expect-Ct:
|
43
|
+
- max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
|
40
44
|
Server:
|
41
|
-
- cloudflare
|
45
|
+
- cloudflare
|
42
46
|
Cf-Ray:
|
43
|
-
-
|
47
|
+
- 4519f1418cd540d0-HAM
|
44
48
|
body:
|
45
|
-
encoding:
|
46
|
-
string: '{"count":
|
49
|
+
encoding: ASCII-8BIT
|
50
|
+
string: '{"count":7,"next":null,"previous":null,"results":[{"title":"A New Hope","episode_id":4,"opening_crawl":"It
|
47
51
|
is a period of civil war.\r\nRebel spaceships, striking\r\nfrom a hidden base,
|
48
52
|
have won\r\ntheir first victory against\r\nthe evil Galactic Empire.\r\n\r\nDuring
|
49
53
|
the battle, Rebel\r\nspies managed to steal secret\r\nplans to the Empire''s\r\nultimate
|
@@ -51,33 +55,7 @@ http_interactions:
|
|
51
55
|
destroy an entire planet.\r\n\r\nPursued by the Empire''s\r\nsinister agents,
|
52
56
|
Princess\r\nLeia races home aboard her\r\nstarship, custodian of the\r\nstolen
|
53
57
|
plans that can save her\r\npeople and restore\r\nfreedom to the galaxy....","director":"George
|
54
|
-
Lucas","producer":"Gary Kurtz, Rick McCallum","characters":["
|
55
|
-
Empire Strikes Back","episode_id":5,"opening_crawl":"It is a dark time for
|
56
|
-
the\r\nRebellion. Although the Death\r\nStar has been destroyed,\r\nImperial
|
57
|
-
troops have driven the\r\nRebel forces from their hidden\r\nbase and pursued
|
58
|
-
them across\r\nthe galaxy.\r\n\r\nEvading the dreaded Imperial\r\nStarfleet,
|
59
|
-
a group of freedom\r\nfighters led by Luke Skywalker\r\nhas established a
|
60
|
-
new secret\r\nbase on the remote ice world\r\nof Hoth.\r\n\r\nThe evil lord
|
61
|
-
Darth Vader,\r\nobsessed with finding young\r\nSkywalker, has dispatched\r\nthousands
|
62
|
-
of remote probes into\r\nthe far reaches of space....","director":"Irvin Kershner","producer":"Gary
|
63
|
-
Kutz, Rick McCallum","characters":["http://swapi.co/api/people/1/","http://swapi.co/api/people/2/","http://swapi.co/api/people/3/","http://swapi.co/api/people/4/","http://swapi.co/api/people/5/","http://swapi.co/api/people/10/","http://swapi.co/api/people/13/","http://swapi.co/api/people/14/","http://swapi.co/api/people/18/","http://swapi.co/api/people/20/","http://swapi.co/api/people/21/","http://swapi.co/api/people/22/","http://swapi.co/api/people/23/","http://swapi.co/api/people/24/","http://swapi.co/api/people/25/","http://swapi.co/api/people/26/"],"planets":["http://swapi.co/api/planets/4/","http://swapi.co/api/planets/5/","http://swapi.co/api/planets/6/","http://swapi.co/api/planets/27/"],"starships":["http://swapi.co/api/starships/10/","http://swapi.co/api/starships/11/","http://swapi.co/api/starships/12/","http://swapi.co/api/starships/15/","http://swapi.co/api/starships/21/","http://swapi.co/api/starships/22/","http://swapi.co/api/starships/23/","http://swapi.co/api/starships/3/","http://swapi.co/api/starships/17/"],"vehicles":["http://swapi.co/api/vehicles/14/","http://swapi.co/api/vehicles/20/","http://swapi.co/api/vehicles/16/","http://swapi.co/api/vehicles/18/","http://swapi.co/api/vehicles/19/","http://swapi.co/api/vehicles/8/"],"species":["http://swapi.co/api/species/2/","http://swapi.co/api/species/6/","http://swapi.co/api/species/7/","http://swapi.co/api/species/1/","http://swapi.co/api/species/3/"],"created":"2014-12-12T11:26:24.656000Z","edited":"2014-12-15T13:07:53.386000Z","url":"http://swapi.co/api/films/2/"},{"title":"Return
|
64
|
-
of the Jedi","episode_id":6,"opening_crawl":"Luke Skywalker has returned to\r\nhis
|
65
|
-
home planet of Tatooine in\r\nan attempt to rescue his\r\nfriend Han Solo
|
66
|
-
from the\r\nclutches of the vile gangster\r\nJabba the Hutt.\r\n\r\nLittle
|
67
|
-
does Luke know that the\r\nGALACTIC EMPIRE has secretly\r\nbegun construction
|
68
|
-
on a new\r\narmored space station even\r\nmore powerful than the first\r\ndreaded
|
69
|
-
Death Star.\r\n\r\nWhen completed, this ultimate\r\nweapon will spell certain
|
70
|
-
doom\r\nfor the small band of rebels\r\nstruggling to restore freedom\r\nto
|
71
|
-
the galaxy...","director":"Richard Marquand","producer":"Howard G. Kazanjian,
|
72
|
-
George Lucas, Rick McCallum","characters":["http://swapi.co/api/people/1/","http://swapi.co/api/people/2/","http://swapi.co/api/people/3/","http://swapi.co/api/people/4/","http://swapi.co/api/people/5/","http://swapi.co/api/people/10/","http://swapi.co/api/people/13/","http://swapi.co/api/people/14/","http://swapi.co/api/people/16/","http://swapi.co/api/people/18/","http://swapi.co/api/people/20/","http://swapi.co/api/people/21/","http://swapi.co/api/people/22/","http://swapi.co/api/people/25/","http://swapi.co/api/people/27/","http://swapi.co/api/people/28/","http://swapi.co/api/people/29/","http://swapi.co/api/people/30/","http://swapi.co/api/people/31/","http://swapi.co/api/people/45/"],"planets":["http://swapi.co/api/planets/5/","http://swapi.co/api/planets/7/","http://swapi.co/api/planets/8/","http://swapi.co/api/planets/9/","http://swapi.co/api/planets/1/"],"starships":["http://swapi.co/api/starships/10/","http://swapi.co/api/starships/11/","http://swapi.co/api/starships/12/","http://swapi.co/api/starships/15/","http://swapi.co/api/starships/22/","http://swapi.co/api/starships/23/","http://swapi.co/api/starships/27/","http://swapi.co/api/starships/28/","http://swapi.co/api/starships/29/","http://swapi.co/api/starships/3/","http://swapi.co/api/starships/17/","http://swapi.co/api/starships/2/"],"vehicles":["http://swapi.co/api/vehicles/16/","http://swapi.co/api/vehicles/25/","http://swapi.co/api/vehicles/24/","http://swapi.co/api/vehicles/26/","http://swapi.co/api/vehicles/18/","http://swapi.co/api/vehicles/19/","http://swapi.co/api/vehicles/30/","http://swapi.co/api/vehicles/8/"],"species":["http://swapi.co/api/species/2/","http://swapi.co/api/species/5/","http://swapi.co/api/species/6/","http://swapi.co/api/species/8/","http://swapi.co/api/species/9/","http://swapi.co/api/species/10/","http://swapi.co/api/species/15/","http://swapi.co/api/species/1/","http://swapi.co/api/species/3/"],"created":"2014-12-18T10:39:33.255000Z","edited":"2014-12-20T09:48:37.462000Z","url":"http://swapi.co/api/films/3/"},{"title":"The
|
73
|
-
Phantom Menace","episode_id":1,"opening_crawl":"Turmoil has engulfed the\r\nGalactic
|
74
|
-
Republic. The taxation\r\nof trade routes to outlying star\r\nsystems is in
|
75
|
-
dispute.\r\n\r\nHoping to resolve the matter\r\nwith a blockade of deadly\r\nbattleships,
|
76
|
-
the greedy Trade\r\nFederation has stopped all\r\nshipping to the small planet\r\nof
|
77
|
-
Naboo.\r\n\r\nWhile the Congress of the\r\nRepublic endlessly debates\r\nthis
|
78
|
-
alarming chain of events,\r\nthe Supreme Chancellor has\r\nsecretly dispatched
|
79
|
-
two Jedi\r\nKnights, the guardians of\r\npeace and justice in the\r\ngalaxy,
|
80
|
-
to settle the conflict....","director":"George Lucas","producer":"Rick McCallum","characters":["http://swapi.co/api/people/2/","http://swapi.co/api/people/3/","http://swapi.co/api/people/10/","http://swapi.co/api/people/11/","http://swapi.co/api/people/16/","http://swapi.co/api/people/20/","http://swapi.co/api/people/21/","http://swapi.co/api/people/32/","http://swapi.co/api/people/33/","http://swapi.co/api/people/34/","http://swapi.co/api/people/35/","http://swapi.co/api/people/36/","http://swapi.co/api/people/37/","http://swapi.co/api/people/38/","http://swapi.co/api/people/39/","http://swapi.co/api/people/40/","http://swapi.co/api/people/41/","http://swapi.co/api/people/42/","http://swapi.co/api/people/43/","http://swapi.co/api/people/44/","http://swapi.co/api/people/46/","http://swapi.co/api/people/47/","http://swapi.co/api/people/48/","http://swapi.co/api/people/49/","http://swapi.co/api/people/50/","http://swapi.co/api/people/51/","http://swapi.co/api/people/52/","http://swapi.co/api/people/53/","http://swapi.co/api/people/54/","http://swapi.co/api/people/55/","http://swapi.co/api/people/56/","http://swapi.co/api/people/57/","http://swapi.co/api/people/58/","http://swapi.co/api/people/59/"],"planets":["http://swapi.co/api/planets/8/","http://swapi.co/api/planets/9/","http://swapi.co/api/planets/1/"],"starships":["http://swapi.co/api/starships/40/","http://swapi.co/api/starships/41/","http://swapi.co/api/starships/31/","http://swapi.co/api/starships/32/","http://swapi.co/api/starships/39/"],"vehicles":["http://swapi.co/api/vehicles/38/","http://swapi.co/api/vehicles/36/","http://swapi.co/api/vehicles/37/","http://swapi.co/api/vehicles/34/","http://swapi.co/api/vehicles/35/","http://swapi.co/api/vehicles/33/","http://swapi.co/api/vehicles/42/"],"species":["http://swapi.co/api/species/2/","http://swapi.co/api/species/6/","http://swapi.co/api/species/11/","http://swapi.co/api/species/12/","http://swapi.co/api/species/13/","http://swapi.co/api/species/14/","http://swapi.co/api/species/15/","http://swapi.co/api/species/16/","http://swapi.co/api/species/17/","http://swapi.co/api/species/18/","http://swapi.co/api/species/19/","http://swapi.co/api/species/20/","http://swapi.co/api/species/21/","http://swapi.co/api/species/22/","http://swapi.co/api/species/23/","http://swapi.co/api/species/24/","http://swapi.co/api/species/25/","http://swapi.co/api/species/26/","http://swapi.co/api/species/27/","http://swapi.co/api/species/1/"],"created":"2014-12-19T16:52:55.740000Z","edited":"2014-12-20T10:54:07.216000Z","url":"http://swapi.co/api/films/4/"},{"title":"Attack
|
58
|
+
Lucas","producer":"Gary Kurtz, Rick McCallum","release_date":"1977-05-25","characters":["https://swapi.co/api/people/1/","https://swapi.co/api/people/2/","https://swapi.co/api/people/3/","https://swapi.co/api/people/4/","https://swapi.co/api/people/5/","https://swapi.co/api/people/6/","https://swapi.co/api/people/7/","https://swapi.co/api/people/8/","https://swapi.co/api/people/9/","https://swapi.co/api/people/10/","https://swapi.co/api/people/12/","https://swapi.co/api/people/13/","https://swapi.co/api/people/14/","https://swapi.co/api/people/15/","https://swapi.co/api/people/16/","https://swapi.co/api/people/18/","https://swapi.co/api/people/19/","https://swapi.co/api/people/81/"],"planets":["https://swapi.co/api/planets/2/","https://swapi.co/api/planets/3/","https://swapi.co/api/planets/1/"],"starships":["https://swapi.co/api/starships/2/","https://swapi.co/api/starships/3/","https://swapi.co/api/starships/5/","https://swapi.co/api/starships/9/","https://swapi.co/api/starships/10/","https://swapi.co/api/starships/11/","https://swapi.co/api/starships/12/","https://swapi.co/api/starships/13/"],"vehicles":["https://swapi.co/api/vehicles/4/","https://swapi.co/api/vehicles/6/","https://swapi.co/api/vehicles/7/","https://swapi.co/api/vehicles/8/"],"species":["https://swapi.co/api/species/5/","https://swapi.co/api/species/3/","https://swapi.co/api/species/2/","https://swapi.co/api/species/1/","https://swapi.co/api/species/4/"],"created":"2014-12-10T14:23:31.880000Z","edited":"2015-04-11T09:46:52.774897Z","url":"https://swapi.co/api/films/1/"},{"title":"Attack
|
81
59
|
of the Clones","episode_id":2,"opening_crawl":"There is unrest in the Galactic\r\nSenate.
|
82
60
|
Several thousand solar\r\nsystems have declared their\r\nintentions to leave
|
83
61
|
the Republic.\r\n\r\nThis separatist movement,\r\nunder the leadership of
|
@@ -86,7 +64,15 @@ http_interactions:
|
|
86
64
|
Amidala, the former\r\nQueen of Naboo, is returning\r\nto the Galactic Senate
|
87
65
|
to vote\r\non the critical issue of creating\r\nan ARMY OF THE REPUBLIC\r\nto
|
88
66
|
assist the overwhelmed\r\nJedi....","director":"George Lucas","producer":"Rick
|
89
|
-
McCallum","characters":["
|
67
|
+
McCallum","release_date":"2002-05-16","characters":["https://swapi.co/api/people/2/","https://swapi.co/api/people/3/","https://swapi.co/api/people/6/","https://swapi.co/api/people/7/","https://swapi.co/api/people/10/","https://swapi.co/api/people/11/","https://swapi.co/api/people/20/","https://swapi.co/api/people/21/","https://swapi.co/api/people/22/","https://swapi.co/api/people/33/","https://swapi.co/api/people/36/","https://swapi.co/api/people/40/","https://swapi.co/api/people/43/","https://swapi.co/api/people/46/","https://swapi.co/api/people/51/","https://swapi.co/api/people/52/","https://swapi.co/api/people/53/","https://swapi.co/api/people/58/","https://swapi.co/api/people/59/","https://swapi.co/api/people/60/","https://swapi.co/api/people/61/","https://swapi.co/api/people/62/","https://swapi.co/api/people/63/","https://swapi.co/api/people/64/","https://swapi.co/api/people/65/","https://swapi.co/api/people/66/","https://swapi.co/api/people/67/","https://swapi.co/api/people/68/","https://swapi.co/api/people/69/","https://swapi.co/api/people/70/","https://swapi.co/api/people/71/","https://swapi.co/api/people/72/","https://swapi.co/api/people/73/","https://swapi.co/api/people/74/","https://swapi.co/api/people/75/","https://swapi.co/api/people/76/","https://swapi.co/api/people/77/","https://swapi.co/api/people/78/","https://swapi.co/api/people/82/","https://swapi.co/api/people/35/"],"planets":["https://swapi.co/api/planets/8/","https://swapi.co/api/planets/9/","https://swapi.co/api/planets/10/","https://swapi.co/api/planets/11/","https://swapi.co/api/planets/1/"],"starships":["https://swapi.co/api/starships/21/","https://swapi.co/api/starships/39/","https://swapi.co/api/starships/43/","https://swapi.co/api/starships/47/","https://swapi.co/api/starships/48/","https://swapi.co/api/starships/49/","https://swapi.co/api/starships/32/","https://swapi.co/api/starships/52/","https://swapi.co/api/starships/58/"],"vehicles":["https://swapi.co/api/vehicles/4/","https://swapi.co/api/vehicles/44/","https://swapi.co/api/vehicles/45/","https://swapi.co/api/vehicles/46/","https://swapi.co/api/vehicles/50/","https://swapi.co/api/vehicles/51/","https://swapi.co/api/vehicles/53/","https://swapi.co/api/vehicles/54/","https://swapi.co/api/vehicles/55/","https://swapi.co/api/vehicles/56/","https://swapi.co/api/vehicles/57/"],"species":["https://swapi.co/api/species/32/","https://swapi.co/api/species/33/","https://swapi.co/api/species/2/","https://swapi.co/api/species/35/","https://swapi.co/api/species/6/","https://swapi.co/api/species/1/","https://swapi.co/api/species/12/","https://swapi.co/api/species/34/","https://swapi.co/api/species/13/","https://swapi.co/api/species/15/","https://swapi.co/api/species/28/","https://swapi.co/api/species/29/","https://swapi.co/api/species/30/","https://swapi.co/api/species/31/"],"created":"2014-12-20T10:57:57.886000Z","edited":"2015-04-11T09:45:01.623982Z","url":"https://swapi.co/api/films/5/"},{"title":"The
|
68
|
+
Phantom Menace","episode_id":1,"opening_crawl":"Turmoil has engulfed the\r\nGalactic
|
69
|
+
Republic. The taxation\r\nof trade routes to outlying star\r\nsystems is in
|
70
|
+
dispute.\r\n\r\nHoping to resolve the matter\r\nwith a blockade of deadly\r\nbattleships,
|
71
|
+
the greedy Trade\r\nFederation has stopped all\r\nshipping to the small planet\r\nof
|
72
|
+
Naboo.\r\n\r\nWhile the Congress of the\r\nRepublic endlessly debates\r\nthis
|
73
|
+
alarming chain of events,\r\nthe Supreme Chancellor has\r\nsecretly dispatched
|
74
|
+
two Jedi\r\nKnights, the guardians of\r\npeace and justice in the\r\ngalaxy,
|
75
|
+
to settle the conflict....","director":"George Lucas","producer":"Rick McCallum","release_date":"1999-05-19","characters":["https://swapi.co/api/people/2/","https://swapi.co/api/people/3/","https://swapi.co/api/people/10/","https://swapi.co/api/people/11/","https://swapi.co/api/people/16/","https://swapi.co/api/people/20/","https://swapi.co/api/people/21/","https://swapi.co/api/people/32/","https://swapi.co/api/people/33/","https://swapi.co/api/people/34/","https://swapi.co/api/people/36/","https://swapi.co/api/people/37/","https://swapi.co/api/people/38/","https://swapi.co/api/people/39/","https://swapi.co/api/people/40/","https://swapi.co/api/people/41/","https://swapi.co/api/people/42/","https://swapi.co/api/people/43/","https://swapi.co/api/people/44/","https://swapi.co/api/people/46/","https://swapi.co/api/people/48/","https://swapi.co/api/people/49/","https://swapi.co/api/people/50/","https://swapi.co/api/people/51/","https://swapi.co/api/people/52/","https://swapi.co/api/people/53/","https://swapi.co/api/people/54/","https://swapi.co/api/people/55/","https://swapi.co/api/people/56/","https://swapi.co/api/people/57/","https://swapi.co/api/people/58/","https://swapi.co/api/people/59/","https://swapi.co/api/people/47/","https://swapi.co/api/people/35/"],"planets":["https://swapi.co/api/planets/8/","https://swapi.co/api/planets/9/","https://swapi.co/api/planets/1/"],"starships":["https://swapi.co/api/starships/40/","https://swapi.co/api/starships/41/","https://swapi.co/api/starships/31/","https://swapi.co/api/starships/32/","https://swapi.co/api/starships/39/"],"vehicles":["https://swapi.co/api/vehicles/33/","https://swapi.co/api/vehicles/34/","https://swapi.co/api/vehicles/35/","https://swapi.co/api/vehicles/36/","https://swapi.co/api/vehicles/37/","https://swapi.co/api/vehicles/38/","https://swapi.co/api/vehicles/42/"],"species":["https://swapi.co/api/species/1/","https://swapi.co/api/species/2/","https://swapi.co/api/species/6/","https://swapi.co/api/species/11/","https://swapi.co/api/species/12/","https://swapi.co/api/species/13/","https://swapi.co/api/species/14/","https://swapi.co/api/species/15/","https://swapi.co/api/species/16/","https://swapi.co/api/species/17/","https://swapi.co/api/species/18/","https://swapi.co/api/species/19/","https://swapi.co/api/species/20/","https://swapi.co/api/species/21/","https://swapi.co/api/species/22/","https://swapi.co/api/species/23/","https://swapi.co/api/species/24/","https://swapi.co/api/species/25/","https://swapi.co/api/species/26/","https://swapi.co/api/species/27/"],"created":"2014-12-19T16:52:55.740000Z","edited":"2015-04-11T09:45:18.689301Z","url":"https://swapi.co/api/films/4/"},{"title":"Revenge
|
90
76
|
of the Sith","episode_id":3,"opening_crawl":"War! The Republic is crumbling\r\nunder
|
91
77
|
attacks by the ruthless\r\nSith Lord, Count Dooku.\r\nThere are heroes on
|
92
78
|
both sides.\r\nEvil is everywhere.\r\n\r\nIn a stunning move, the\r\nfiendish
|
@@ -95,18 +81,45 @@ http_interactions:
|
|
95
81
|
the Separatist Droid Army\r\nattempts to flee the besieged\r\ncapital with
|
96
82
|
their valuable\r\nhostage, two Jedi Knights lead a\r\ndesperate mission to
|
97
83
|
rescue the\r\ncaptive Chancellor....","director":"George Lucas","producer":"Rick
|
98
|
-
McCallum","characters":["
|
84
|
+
McCallum","release_date":"2005-05-19","characters":["https://swapi.co/api/people/1/","https://swapi.co/api/people/2/","https://swapi.co/api/people/3/","https://swapi.co/api/people/4/","https://swapi.co/api/people/5/","https://swapi.co/api/people/6/","https://swapi.co/api/people/7/","https://swapi.co/api/people/10/","https://swapi.co/api/people/11/","https://swapi.co/api/people/12/","https://swapi.co/api/people/13/","https://swapi.co/api/people/20/","https://swapi.co/api/people/21/","https://swapi.co/api/people/33/","https://swapi.co/api/people/46/","https://swapi.co/api/people/51/","https://swapi.co/api/people/52/","https://swapi.co/api/people/53/","https://swapi.co/api/people/54/","https://swapi.co/api/people/55/","https://swapi.co/api/people/56/","https://swapi.co/api/people/58/","https://swapi.co/api/people/63/","https://swapi.co/api/people/64/","https://swapi.co/api/people/67/","https://swapi.co/api/people/68/","https://swapi.co/api/people/75/","https://swapi.co/api/people/78/","https://swapi.co/api/people/79/","https://swapi.co/api/people/80/","https://swapi.co/api/people/81/","https://swapi.co/api/people/82/","https://swapi.co/api/people/83/","https://swapi.co/api/people/35/"],"planets":["https://swapi.co/api/planets/2/","https://swapi.co/api/planets/5/","https://swapi.co/api/planets/8/","https://swapi.co/api/planets/9/","https://swapi.co/api/planets/12/","https://swapi.co/api/planets/13/","https://swapi.co/api/planets/14/","https://swapi.co/api/planets/15/","https://swapi.co/api/planets/16/","https://swapi.co/api/planets/17/","https://swapi.co/api/planets/18/","https://swapi.co/api/planets/19/","https://swapi.co/api/planets/1/"],"starships":["https://swapi.co/api/starships/48/","https://swapi.co/api/starships/59/","https://swapi.co/api/starships/61/","https://swapi.co/api/starships/32/","https://swapi.co/api/starships/63/","https://swapi.co/api/starships/64/","https://swapi.co/api/starships/65/","https://swapi.co/api/starships/66/","https://swapi.co/api/starships/74/","https://swapi.co/api/starships/75/","https://swapi.co/api/starships/2/","https://swapi.co/api/starships/68/"],"vehicles":["https://swapi.co/api/vehicles/33/","https://swapi.co/api/vehicles/50/","https://swapi.co/api/vehicles/53/","https://swapi.co/api/vehicles/56/","https://swapi.co/api/vehicles/60/","https://swapi.co/api/vehicles/62/","https://swapi.co/api/vehicles/67/","https://swapi.co/api/vehicles/69/","https://swapi.co/api/vehicles/70/","https://swapi.co/api/vehicles/71/","https://swapi.co/api/vehicles/72/","https://swapi.co/api/vehicles/73/","https://swapi.co/api/vehicles/76/"],"species":["https://swapi.co/api/species/19/","https://swapi.co/api/species/33/","https://swapi.co/api/species/2/","https://swapi.co/api/species/3/","https://swapi.co/api/species/36/","https://swapi.co/api/species/37/","https://swapi.co/api/species/6/","https://swapi.co/api/species/1/","https://swapi.co/api/species/34/","https://swapi.co/api/species/15/","https://swapi.co/api/species/35/","https://swapi.co/api/species/20/","https://swapi.co/api/species/23/","https://swapi.co/api/species/24/","https://swapi.co/api/species/25/","https://swapi.co/api/species/26/","https://swapi.co/api/species/27/","https://swapi.co/api/species/28/","https://swapi.co/api/species/29/","https://swapi.co/api/species/30/"],"created":"2014-12-20T18:49:38.403000Z","edited":"2015-04-11T09:45:44.862122Z","url":"https://swapi.co/api/films/6/"},{"title":"Return
|
85
|
+
of the Jedi","episode_id":6,"opening_crawl":"Luke Skywalker has returned to\r\nhis
|
86
|
+
home planet of Tatooine in\r\nan attempt to rescue his\r\nfriend Han Solo
|
87
|
+
from the\r\nclutches of the vile gangster\r\nJabba the Hutt.\r\n\r\nLittle
|
88
|
+
does Luke know that the\r\nGALACTIC EMPIRE has secretly\r\nbegun construction
|
89
|
+
on a new\r\narmored space station even\r\nmore powerful than the first\r\ndreaded
|
90
|
+
Death Star.\r\n\r\nWhen completed, this ultimate\r\nweapon will spell certain
|
91
|
+
doom\r\nfor the small band of rebels\r\nstruggling to restore freedom\r\nto
|
92
|
+
the galaxy...","director":"Richard Marquand","producer":"Howard G. Kazanjian,
|
93
|
+
George Lucas, Rick McCallum","release_date":"1983-05-25","characters":["https://swapi.co/api/people/1/","https://swapi.co/api/people/2/","https://swapi.co/api/people/3/","https://swapi.co/api/people/4/","https://swapi.co/api/people/5/","https://swapi.co/api/people/10/","https://swapi.co/api/people/13/","https://swapi.co/api/people/14/","https://swapi.co/api/people/16/","https://swapi.co/api/people/18/","https://swapi.co/api/people/20/","https://swapi.co/api/people/21/","https://swapi.co/api/people/22/","https://swapi.co/api/people/25/","https://swapi.co/api/people/27/","https://swapi.co/api/people/28/","https://swapi.co/api/people/29/","https://swapi.co/api/people/30/","https://swapi.co/api/people/31/","https://swapi.co/api/people/45/"],"planets":["https://swapi.co/api/planets/5/","https://swapi.co/api/planets/7/","https://swapi.co/api/planets/8/","https://swapi.co/api/planets/9/","https://swapi.co/api/planets/1/"],"starships":["https://swapi.co/api/starships/15/","https://swapi.co/api/starships/10/","https://swapi.co/api/starships/11/","https://swapi.co/api/starships/12/","https://swapi.co/api/starships/22/","https://swapi.co/api/starships/23/","https://swapi.co/api/starships/27/","https://swapi.co/api/starships/28/","https://swapi.co/api/starships/29/","https://swapi.co/api/starships/3/","https://swapi.co/api/starships/17/","https://swapi.co/api/starships/2/"],"vehicles":["https://swapi.co/api/vehicles/8/","https://swapi.co/api/vehicles/16/","https://swapi.co/api/vehicles/18/","https://swapi.co/api/vehicles/19/","https://swapi.co/api/vehicles/24/","https://swapi.co/api/vehicles/25/","https://swapi.co/api/vehicles/26/","https://swapi.co/api/vehicles/30/"],"species":["https://swapi.co/api/species/1/","https://swapi.co/api/species/2/","https://swapi.co/api/species/3/","https://swapi.co/api/species/5/","https://swapi.co/api/species/6/","https://swapi.co/api/species/8/","https://swapi.co/api/species/9/","https://swapi.co/api/species/10/","https://swapi.co/api/species/15/"],"created":"2014-12-18T10:39:33.255000Z","edited":"2015-04-11T09:46:05.220365Z","url":"https://swapi.co/api/films/3/"},{"title":"The
|
94
|
+
Empire Strikes Back","episode_id":5,"opening_crawl":"It is a dark time for
|
95
|
+
the\r\nRebellion. Although the Death\r\nStar has been destroyed,\r\nImperial
|
96
|
+
troops have driven the\r\nRebel forces from their hidden\r\nbase and pursued
|
97
|
+
them across\r\nthe galaxy.\r\n\r\nEvading the dreaded Imperial\r\nStarfleet,
|
98
|
+
a group of freedom\r\nfighters led by Luke Skywalker\r\nhas established a
|
99
|
+
new secret\r\nbase on the remote ice world\r\nof Hoth.\r\n\r\nThe evil lord
|
100
|
+
Darth Vader,\r\nobsessed with finding young\r\nSkywalker, has dispatched\r\nthousands
|
101
|
+
of remote probes into\r\nthe far reaches of space....","director":"Irvin Kershner","producer":"Gary
|
102
|
+
Kurtz, Rick McCallum","release_date":"1980-05-17","characters":["https://swapi.co/api/people/1/","https://swapi.co/api/people/2/","https://swapi.co/api/people/3/","https://swapi.co/api/people/4/","https://swapi.co/api/people/5/","https://swapi.co/api/people/10/","https://swapi.co/api/people/13/","https://swapi.co/api/people/14/","https://swapi.co/api/people/18/","https://swapi.co/api/people/20/","https://swapi.co/api/people/21/","https://swapi.co/api/people/22/","https://swapi.co/api/people/23/","https://swapi.co/api/people/24/","https://swapi.co/api/people/25/","https://swapi.co/api/people/26/"],"planets":["https://swapi.co/api/planets/4/","https://swapi.co/api/planets/5/","https://swapi.co/api/planets/6/","https://swapi.co/api/planets/27/"],"starships":["https://swapi.co/api/starships/15/","https://swapi.co/api/starships/10/","https://swapi.co/api/starships/11/","https://swapi.co/api/starships/12/","https://swapi.co/api/starships/21/","https://swapi.co/api/starships/22/","https://swapi.co/api/starships/23/","https://swapi.co/api/starships/3/","https://swapi.co/api/starships/17/"],"vehicles":["https://swapi.co/api/vehicles/8/","https://swapi.co/api/vehicles/14/","https://swapi.co/api/vehicles/16/","https://swapi.co/api/vehicles/18/","https://swapi.co/api/vehicles/19/","https://swapi.co/api/vehicles/20/"],"species":["https://swapi.co/api/species/6/","https://swapi.co/api/species/7/","https://swapi.co/api/species/3/","https://swapi.co/api/species/2/","https://swapi.co/api/species/1/"],"created":"2014-12-12T11:26:24.656000Z","edited":"2017-04-19T10:57:29.544256Z","url":"https://swapi.co/api/films/2/"},{"title":"The
|
103
|
+
Force Awakens","episode_id":7,"opening_crawl":"Luke Skywalker has vanished.\r\nIn
|
104
|
+
his absence, the sinister\r\nFIRST ORDER has risen from\r\nthe ashes of the
|
105
|
+
Empire\r\nand will not rest until\r\nSkywalker, the last Jedi,\r\nhas been
|
106
|
+
destroyed.\r\n \r\nWith the support of the\r\nREPUBLIC, General Leia Organa\r\nleads
|
107
|
+
a brave RESISTANCE.\r\nShe is desperate to find her\r\nbrother Luke and gain
|
108
|
+
his\r\nhelp in restoring peace and\r\njustice to the galaxy.\r\n \r\nLeia
|
109
|
+
has sent her most daring\r\npilot on a secret mission\r\nto Jakku, where an
|
110
|
+
old ally\r\nhas discovered a clue to\r\nLuke''s whereabouts....","director":"J.
|
111
|
+
J. Abrams","producer":"Kathleen Kennedy, J. J. Abrams, Bryan Burk","release_date":"2015-12-11","characters":["https://swapi.co/api/people/1/","https://swapi.co/api/people/3/","https://swapi.co/api/people/5/","https://swapi.co/api/people/13/","https://swapi.co/api/people/14/","https://swapi.co/api/people/27/","https://swapi.co/api/people/84/","https://swapi.co/api/people/85/","https://swapi.co/api/people/86/","https://swapi.co/api/people/87/","https://swapi.co/api/people/88/"],"planets":["https://swapi.co/api/planets/61/"],"starships":["https://swapi.co/api/starships/77/","https://swapi.co/api/starships/10/"],"vehicles":[],"species":["https://swapi.co/api/species/3/","https://swapi.co/api/species/2/","https://swapi.co/api/species/1/"],"created":"2015-04-17T06:51:30.504780Z","edited":"2015-12-17T14:31:47.617768Z","url":"https://swapi.co/api/films/7/"}]}'
|
99
112
|
http_version:
|
100
|
-
recorded_at:
|
113
|
+
recorded_at: Tue, 28 Aug 2018 21:41:31 GMT
|
101
114
|
- request:
|
102
115
|
method: get
|
103
|
-
uri:
|
116
|
+
uri: https://swapi.co/api/species/schema
|
104
117
|
body:
|
105
118
|
encoding: US-ASCII
|
106
119
|
string: ''
|
107
120
|
headers:
|
108
121
|
User-Agent:
|
109
|
-
- Tatooine Ruby Gem -
|
122
|
+
- Tatooine Ruby Gem - 1.0.1
|
110
123
|
Accept-Encoding:
|
111
124
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
112
125
|
Accept:
|
@@ -117,7 +130,7 @@ http_interactions:
|
|
117
130
|
message: OK
|
118
131
|
headers:
|
119
132
|
Date:
|
120
|
-
-
|
133
|
+
- Tue, 28 Aug 2018 21:41:31 GMT
|
121
134
|
Content-Type:
|
122
135
|
- application/json
|
123
136
|
Transfer-Encoding:
|
@@ -125,53 +138,61 @@ http_interactions:
|
|
125
138
|
Connection:
|
126
139
|
- keep-alive
|
127
140
|
Set-Cookie:
|
128
|
-
- __cfduid=
|
129
|
-
|
141
|
+
- __cfduid=da625c652bbd508c31d8db50d55b49c411535492491; expires=Wed, 28-Aug-19
|
142
|
+
21:41:31 GMT; path=/; domain=.swapi.co; HttpOnly; Secure
|
143
|
+
Etag:
|
144
|
+
- W/"f337a6fe1ab94b2cf42ee28d04fa3583"
|
130
145
|
X-Frame-Options:
|
131
146
|
- SAMEORIGIN
|
132
147
|
Via:
|
133
148
|
- 1.1 vegur
|
149
|
+
Expect-Ct:
|
150
|
+
- max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
|
134
151
|
Server:
|
135
|
-
- cloudflare
|
152
|
+
- cloudflare
|
136
153
|
Cf-Ray:
|
137
|
-
-
|
154
|
+
- 4519f148384340dc-HAM
|
138
155
|
body:
|
139
|
-
encoding:
|
140
|
-
string: '{"
|
141
|
-
"
|
142
|
-
{"
|
143
|
-
|
144
|
-
|
145
|
-
"
|
146
|
-
|
147
|
-
|
148
|
-
"
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
"
|
158
|
-
this species."
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
"
|
163
|
-
"
|
156
|
+
encoding: ASCII-8BIT
|
157
|
+
string: '{"$schema": "http://json-schema.org/draft-04/schema", "description":
|
158
|
+
"A species within the Star Wars universe", "type": "object", "properties":
|
159
|
+
{"language": {"description": "The language commonly spoken by this species.",
|
160
|
+
"type": "string"}, "hair_colors": {"description": "A comma-seperated string
|
161
|
+
of common hair colors for this species, none if this species does not typically
|
162
|
+
have hair.", "type": "string"}, "people": {"description": "An array of People
|
163
|
+
URL Resources that are a part of this species.", "type": "array"}, "url":
|
164
|
+
{"description": "The hypermedia URL of this resource.", "type": "string",
|
165
|
+
"format": "uri"}, "name": {"description": "The name of this species.", "type":
|
166
|
+
"string"}, "classification": {"description": "The classification of this species.",
|
167
|
+
"type": "string"}, "edited": {"description": "The ISO 8601 date format of
|
168
|
+
the time that this resource was edited.", "type": "string", "format": "date-time"},
|
169
|
+
"films": {"description": " An array of Film URL Resources that this species
|
170
|
+
has appeared in.", "type": "array"}, "skin_colors": {"description": "A comma-seperated
|
171
|
+
string of common skin colors for this species, none if this species does not
|
172
|
+
typically have skin.", "type": "string"}, "created": {"description": "The
|
173
|
+
ISO 8601 date format of the time that this resource was created.", "type":
|
174
|
+
"string", "format": "date-time"}, "homeworld": {"description": "The URL of
|
175
|
+
a planet resource, a planet that this species originates from.", "type": "string"},
|
176
|
+
"eye_colors": {"description": "A comma-seperated string of common eye colors
|
177
|
+
for this species, none if this species does not typically have eyes.", "type":
|
178
|
+
"string"}, "designation": {"description": "The designation of this species.",
|
179
|
+
"type": "string"}, "average_height": {"description": "The average height of
|
180
|
+
this person in centimeters.", "type": "string"}, "average_lifespan": {"description":
|
181
|
+
"The average lifespan of this species in years.", "type": "string"}}, "required":
|
182
|
+
["name", "classification", "designation", "average_height", "average_lifespan",
|
183
|
+
"hair_colors", "skin_colors", "eye_colors", "homeworld", "language", "people",
|
184
|
+
"films", "url", "created", "edited"], "title": "People"}'
|
164
185
|
http_version:
|
165
|
-
recorded_at:
|
186
|
+
recorded_at: Tue, 28 Aug 2018 21:41:31 GMT
|
166
187
|
- request:
|
167
188
|
method: get
|
168
|
-
uri:
|
189
|
+
uri: https://swapi.co/api/starships/schema
|
169
190
|
body:
|
170
191
|
encoding: US-ASCII
|
171
192
|
string: ''
|
172
193
|
headers:
|
173
194
|
User-Agent:
|
174
|
-
- Tatooine Ruby Gem -
|
195
|
+
- Tatooine Ruby Gem - 1.0.1
|
175
196
|
Accept-Encoding:
|
176
197
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
177
198
|
Accept:
|
@@ -182,7 +203,7 @@ http_interactions:
|
|
182
203
|
message: OK
|
183
204
|
headers:
|
184
205
|
Date:
|
185
|
-
-
|
206
|
+
- Tue, 28 Aug 2018 21:41:32 GMT
|
186
207
|
Content-Type:
|
187
208
|
- application/json
|
188
209
|
Transfer-Encoding:
|
@@ -190,65 +211,71 @@ http_interactions:
|
|
190
211
|
Connection:
|
191
212
|
- keep-alive
|
192
213
|
Set-Cookie:
|
193
|
-
- __cfduid=
|
194
|
-
|
214
|
+
- __cfduid=d4afdcf6227c9926acb93fab48842aef41535492492; expires=Wed, 28-Aug-19
|
215
|
+
21:41:32 GMT; path=/; domain=.swapi.co; HttpOnly; Secure
|
216
|
+
Etag:
|
217
|
+
- W/"fb983a0c2f424c141c4c48fe49d54035"
|
195
218
|
X-Frame-Options:
|
196
219
|
- SAMEORIGIN
|
197
220
|
Via:
|
198
221
|
- 1.1 vegur
|
222
|
+
Expect-Ct:
|
223
|
+
- max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
|
199
224
|
Server:
|
200
|
-
- cloudflare
|
225
|
+
- cloudflare
|
201
226
|
Cf-Ray:
|
202
|
-
-
|
227
|
+
- 4519f14b5da8409a-HAM
|
203
228
|
body:
|
204
|
-
encoding:
|
205
|
-
string: '{"
|
206
|
-
"
|
207
|
-
|
208
|
-
"
|
209
|
-
that this starship
|
210
|
-
"The number of personnel needed to run or pilot this starship."}, "starship_class":
|
211
|
-
{"type": "string", "description": "The class of this starship, such as Starfighter
|
212
|
-
or Deep Space Mobile Battlestation."}, "consumables": {"type": "string", "description":
|
229
|
+
encoding: ASCII-8BIT
|
230
|
+
string: '{"$schema": "http://json-schema.org/draft-04/schema", "description":
|
231
|
+
"A Starship", "type": "object", "properties": {"passengers": {"description":
|
232
|
+
"The number of non-essential people this starship can transport.", "type":
|
233
|
+
"string"}, "cargo_capacity": {"description": "The maximum number of kilograms
|
234
|
+
that this starship can transport.", "type": "string"}, "consumables": {"description":
|
213
235
|
"The maximum length of time that this starship can provide consumables for
|
214
|
-
|
215
|
-
"description": "The
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
"
|
223
|
-
|
224
|
-
|
225
|
-
"
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
"
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
of
|
236
|
-
|
237
|
-
"
|
236
|
+
its entire crew without having to resupply.", "type": "string"}, "model":
|
237
|
+
{"description": "The model or official name of this starship. Such as T-65
|
238
|
+
X-wing or DS-1 Orbital Battle Station.", "type": "string"}, "hyperdrive_rating":
|
239
|
+
{"description": "The class of this starships hyperdrive.", "type": "string"},
|
240
|
+
"manufacturer": {"description": "The manufacturer of this starship. Comma
|
241
|
+
seperated if more than one.", "type": "string"}, "url": {"description": "The
|
242
|
+
hypermedia URL of this resource.", "type": "string", "format": "uri"}, "name":
|
243
|
+
{"description": "The name of this starship. The common name, such as Death
|
244
|
+
Star.", "type": "string"}, "cost_in_credits": {"description": "The cost of
|
245
|
+
this starship new, in galactic credits.", "type": "string"}, "starship_class":
|
246
|
+
{"description": "The class of this starship, such as Starfighter or Deep Space
|
247
|
+
Mobile Battlestation.", "type": "string"}, "created": {"description": "The
|
248
|
+
ISO 8601 date format of the time that this resource was created.", "type":
|
249
|
+
"string", "format": "date-time"}, "edited": {"description": "the ISO 8601
|
250
|
+
date format of the time that this resource was edited.", "type": "string",
|
251
|
+
"format": "date-time"}, "films": {"description": "An array of Film URL Resources
|
252
|
+
that this starship has appeared in.", "type": "array"}, "length": {"description":
|
253
|
+
"The length of this starship in meters.", "type": "string"}, "MGLT": {"description":
|
254
|
+
"The Maximum number of Megalights this starship can travel in a standard hour.
|
255
|
+
A Megalight is a standard unit of distance and has never been defined before
|
256
|
+
within the Star Wars universe. This figure is only really useful for measuring
|
257
|
+
the difference in speed of starships. We can assume it is similar to AU, the
|
258
|
+
distance between our Sun (Sol) and Earth.", "type": "string"}, "pilots": {"description":
|
259
|
+
"An array of People URL Resources that this starship has been piloted by.",
|
260
|
+
"type": "array"}, "crew": {"description": "The number of personnel needed
|
261
|
+
to run or pilot this starship.", "type": "string"}, "max_atmosphering_speed":
|
262
|
+
{"description": "The maximum speed of this starship in atmosphere. n/a if
|
263
|
+
this starship is incapable of atmosphering flight.", "type": "string"}}, "required":
|
238
264
|
["name", "model", "manufacturer", "cost_in_credits", "length", "max_atmosphering_speed",
|
239
265
|
"crew", "passengers", "cargo_capacity", "consumables", "hyperdrive_rating",
|
240
|
-
"MGLT", "starship_class", "pilots", "films", "created", "edited", "url"]
|
266
|
+
"MGLT", "starship_class", "pilots", "films", "created", "edited", "url"],
|
267
|
+
"title": "Starship"}'
|
241
268
|
http_version:
|
242
|
-
recorded_at:
|
269
|
+
recorded_at: Tue, 28 Aug 2018 21:41:32 GMT
|
243
270
|
- request:
|
244
271
|
method: get
|
245
|
-
uri:
|
272
|
+
uri: https://swapi.co/api/planets/schema
|
246
273
|
body:
|
247
274
|
encoding: US-ASCII
|
248
275
|
string: ''
|
249
276
|
headers:
|
250
277
|
User-Agent:
|
251
|
-
- Tatooine Ruby Gem -
|
278
|
+
- Tatooine Ruby Gem - 1.0.1
|
252
279
|
Accept-Encoding:
|
253
280
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
254
281
|
Accept:
|
@@ -259,7 +286,7 @@ http_interactions:
|
|
259
286
|
message: OK
|
260
287
|
headers:
|
261
288
|
Date:
|
262
|
-
-
|
289
|
+
- Tue, 28 Aug 2018 21:41:32 GMT
|
263
290
|
Content-Type:
|
264
291
|
- application/json
|
265
292
|
Transfer-Encoding:
|
@@ -267,54 +294,59 @@ http_interactions:
|
|
267
294
|
Connection:
|
268
295
|
- keep-alive
|
269
296
|
Set-Cookie:
|
270
|
-
- __cfduid=
|
271
|
-
|
297
|
+
- __cfduid=dc28e0b6baeb475dced363fa92cb98bb61535492492; expires=Wed, 28-Aug-19
|
298
|
+
21:41:32 GMT; path=/; domain=.swapi.co; HttpOnly; Secure
|
299
|
+
Etag:
|
300
|
+
- W/"9ced10d65a09ba891dc66090432fbb9b"
|
272
301
|
X-Frame-Options:
|
273
302
|
- SAMEORIGIN
|
274
303
|
Via:
|
275
304
|
- 1.1 vegur
|
305
|
+
Expect-Ct:
|
306
|
+
- max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
|
276
307
|
Server:
|
277
|
-
- cloudflare
|
308
|
+
- cloudflare
|
278
309
|
Cf-Ray:
|
279
|
-
-
|
310
|
+
- 4519f14e9e0e40ca-HAM
|
280
311
|
body:
|
281
|
-
encoding:
|
282
|
-
string: '{"
|
283
|
-
"
|
284
|
-
"description": "the ISO 8601 date format of the time that this resource was
|
285
|
-
edited."}, "gravity": {"type": "string", "description": "A number denoting
|
286
|
-
the gravity of this planet. Where 1 is normal."}, "terrain": {"type": "string",
|
287
|
-
"description": "the terrain of this planet. Comma-seperated if diverse."},
|
288
|
-
"name": {"type": "string", "description": "The name of this planet."}, "url":
|
289
|
-
{"type": "string", "description": "The hypermedia URL of this resource."},
|
290
|
-
"climate": {"type": "string", "description": "The climate of this planet.
|
291
|
-
Comma-seperated if diverse."}, "rotation_period": {"type": "string", "description":
|
312
|
+
encoding: ASCII-8BIT
|
313
|
+
string: '{"$schema": "http://json-schema.org/draft-04/schema", "description":
|
314
|
+
"A planet.", "type": "object", "properties": {"rotation_period": {"description":
|
292
315
|
"The number of standard hours it takes for this planet to complete a single
|
293
|
-
rotation on
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
"
|
298
|
-
|
299
|
-
|
300
|
-
"
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
"
|
306
|
-
"
|
316
|
+
rotation on its axis.", "type": "string"}, "url": {"description": "The hypermedia
|
317
|
+
URL of this resource.", "type": "string", "format": "uri"}, "orbital_period":
|
318
|
+
{"description": "The number of standard days it takes for this planet to complete
|
319
|
+
a single orbit of its local star.", "type": "string"}, "population": {"description":
|
320
|
+
"The average populationof sentient beings inhabiting this planet.", "type":
|
321
|
+
"string"}, "diameter": {"description": "The diameter of this planet in kilometers.",
|
322
|
+
"type": "string"}, "name": {"description": "The name of this planet.", "type":
|
323
|
+
"string"}, "edited": {"description": "the ISO 8601 date format of the time
|
324
|
+
that this resource was edited.", "type": "string", "format": "date-time"},
|
325
|
+
"films": {"description": "An array of Film URL Resources that this planet
|
326
|
+
has appeared in.", "type": "array"}, "climate": {"description": "The climate
|
327
|
+
of this planet. Comma-seperated if diverse.", "type": "string"}, "surface_water":
|
328
|
+
{"description": "The percentage of the planet surface that is naturally occuring
|
329
|
+
water or bodies of water.", "type": "string"}, "residents": {"description":
|
330
|
+
"An array of People URL Resources that live on this planet.", "type": "array"},
|
331
|
+
"gravity": {"description": "A number denoting the gravity of this planet.
|
332
|
+
Where 1 is normal.", "type": "string"}, "terrain": {"description": "the terrain
|
333
|
+
of this planet. Comma-seperated if diverse.", "type": "string"}, "created":
|
334
|
+
{"description": "The ISO 8601 date format of the time that this resource was
|
335
|
+
created.", "type": "string", "format": "date-time"}}, "required": ["name",
|
336
|
+
"rotation_period", "orbital_period", "diameter", "climate", "gravity", "terrain",
|
337
|
+
"surface_water", "population", "residents", "films", "created", "edited",
|
338
|
+
"url"], "title": "Planet"}'
|
307
339
|
http_version:
|
308
|
-
recorded_at:
|
340
|
+
recorded_at: Tue, 28 Aug 2018 21:41:33 GMT
|
309
341
|
- request:
|
310
342
|
method: get
|
311
|
-
uri:
|
343
|
+
uri: https://swapi.co/api/vehicles/schema
|
312
344
|
body:
|
313
345
|
encoding: US-ASCII
|
314
346
|
string: ''
|
315
347
|
headers:
|
316
348
|
User-Agent:
|
317
|
-
- Tatooine Ruby Gem -
|
349
|
+
- Tatooine Ruby Gem - 1.0.1
|
318
350
|
Accept-Encoding:
|
319
351
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
320
352
|
Accept:
|
@@ -325,7 +357,7 @@ http_interactions:
|
|
325
357
|
message: OK
|
326
358
|
headers:
|
327
359
|
Date:
|
328
|
-
-
|
360
|
+
- Tue, 28 Aug 2018 21:41:33 GMT
|
329
361
|
Content-Type:
|
330
362
|
- application/json
|
331
363
|
Transfer-Encoding:
|
@@ -333,57 +365,62 @@ http_interactions:
|
|
333
365
|
Connection:
|
334
366
|
- keep-alive
|
335
367
|
Set-Cookie:
|
336
|
-
- __cfduid=
|
337
|
-
|
368
|
+
- __cfduid=d9c998bea9f2ce552000b0c7ef875470c1535492493; expires=Wed, 28-Aug-19
|
369
|
+
21:41:33 GMT; path=/; domain=.swapi.co; HttpOnly; Secure
|
370
|
+
Etag:
|
371
|
+
- W/"414ebd241370c675b716f65f855c8d4b"
|
338
372
|
X-Frame-Options:
|
339
373
|
- SAMEORIGIN
|
340
374
|
Via:
|
341
375
|
- 1.1 vegur
|
376
|
+
Expect-Ct:
|
377
|
+
- max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
|
342
378
|
Server:
|
343
|
-
- cloudflare
|
379
|
+
- cloudflare
|
344
380
|
Cf-Ray:
|
345
|
-
-
|
381
|
+
- 4519f151daef4076-HAM
|
346
382
|
body:
|
347
|
-
encoding:
|
348
|
-
string: '{"
|
349
|
-
"
|
350
|
-
|
351
|
-
"
|
352
|
-
that this vehicle
|
353
|
-
"The
|
354
|
-
|
355
|
-
|
356
|
-
"
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
such as Sand Crawler."
|
362
|
-
"
|
363
|
-
|
364
|
-
"
|
365
|
-
|
366
|
-
"
|
367
|
-
|
368
|
-
|
369
|
-
"
|
370
|
-
|
371
|
-
"
|
372
|
-
"
|
373
|
-
"
|
374
|
-
"
|
375
|
-
"
|
383
|
+
encoding: ASCII-8BIT
|
384
|
+
string: '{"$schema": "http://json-schema.org/draft-04/schema", "description":
|
385
|
+
"A vehicle.", "type": "object", "properties": {"passengers": {"description":
|
386
|
+
"The number of non-essential people this vehicle can transport.", "type":
|
387
|
+
"string"}, "cargo_capacity": {"description": "The maximum number of kilograms
|
388
|
+
that this vehicle can transport.", "type": "string"}, "consumables": {"description":
|
389
|
+
"The maximum length of time that this vehicle can provide consumables for
|
390
|
+
its entire crew without having to resupply.", "type": "string"}, "model":
|
391
|
+
{"description": "The model or official name of this vehicle. Such as All Terrain
|
392
|
+
Attack Transport.", "type": "string"}, "manufacturer": {"description": "The
|
393
|
+
manufacturer of this vehicle. Comma seperated if more than one.", "type":
|
394
|
+
"string"}, "films": {"description": "An array of Film URL Resources that this
|
395
|
+
vehicle has appeared in.", "type": "array"}, "cost_in_credits": {"description":
|
396
|
+
"The cost of this vehicle new, in galactic credits.", "type": "string"}, "name":
|
397
|
+
{"description": "The name of this vehicle. The common name, such as Sand Crawler.",
|
398
|
+
"type": "string"}, "edited": {"description": "the ISO 8601 date format of
|
399
|
+
the time that this resource was edited.", "type": "string", "format": "date-time"},
|
400
|
+
"vehicle_class": {"description": "The class of this vehicle, such as Wheeled.",
|
401
|
+
"type": "string"}, "length": {"description": "The length of this vehicle in
|
402
|
+
meters.", "type": "string"}, "url": {"description": "The hypermedia URL of
|
403
|
+
this resource.", "type": "string", "format": "uri"}, "created": {"description":
|
404
|
+
"The ISO 8601 date format of the time that this resource was created.", "type":
|
405
|
+
"string", "format": "date-time"}, "pilots": {"description": "An array of People
|
406
|
+
URL Resources that this vehicle has been piloted by.", "type": "array"}, "crew":
|
407
|
+
{"description": "The number of personnel needed to run or pilot this vehicle.",
|
408
|
+
"type": "string"}, "max_atmosphering_speed": {"description": "The maximum
|
409
|
+
speed of this vehicle in atmosphere.", "type": "string"}}, "required": ["name",
|
410
|
+
"model", "manufacturer", "cost_in_credits", "length", "max_atmosphering_speed",
|
411
|
+
"crew", "passengers", "cargo_capacity", "consumables", "vehicle_class", "pilots",
|
412
|
+
"films", "created", "edited", "url"], "title": "Starship"}'
|
376
413
|
http_version:
|
377
|
-
recorded_at:
|
414
|
+
recorded_at: Tue, 28 Aug 2018 21:41:33 GMT
|
378
415
|
- request:
|
379
416
|
method: get
|
380
|
-
uri:
|
417
|
+
uri: https://swapi.co/api/people/schema
|
381
418
|
body:
|
382
419
|
encoding: US-ASCII
|
383
420
|
string: ''
|
384
421
|
headers:
|
385
422
|
User-Agent:
|
386
|
-
- Tatooine Ruby Gem -
|
423
|
+
- Tatooine Ruby Gem - 1.0.1
|
387
424
|
Accept-Encoding:
|
388
425
|
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
389
426
|
Accept:
|
@@ -394,7 +431,7 @@ http_interactions:
|
|
394
431
|
message: OK
|
395
432
|
headers:
|
396
433
|
Date:
|
397
|
-
-
|
434
|
+
- Tue, 28 Aug 2018 21:41:34 GMT
|
398
435
|
Content-Type:
|
399
436
|
- application/json
|
400
437
|
Transfer-Encoding:
|
@@ -402,40 +439,48 @@ http_interactions:
|
|
402
439
|
Connection:
|
403
440
|
- keep-alive
|
404
441
|
Set-Cookie:
|
405
|
-
- __cfduid=
|
406
|
-
|
442
|
+
- __cfduid=d6a0f0c7d4585f20b65f1337ce99398e61535492493; expires=Wed, 28-Aug-19
|
443
|
+
21:41:33 GMT; path=/; domain=.swapi.co; HttpOnly; Secure
|
444
|
+
Etag:
|
445
|
+
- W/"92478c38b8c53e2f9a0f3688b541668f"
|
407
446
|
X-Frame-Options:
|
408
447
|
- SAMEORIGIN
|
409
448
|
Via:
|
410
449
|
- 1.1 vegur
|
450
|
+
Expect-Ct:
|
451
|
+
- max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
|
411
452
|
Server:
|
412
|
-
- cloudflare
|
453
|
+
- cloudflare
|
413
454
|
Cf-Ray:
|
414
|
-
-
|
455
|
+
- 4519f1565d8840c4-HAM
|
415
456
|
body:
|
416
|
-
encoding:
|
417
|
-
string: '{"
|
418
|
-
"
|
419
|
-
"The url of
|
420
|
-
"
|
421
|
-
|
422
|
-
"
|
423
|
-
|
424
|
-
"The name of this person."
|
425
|
-
"
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
"description": "
|
433
|
-
"
|
434
|
-
|
435
|
-
"
|
436
|
-
|
437
|
-
"
|
438
|
-
"
|
457
|
+
encoding: ASCII-8BIT
|
458
|
+
string: '{"$schema": "http://json-schema.org/draft-04/schema", "description":
|
459
|
+
"A person within the Star Wars universe", "type": "object", "properties":
|
460
|
+
{"url": {"description": "The url of this resource", "type": "string", "format":
|
461
|
+
"uri"}, "starships": {"description": "An array of starship resources that
|
462
|
+
this person has piloted", "type": "array"}, "height": {"description": "The
|
463
|
+
height of this person in meters.", "type": "string"}, "hair_color": {"description":
|
464
|
+
"The hair color of this person.", "type": "string"}, "name": {"description":
|
465
|
+
"The name of this person.", "type": "string"}, "vehicles": {"description":
|
466
|
+
"An array of vehicle resources that this person has piloted", "type": "array"},
|
467
|
+
"skin_color": {"description": "The skin color of this person.", "type": "string"},
|
468
|
+
"mass": {"description": "The mass of this person in kilograms.", "type": "string"},
|
469
|
+
"birth_year": {"description": "The birth year of this person. BBY (Before
|
470
|
+
the Battle of Yavin) or ABY (After the Battle of Yavin).", "type": "string"},
|
471
|
+
"edited": {"description": "the ISO 8601 date format of the time that this
|
472
|
+
resource was edited.", "type": "string", "format": "date-time"}, "films":
|
473
|
+
{"description": "An array of urls of film resources that this person has been
|
474
|
+
in.", "type": "array"}, "species": {"description": "The url of the species
|
475
|
+
resource that this person is.", "type": "array"}, "homeworld": {"description":
|
476
|
+
"The url of the planet resource that this person was born on.", "type": "string"},
|
477
|
+
"gender": {"description": "The gender of this person (if known).", "type":
|
478
|
+
"string"}, "eye_color": {"description": "The eye color of this person.", "type":
|
479
|
+
"string"}, "created": {"description": "The ISO 8601 date format of the time
|
480
|
+
that this resource was created.", "type": "string", "format": "date-time"}},
|
481
|
+
"required": ["name", "height", "mass", "hair_color", "skin_color", "eye_color",
|
482
|
+
"birth_year", "gender", "homeworld", "films", "species", "vehicles", "starships",
|
483
|
+
"url", "created", "edited"], "title": "People"}'
|
439
484
|
http_version:
|
440
|
-
recorded_at:
|
485
|
+
recorded_at: Tue, 28 Aug 2018 21:41:34 GMT
|
441
486
|
recorded_with: VCR 2.9.3
|