giant_bomb_api 0.5.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (61) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +3 -0
  3. data/.rspec +1 -0
  4. data/.rubocop.yml +6 -0
  5. data/.ruby-gemset +1 -0
  6. data/.ruby-version +1 -0
  7. data/Gemfile +2 -0
  8. data/Gemfile.lock +81 -0
  9. data/LICENSE +22 -0
  10. data/README.md +155 -0
  11. data/Rakefile +7 -0
  12. data/circle.yml +6 -0
  13. data/giant_bomb_api.gemspec +31 -0
  14. data/lib/giant_bomb_api.rb +38 -0
  15. data/lib/giant_bomb_api/client.rb +54 -0
  16. data/lib/giant_bomb_api/collection_resource.rb +40 -0
  17. data/lib/giant_bomb_api/exception.rb +5 -0
  18. data/lib/giant_bomb_api/exception/api_error.rb +14 -0
  19. data/lib/giant_bomb_api/request.rb +10 -0
  20. data/lib/giant_bomb_api/request/collection.rb +36 -0
  21. data/lib/giant_bomb_api/request/detail.rb +9 -0
  22. data/lib/giant_bomb_api/request/search.rb +18 -0
  23. data/lib/giant_bomb_api/resource.rb +34 -0
  24. data/lib/giant_bomb_api/resource/accessory.rb +10 -0
  25. data/lib/giant_bomb_api/resource/character.rb +24 -0
  26. data/lib/giant_bomb_api/resource/chat.rb +11 -0
  27. data/lib/giant_bomb_api/resource/company.rb +32 -0
  28. data/lib/giant_bomb_api/resource/concept.rb +21 -0
  29. data/lib/giant_bomb_api/resource/factory.rb +36 -0
  30. data/lib/giant_bomb_api/resource/franchise.rb +17 -0
  31. data/lib/giant_bomb_api/resource/game.rb +40 -0
  32. data/lib/giant_bomb_api/resource/game_rating.rb +8 -0
  33. data/lib/giant_bomb_api/resource/genre.rb +10 -0
  34. data/lib/giant_bomb_api/resource/image.rb +12 -0
  35. data/lib/giant_bomb_api/resource/location.rb +12 -0
  36. data/lib/giant_bomb_api/resource/object.rb +20 -0
  37. data/lib/giant_bomb_api/resource/person.rb +24 -0
  38. data/lib/giant_bomb_api/resource/platform.rb +16 -0
  39. data/lib/giant_bomb_api/resource/promo.rb +11 -0
  40. data/lib/giant_bomb_api/resource/rating_board.rb +11 -0
  41. data/lib/giant_bomb_api/resource/region.rb +11 -0
  42. data/lib/giant_bomb_api/resource/release.rb +24 -0
  43. data/lib/giant_bomb_api/resource/review.rb +15 -0
  44. data/lib/giant_bomb_api/resource/theme.rb +7 -0
  45. data/lib/giant_bomb_api/resource/user_review.rb +11 -0
  46. data/lib/giant_bomb_api/resource/video.rb +17 -0
  47. data/lib/giant_bomb_api/resource/video_type.rb +8 -0
  48. data/lib/giant_bomb_api/resource_value_setter.rb +29 -0
  49. data/lib/giant_bomb_api/response.rb +17 -0
  50. data/spec/fixtures/detail-response.json +740 -0
  51. data/spec/fixtures/search-response.json +59 -0
  52. data/spec/lib/collection_resource_spec.rb +76 -0
  53. data/spec/lib/giant_bomb_api_spec.rb +56 -0
  54. data/spec/lib/request/collection_spec.rb +32 -0
  55. data/spec/lib/request/search_spec.rb +38 -0
  56. data/spec/lib/resource/factory_spec.rb +35 -0
  57. data/spec/lib/resource/game_spec.rb +28 -0
  58. data/spec/lib/resource_spec.rb +37 -0
  59. data/spec/lib/response_spec.rb +102 -0
  60. data/spec/spec_helper.rb +15 -0
  61. metadata +241 -0
@@ -0,0 +1,16 @@
1
+ module GiantBombApi
2
+ class Resource::Platform
3
+ extend GiantBombApi::CollectionResource
4
+ resource_attribute :abbreviation
5
+ resource_attribute :company
6
+ resource_attribute :deck
7
+ resource_attribute :description
8
+ resource_attribute :image
9
+ resource_attribute :install_base
10
+ resource_attribute :name
11
+ resource_attribute :online_support
12
+ resource_attribute :original_price
13
+ resource_attribute :release_date
14
+ resource_attribute :site_detail_url
15
+ end
16
+ end
@@ -0,0 +1,11 @@
1
+ module GiantBombApi
2
+ class Resource::Promo
3
+ extend GiantBombApi::CollectionResource
4
+ resource_attribute :deck
5
+ resource_attribute :image
6
+ resource_attribute :link
7
+ resource_attribute :name
8
+ resource_attribute :resource_type
9
+ resource_attribute :user
10
+ end
11
+ end
@@ -0,0 +1,11 @@
1
+ module GiantBombApi
2
+ class Resource::RatingBoard
3
+ extend GiantBombApi::CollectionResource
4
+ resource_attribute :deck
5
+ resource_attribute :description
6
+ resource_attribute :image
7
+ resource_attribute :name
8
+ resource_attribute :region
9
+ resource_attribute :site_detail_url
10
+ end
11
+ end
@@ -0,0 +1,11 @@
1
+ module GiantBombApi
2
+ class Resource::Region
3
+ extend GiantBombApi::CollectionResource
4
+ resource_attribute :deck
5
+ resource_attribute :description
6
+ resource_attribute :image
7
+ resource_attribute :name
8
+ resource_attribute :rating_boards
9
+ resource_attribute :site_detail_url
10
+ end
11
+ end
@@ -0,0 +1,24 @@
1
+ module GiantBombApi
2
+ class Resource::Release
3
+ extend GiantBombApi::CollectionResource
4
+ resource_attribute :deck
5
+ resource_attribute :description
6
+ resource_attribute :developers, resource_name: :company
7
+ resource_attribute :expected_release_day
8
+ resource_attribute :expected_release_month
9
+ resource_attribute :expected_release_quarter
10
+ resource_attribute :expected_release_year
11
+ resource_attribute :game
12
+ resource_attribute :game_rating
13
+ resource_attribute :image
14
+ resource_attribute :images
15
+ resource_attribute :name
16
+ resource_attribute :platform
17
+ resource_attribute :product_code_type
18
+ resource_attribute :product_code_value
19
+ resource_attribute :publishers, resource_name: :company
20
+ resource_attribute :region
21
+ resource_attribute :release_date
22
+ resource_attribute :site_detail_url
23
+ end
24
+ end
@@ -0,0 +1,15 @@
1
+ module GiantBombApi
2
+ class Resource::Review
3
+ extend GiantBombApi::CollectionResource
4
+ resource_attribute :deck
5
+ resource_attribute :description
6
+ resource_attribute :dlc_name
7
+ resource_attribute :game
8
+ resource_attribute :platforms
9
+ resource_attribute :publish_date
10
+ resource_attribute :release
11
+ resource_attribute :reviewer
12
+ resource_attribute :score
13
+ resource_attribute :site_detail_url
14
+ end
15
+ end
@@ -0,0 +1,7 @@
1
+ module GiantBombApi
2
+ class Resource::Theme
3
+ extend GiantBombApi::CollectionResource
4
+ resource_attribute :name
5
+ resource_attribute :site_detail_url
6
+ end
7
+ end
@@ -0,0 +1,11 @@
1
+ module GiantBombApi
2
+ class Resource::UserReview
3
+ extend GiantBombApi::CollectionResource
4
+ resource_attribute :deck
5
+ resource_attribute :description
6
+ resource_attribute :game
7
+ resource_attribute :reviewer
8
+ resource_attribute :score
9
+ resource_attribute :site_detail_url
10
+ end
11
+ end
@@ -0,0 +1,17 @@
1
+ module GiantBombApi
2
+ class Resource::Video
3
+ extend GiantBombApi::CollectionResource
4
+ resource_attribute :deck
5
+ resource_attribute :hd_url
6
+ resource_attribute :high_url
7
+ resource_attribute :image
8
+ resource_attribute :length_seconds
9
+ resource_attribute :low_url
10
+ resource_attribute :name
11
+ resource_attribute :publish_date
12
+ resource_attribute :site_detail_url
13
+ resource_attribute :url
14
+ resource_attribute :user
15
+ resource_attribute :youtube_id
16
+ end
17
+ end
@@ -0,0 +1,8 @@
1
+ module GiantBombApi
2
+ class Resource::VideoType
3
+ extend GiantBombApi::CollectionResource
4
+ resource_attribute :deck
5
+ resource_attribute :name
6
+ resource_attribute :site_detail_url
7
+ end
8
+ end
@@ -0,0 +1,29 @@
1
+ module GiantBombApi
2
+ module ResourceValueSetter
3
+
4
+ def initialize(json)
5
+ init_resource_attributes_from(json)
6
+ end
7
+
8
+ def init_resource_attributes_from(hash)
9
+ self.class.instance_variable_get("@resource_attributes").each do |attribute, resource_name|
10
+ attribute = attribute.to_s
11
+ hash_value = hash[attribute]
12
+ value = nil
13
+
14
+ unless hash_value.nil?
15
+ if hash_value.is_a? Hash
16
+ value = GiantBombApi::Resource::Factory.init_resource_from(hash_value, attribute_name: attribute, resource_name: resource_name)
17
+ elsif hash_value.is_a? Array
18
+ value = hash_value.map { |json| GiantBombApi::Resource::Factory.init_resource_from(json, attribute_name: attribute, resource_name: resource_name) }.compact
19
+ else
20
+ value = hash_value
21
+ end
22
+ end
23
+
24
+ self.send("#{attribute}=", value)
25
+ end
26
+ end
27
+
28
+ end
29
+ end
@@ -0,0 +1,17 @@
1
+ require 'active_support/core_ext/object'
2
+
3
+ module GiantBombApi
4
+ class Response
5
+ extend GiantBombApi::Resource
6
+
7
+ attr_accessor :request
8
+ resource_attribute :limit, :offset, :number_of_page_results, :number_of_total_results, :results
9
+
10
+ def has_more_results?
11
+ offset + number_of_page_results < number_of_total_results
12
+ end
13
+
14
+ private
15
+
16
+ end
17
+ end
@@ -0,0 +1,740 @@
1
+ {
2
+ "error": "OK",
3
+ "limit": 1,
4
+ "offset": 0,
5
+ "number_of_page_results": 1,
6
+ "number_of_total_results": 1,
7
+ "status_code": 1,
8
+ "results": {
9
+ "aliases": "Drive Club\r\n#DRIVECLUB",
10
+ "api_detail_url": "http://www.giantbomb.com/api/game/3030-41693/",
11
+ "date_added": "2013-02-20 15:57:29",
12
+ "date_last_updated": "2014-11-30 06:30:47",
13
+ "deck": "Driveclub is a team-based racing game from Evolution Studios for PlayStation 4.",
14
+ "description": "<p style=\"\"> </p>",
15
+ "expected_release_day": null,
16
+ "expected_release_month": null,
17
+ "expected_release_quarter": null,
18
+ "expected_release_year": null,
19
+ "id": 41693,
20
+ "image": {
21
+ "icon_url": "http://static.giantbomb.com/uploads/square_avatar/8/82063/2560905-driveclub.jpg",
22
+ "medium_url": "http://static.giantbomb.com/uploads/scale_medium/8/82063/2560905-driveclub.jpg",
23
+ "screen_url": "http://static.giantbomb.com/uploads/screen_medium/8/82063/2560905-driveclub.jpg",
24
+ "small_url": "http://static.giantbomb.com/uploads/scale_small/8/82063/2560905-driveclub.jpg",
25
+ "super_url": "http://static.giantbomb.com/uploads/scale_large/8/82063/2560905-driveclub.jpg",
26
+ "thumb_url": "http://static.giantbomb.com/uploads/scale_avatar/8/82063/2560905-driveclub.jpg",
27
+ "tiny_url": "http://static.giantbomb.com/uploads/square_mini/8/82063/2560905-driveclub.jpg"
28
+ },
29
+ "name": "Driveclub",
30
+ "number_of_user_reviews": 0,
31
+ "original_game_rating": [
32
+ {
33
+ "api_detail_url": "http://www.giantbomb.com/api/game_rating/3065-7/",
34
+ "id": 7,
35
+ "name": "PEGI: 3+"
36
+ },
37
+ {
38
+ "api_detail_url": "http://www.giantbomb.com/api/game_rating/3065-25/",
39
+ "id": 25,
40
+ "name": "CERO: A"
41
+ }
42
+ ],
43
+ "original_release_date": "2014-10-07 00:00:00",
44
+ "platforms": [
45
+ {
46
+ "api_detail_url": "http://www.giantbomb.com/api/platform/3045-146/",
47
+ "id": 146,
48
+ "name": "PlayStation 4",
49
+ "site_detail_url": "http://www.giantbomb.com/playstation-4/3045-146/",
50
+ "abbreviation": "PS4"
51
+ }
52
+ ],
53
+ "site_detail_url": "http://www.giantbomb.com/driveclub/3030-41693/",
54
+ "images": [
55
+ {
56
+ "icon_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689534-dc_jd_01.jpg",
57
+ "medium_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689534-dc_jd_01.jpg",
58
+ "screen_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689534-dc_jd_01.jpg",
59
+ "small_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689534-dc_jd_01.jpg",
60
+ "super_url": "http://static.giantbomb.com/uploads/scale_large/0/26/2689534-dc_jd_01.jpg",
61
+ "thumb_url": "http://static.giantbomb.com/uploads/scale_small/0/26/2689534-dc_jd_01.jpg",
62
+ "tiny_url": "http://static.giantbomb.com/uploads/square_mini/0/26/2689534-dc_jd_01.jpg",
63
+ "tags": "All Images"
64
+ },
65
+ {
66
+ "icon_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689541-dc_jd_08.jpg",
67
+ "medium_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689541-dc_jd_08.jpg",
68
+ "screen_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689541-dc_jd_08.jpg",
69
+ "small_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689541-dc_jd_08.jpg",
70
+ "super_url": "http://static.giantbomb.com/uploads/scale_large/0/26/2689541-dc_jd_08.jpg",
71
+ "thumb_url": "http://static.giantbomb.com/uploads/scale_small/0/26/2689541-dc_jd_08.jpg",
72
+ "tiny_url": "http://static.giantbomb.com/uploads/square_mini/0/26/2689541-dc_jd_08.jpg",
73
+ "tags": "All Images"
74
+ },
75
+ {
76
+ "icon_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689537-dc_jd_04.jpg",
77
+ "medium_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689537-dc_jd_04.jpg",
78
+ "screen_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689537-dc_jd_04.jpg",
79
+ "small_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689537-dc_jd_04.jpg",
80
+ "super_url": "http://static.giantbomb.com/uploads/scale_large/0/26/2689537-dc_jd_04.jpg",
81
+ "thumb_url": "http://static.giantbomb.com/uploads/scale_small/0/26/2689537-dc_jd_04.jpg",
82
+ "tiny_url": "http://static.giantbomb.com/uploads/square_mini/0/26/2689537-dc_jd_04.jpg",
83
+ "tags": "All Images"
84
+ },
85
+ {
86
+ "icon_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689540-dc_jd_07.jpg",
87
+ "medium_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689540-dc_jd_07.jpg",
88
+ "screen_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689540-dc_jd_07.jpg",
89
+ "small_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689540-dc_jd_07.jpg",
90
+ "super_url": "http://static.giantbomb.com/uploads/scale_large/0/26/2689540-dc_jd_07.jpg",
91
+ "thumb_url": "http://static.giantbomb.com/uploads/scale_small/0/26/2689540-dc_jd_07.jpg",
92
+ "tiny_url": "http://static.giantbomb.com/uploads/square_mini/0/26/2689540-dc_jd_07.jpg",
93
+ "tags": "All Images"
94
+ },
95
+ {
96
+ "icon_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689536-dc_jd_03.jpg",
97
+ "medium_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689536-dc_jd_03.jpg",
98
+ "screen_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689536-dc_jd_03.jpg",
99
+ "small_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689536-dc_jd_03.jpg",
100
+ "super_url": "http://static.giantbomb.com/uploads/scale_large/0/26/2689536-dc_jd_03.jpg",
101
+ "thumb_url": "http://static.giantbomb.com/uploads/scale_small/0/26/2689536-dc_jd_03.jpg",
102
+ "tiny_url": "http://static.giantbomb.com/uploads/square_mini/0/26/2689536-dc_jd_03.jpg",
103
+ "tags": "All Images"
104
+ },
105
+ {
106
+ "icon_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689545-dc_jd_10.jpg",
107
+ "medium_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689545-dc_jd_10.jpg",
108
+ "screen_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689545-dc_jd_10.jpg",
109
+ "small_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689545-dc_jd_10.jpg",
110
+ "super_url": "http://static.giantbomb.com/uploads/scale_large/0/26/2689545-dc_jd_10.jpg",
111
+ "thumb_url": "http://static.giantbomb.com/uploads/scale_small/0/26/2689545-dc_jd_10.jpg",
112
+ "tiny_url": "http://static.giantbomb.com/uploads/square_mini/0/26/2689545-dc_jd_10.jpg",
113
+ "tags": "All Images"
114
+ },
115
+ {
116
+ "icon_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689539-dc_jd_06.jpg",
117
+ "medium_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689539-dc_jd_06.jpg",
118
+ "screen_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689539-dc_jd_06.jpg",
119
+ "small_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689539-dc_jd_06.jpg",
120
+ "super_url": "http://static.giantbomb.com/uploads/scale_large/0/26/2689539-dc_jd_06.jpg",
121
+ "thumb_url": "http://static.giantbomb.com/uploads/scale_small/0/26/2689539-dc_jd_06.jpg",
122
+ "tiny_url": "http://static.giantbomb.com/uploads/square_mini/0/26/2689539-dc_jd_06.jpg",
123
+ "tags": "All Images"
124
+ },
125
+ {
126
+ "icon_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689535-dc_jd_02.jpg",
127
+ "medium_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689535-dc_jd_02.jpg",
128
+ "screen_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689535-dc_jd_02.jpg",
129
+ "small_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689535-dc_jd_02.jpg",
130
+ "super_url": "http://static.giantbomb.com/uploads/scale_large/0/26/2689535-dc_jd_02.jpg",
131
+ "thumb_url": "http://static.giantbomb.com/uploads/scale_small/0/26/2689535-dc_jd_02.jpg",
132
+ "tiny_url": "http://static.giantbomb.com/uploads/square_mini/0/26/2689535-dc_jd_02.jpg",
133
+ "tags": "All Images"
134
+ },
135
+ {
136
+ "icon_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689543-dc_jd_09.jpg",
137
+ "medium_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689543-dc_jd_09.jpg",
138
+ "screen_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689543-dc_jd_09.jpg",
139
+ "small_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689543-dc_jd_09.jpg",
140
+ "super_url": "http://static.giantbomb.com/uploads/scale_large/0/26/2689543-dc_jd_09.jpg",
141
+ "thumb_url": "http://static.giantbomb.com/uploads/scale_small/0/26/2689543-dc_jd_09.jpg",
142
+ "tiny_url": "http://static.giantbomb.com/uploads/square_mini/0/26/2689543-dc_jd_09.jpg",
143
+ "tags": "All Images"
144
+ },
145
+ {
146
+ "icon_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689538-dc_jd_05.jpg",
147
+ "medium_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689538-dc_jd_05.jpg",
148
+ "screen_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689538-dc_jd_05.jpg",
149
+ "small_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689538-dc_jd_05.jpg",
150
+ "super_url": "http://static.giantbomb.com/uploads/scale_large/0/26/2689538-dc_jd_05.jpg",
151
+ "thumb_url": "http://static.giantbomb.com/uploads/scale_small/0/26/2689538-dc_jd_05.jpg",
152
+ "tiny_url": "http://static.giantbomb.com/uploads/square_mini/0/26/2689538-dc_jd_05.jpg",
153
+ "tags": "All Images"
154
+ },
155
+ {
156
+ "icon_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689525-dc_screen_69.jpg",
157
+ "medium_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689525-dc_screen_69.jpg",
158
+ "screen_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689525-dc_screen_69.jpg",
159
+ "small_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689525-dc_screen_69.jpg",
160
+ "super_url": "http://static.giantbomb.com/uploads/scale_large/0/26/2689525-dc_screen_69.jpg",
161
+ "thumb_url": "http://static.giantbomb.com/uploads/scale_small/0/26/2689525-dc_screen_69.jpg",
162
+ "tiny_url": "http://static.giantbomb.com/uploads/square_mini/0/26/2689525-dc_screen_69.jpg",
163
+ "tags": "All Images"
164
+ },
165
+ {
166
+ "icon_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689528-dc_screen_83.jpg",
167
+ "medium_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689528-dc_screen_83.jpg",
168
+ "screen_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689528-dc_screen_83.jpg",
169
+ "small_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689528-dc_screen_83.jpg",
170
+ "super_url": "http://static.giantbomb.com/uploads/scale_large/0/26/2689528-dc_screen_83.jpg",
171
+ "thumb_url": "http://static.giantbomb.com/uploads/scale_small/0/26/2689528-dc_screen_83.jpg",
172
+ "tiny_url": "http://static.giantbomb.com/uploads/square_mini/0/26/2689528-dc_screen_83.jpg",
173
+ "tags": "All Images"
174
+ },
175
+ {
176
+ "icon_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689524-dc_screen_67.jpg",
177
+ "medium_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689524-dc_screen_67.jpg",
178
+ "screen_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689524-dc_screen_67.jpg",
179
+ "small_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689524-dc_screen_67.jpg",
180
+ "super_url": "http://static.giantbomb.com/uploads/scale_large/0/26/2689524-dc_screen_67.jpg",
181
+ "thumb_url": "http://static.giantbomb.com/uploads/scale_small/0/26/2689524-dc_screen_67.jpg",
182
+ "tiny_url": "http://static.giantbomb.com/uploads/square_mini/0/26/2689524-dc_screen_67.jpg",
183
+ "tags": "All Images"
184
+ },
185
+ {
186
+ "icon_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689527-dc_screen_74.jpg",
187
+ "medium_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689527-dc_screen_74.jpg",
188
+ "screen_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689527-dc_screen_74.jpg",
189
+ "small_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689527-dc_screen_74.jpg",
190
+ "super_url": "http://static.giantbomb.com/uploads/scale_large/0/26/2689527-dc_screen_74.jpg",
191
+ "thumb_url": "http://static.giantbomb.com/uploads/scale_small/0/26/2689527-dc_screen_74.jpg",
192
+ "tiny_url": "http://static.giantbomb.com/uploads/square_mini/0/26/2689527-dc_screen_74.jpg",
193
+ "tags": "All Images"
194
+ },
195
+ {
196
+ "icon_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689523-dc_screen_66.jpg",
197
+ "medium_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689523-dc_screen_66.jpg",
198
+ "screen_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689523-dc_screen_66.jpg",
199
+ "small_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689523-dc_screen_66.jpg",
200
+ "super_url": "http://static.giantbomb.com/uploads/scale_large/0/26/2689523-dc_screen_66.jpg",
201
+ "thumb_url": "http://static.giantbomb.com/uploads/scale_small/0/26/2689523-dc_screen_66.jpg",
202
+ "tiny_url": "http://static.giantbomb.com/uploads/square_mini/0/26/2689523-dc_screen_66.jpg",
203
+ "tags": "All Images"
204
+ },
205
+ {
206
+ "icon_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689526-dc_screen_71.jpg",
207
+ "medium_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689526-dc_screen_71.jpg",
208
+ "screen_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689526-dc_screen_71.jpg",
209
+ "small_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689526-dc_screen_71.jpg",
210
+ "super_url": "http://static.giantbomb.com/uploads/scale_large/0/26/2689526-dc_screen_71.jpg",
211
+ "thumb_url": "http://static.giantbomb.com/uploads/scale_small/0/26/2689526-dc_screen_71.jpg",
212
+ "tiny_url": "http://static.giantbomb.com/uploads/square_mini/0/26/2689526-dc_screen_71.jpg",
213
+ "tags": "All Images"
214
+ },
215
+ {
216
+ "icon_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689522-dc_screen_64.jpg",
217
+ "medium_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689522-dc_screen_64.jpg",
218
+ "screen_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689522-dc_screen_64.jpg",
219
+ "small_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689522-dc_screen_64.jpg",
220
+ "super_url": "http://static.giantbomb.com/uploads/scale_large/0/26/2689522-dc_screen_64.jpg",
221
+ "thumb_url": "http://static.giantbomb.com/uploads/scale_small/0/26/2689522-dc_screen_64.jpg",
222
+ "tiny_url": "http://static.giantbomb.com/uploads/square_mini/0/26/2689522-dc_screen_64.jpg",
223
+ "tags": "All Images"
224
+ },
225
+ {
226
+ "icon_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689518-dc_screen_54.jpg",
227
+ "medium_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689518-dc_screen_54.jpg",
228
+ "screen_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689518-dc_screen_54.jpg",
229
+ "small_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689518-dc_screen_54.jpg",
230
+ "super_url": "http://static.giantbomb.com/uploads/scale_large/0/26/2689518-dc_screen_54.jpg",
231
+ "thumb_url": "http://static.giantbomb.com/uploads/scale_small/0/26/2689518-dc_screen_54.jpg",
232
+ "tiny_url": "http://static.giantbomb.com/uploads/square_mini/0/26/2689518-dc_screen_54.jpg",
233
+ "tags": "All Images"
234
+ },
235
+ {
236
+ "icon_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689521-dc_screen_61.jpg",
237
+ "medium_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689521-dc_screen_61.jpg",
238
+ "screen_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689521-dc_screen_61.jpg",
239
+ "small_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689521-dc_screen_61.jpg",
240
+ "super_url": "http://static.giantbomb.com/uploads/scale_large/0/26/2689521-dc_screen_61.jpg",
241
+ "thumb_url": "http://static.giantbomb.com/uploads/scale_small/0/26/2689521-dc_screen_61.jpg",
242
+ "tiny_url": "http://static.giantbomb.com/uploads/square_mini/0/26/2689521-dc_screen_61.jpg",
243
+ "tags": "All Images"
244
+ },
245
+ {
246
+ "icon_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689517-dc_screen_53.jpg",
247
+ "medium_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689517-dc_screen_53.jpg",
248
+ "screen_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689517-dc_screen_53.jpg",
249
+ "small_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689517-dc_screen_53.jpg",
250
+ "super_url": "http://static.giantbomb.com/uploads/scale_large/0/26/2689517-dc_screen_53.jpg",
251
+ "thumb_url": "http://static.giantbomb.com/uploads/scale_small/0/26/2689517-dc_screen_53.jpg",
252
+ "tiny_url": "http://static.giantbomb.com/uploads/square_mini/0/26/2689517-dc_screen_53.jpg",
253
+ "tags": "All Images"
254
+ },
255
+ {
256
+ "icon_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689520-dc_screen_59.jpg",
257
+ "medium_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689520-dc_screen_59.jpg",
258
+ "screen_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689520-dc_screen_59.jpg",
259
+ "small_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689520-dc_screen_59.jpg",
260
+ "super_url": "http://static.giantbomb.com/uploads/scale_large/0/26/2689520-dc_screen_59.jpg",
261
+ "thumb_url": "http://static.giantbomb.com/uploads/scale_small/0/26/2689520-dc_screen_59.jpg",
262
+ "tiny_url": "http://static.giantbomb.com/uploads/square_mini/0/26/2689520-dc_screen_59.jpg",
263
+ "tags": "All Images"
264
+ },
265
+ {
266
+ "icon_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689516-dc_screen_50.jpg",
267
+ "medium_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689516-dc_screen_50.jpg",
268
+ "screen_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689516-dc_screen_50.jpg",
269
+ "small_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689516-dc_screen_50.jpg",
270
+ "super_url": "http://static.giantbomb.com/uploads/scale_large/0/26/2689516-dc_screen_50.jpg",
271
+ "thumb_url": "http://static.giantbomb.com/uploads/scale_small/0/26/2689516-dc_screen_50.jpg",
272
+ "tiny_url": "http://static.giantbomb.com/uploads/square_mini/0/26/2689516-dc_screen_50.jpg",
273
+ "tags": "All Images"
274
+ },
275
+ {
276
+ "icon_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689519-dc_screen_57.jpg",
277
+ "medium_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689519-dc_screen_57.jpg",
278
+ "screen_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689519-dc_screen_57.jpg",
279
+ "small_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689519-dc_screen_57.jpg",
280
+ "super_url": "http://static.giantbomb.com/uploads/scale_large/0/26/2689519-dc_screen_57.jpg",
281
+ "thumb_url": "http://static.giantbomb.com/uploads/scale_small/0/26/2689519-dc_screen_57.jpg",
282
+ "tiny_url": "http://static.giantbomb.com/uploads/square_mini/0/26/2689519-dc_screen_57.jpg",
283
+ "tags": "All Images"
284
+ },
285
+ {
286
+ "icon_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689503-dc_screen_27.jpg",
287
+ "medium_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689503-dc_screen_27.jpg",
288
+ "screen_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689503-dc_screen_27.jpg",
289
+ "small_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689503-dc_screen_27.jpg",
290
+ "super_url": "http://static.giantbomb.com/uploads/scale_large/0/26/2689503-dc_screen_27.jpg",
291
+ "thumb_url": "http://static.giantbomb.com/uploads/scale_small/0/26/2689503-dc_screen_27.jpg",
292
+ "tiny_url": "http://static.giantbomb.com/uploads/square_mini/0/26/2689503-dc_screen_27.jpg",
293
+ "tags": "All Images"
294
+ },
295
+ {
296
+ "icon_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689506-dc_screen_38.jpg",
297
+ "medium_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689506-dc_screen_38.jpg",
298
+ "screen_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689506-dc_screen_38.jpg",
299
+ "small_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689506-dc_screen_38.jpg",
300
+ "super_url": "http://static.giantbomb.com/uploads/scale_large/0/26/2689506-dc_screen_38.jpg",
301
+ "thumb_url": "http://static.giantbomb.com/uploads/scale_small/0/26/2689506-dc_screen_38.jpg",
302
+ "tiny_url": "http://static.giantbomb.com/uploads/square_mini/0/26/2689506-dc_screen_38.jpg",
303
+ "tags": "All Images"
304
+ },
305
+ {
306
+ "icon_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689502-dc_screen_25.jpg",
307
+ "medium_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689502-dc_screen_25.jpg",
308
+ "screen_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689502-dc_screen_25.jpg",
309
+ "small_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689502-dc_screen_25.jpg",
310
+ "super_url": "http://static.giantbomb.com/uploads/scale_large/0/26/2689502-dc_screen_25.jpg",
311
+ "thumb_url": "http://static.giantbomb.com/uploads/scale_small/0/26/2689502-dc_screen_25.jpg",
312
+ "tiny_url": "http://static.giantbomb.com/uploads/square_mini/0/26/2689502-dc_screen_25.jpg",
313
+ "tags": "All Images"
314
+ },
315
+ {
316
+ "icon_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689505-dc_screen_37.jpg",
317
+ "medium_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689505-dc_screen_37.jpg",
318
+ "screen_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689505-dc_screen_37.jpg",
319
+ "small_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689505-dc_screen_37.jpg",
320
+ "super_url": "http://static.giantbomb.com/uploads/scale_large/0/26/2689505-dc_screen_37.jpg",
321
+ "thumb_url": "http://static.giantbomb.com/uploads/scale_small/0/26/2689505-dc_screen_37.jpg",
322
+ "tiny_url": "http://static.giantbomb.com/uploads/square_mini/0/26/2689505-dc_screen_37.jpg",
323
+ "tags": "All Images"
324
+ },
325
+ {
326
+ "icon_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689504-dc_screen_36.jpg",
327
+ "medium_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689504-dc_screen_36.jpg",
328
+ "screen_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689504-dc_screen_36.jpg",
329
+ "small_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689504-dc_screen_36.jpg",
330
+ "super_url": "http://static.giantbomb.com/uploads/scale_large/0/26/2689504-dc_screen_36.jpg",
331
+ "thumb_url": "http://static.giantbomb.com/uploads/scale_small/0/26/2689504-dc_screen_36.jpg",
332
+ "tiny_url": "http://static.giantbomb.com/uploads/square_mini/0/26/2689504-dc_screen_36.jpg",
333
+ "tags": "All Images"
334
+ },
335
+ {
336
+ "icon_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689507-dc_screen_44.jpg",
337
+ "medium_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689507-dc_screen_44.jpg",
338
+ "screen_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689507-dc_screen_44.jpg",
339
+ "small_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689507-dc_screen_44.jpg",
340
+ "super_url": "http://static.giantbomb.com/uploads/scale_large/0/26/2689507-dc_screen_44.jpg",
341
+ "thumb_url": "http://static.giantbomb.com/uploads/scale_small/0/26/2689507-dc_screen_44.jpg",
342
+ "tiny_url": "http://static.giantbomb.com/uploads/square_mini/0/26/2689507-dc_screen_44.jpg",
343
+ "tags": "All Images"
344
+ },
345
+ {
346
+ "icon_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689499-dc_screen_08.jpg",
347
+ "medium_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689499-dc_screen_08.jpg",
348
+ "screen_url": "http://static.giantbomb.com/uploads/screen_medium/0/26/2689499-dc_screen_08.jpg",
349
+ "small_url": "http://static.giantbomb.com/uploads/square_avatar/0/26/2689499-dc_screen_08.jpg",
350
+ "super_url": "http://static.giantbomb.com/uploads/scale_large/0/26/2689499-dc_screen_08.jpg",
351
+ "thumb_url": "http://static.giantbomb.com/uploads/scale_small/0/26/2689499-dc_screen_08.jpg",
352
+ "tiny_url": "http://static.giantbomb.com/uploads/square_mini/0/26/2689499-dc_screen_08.jpg",
353
+ "tags": "All Images"
354
+ }
355
+ ],
356
+ "videos": [
357
+ {
358
+ "api_detail_url": "http://www.giantbomb.com/api/video/2300-7069/",
359
+ "id": 7069,
360
+ "name": "DriveClub Shows Us Pretty Next-Gen Cars",
361
+ "site_detail_url": "http://www.giantbomb.com/videos/driveclub-shows-us-pretty-next-gen-cars/2300-7069/"
362
+ },
363
+ {
364
+ "api_detail_url": "http://www.giantbomb.com/api/video/2300-7521/",
365
+ "id": 7521,
366
+ "name": "E3 2013: Driveclub is Free for PS Plus Subscribers",
367
+ "site_detail_url": "http://www.giantbomb.com/videos/e3-2013-driveclub-is-free-for-ps-plus-subscribers/2300-7521/"
368
+ },
369
+ {
370
+ "api_detail_url": "http://www.giantbomb.com/api/video/2300-8817/",
371
+ "id": 8817,
372
+ "name": "Driveclub Finally Returns on October 8",
373
+ "site_detail_url": "http://www.giantbomb.com/videos/driveclub-finally-returns-on-october-8/2300-8817/"
374
+ },
375
+ {
376
+ "api_detail_url": "http://www.giantbomb.com/api/video/2300-9022/",
377
+ "id": 9022,
378
+ "name": "E3 2014: Sony Assures Us Driveclub is Happening",
379
+ "site_detail_url": "http://www.giantbomb.com/videos/e3-2014-sony-assures-us-driveclub-is-happening/2300-9022/"
380
+ },
381
+ {
382
+ "api_detail_url": "http://www.giantbomb.com/api/video/2300-9539/",
383
+ "id": 9539,
384
+ "name": "Quick Look: Driveclub",
385
+ "site_detail_url": "http://www.giantbomb.com/videos/quick-look-driveclub/2300-9539/"
386
+ }
387
+ ],
388
+ "characters": null,
389
+ "concepts": [
390
+ {
391
+ "api_detail_url": "http://www.giantbomb.com/api/concept/3015-7641/",
392
+ "id": 7641,
393
+ "name": "Companion App",
394
+ "site_detail_url": "http://www.giantbomb.com/companion-app/3015-7641/"
395
+ },
396
+ {
397
+ "api_detail_url": "http://www.giantbomb.com/api/concept/3015-198/",
398
+ "id": 198,
399
+ "name": "PlayStation Trophies",
400
+ "site_detail_url": "http://www.giantbomb.com/playstation-trophies/3015-198/"
401
+ },
402
+ {
403
+ "api_detail_url": "http://www.giantbomb.com/api/concept/3015-5817/",
404
+ "id": 5817,
405
+ "name": "PlayStation Plus",
406
+ "site_detail_url": "http://www.giantbomb.com/playstation-plus/3015-5817/"
407
+ },
408
+ {
409
+ "api_detail_url": "http://www.giantbomb.com/api/concept/3015-6740/",
410
+ "id": 6740,
411
+ "name": "PlayStation Mobile",
412
+ "site_detail_url": "http://www.giantbomb.com/playstation-mobile/3015-6740/"
413
+ },
414
+ {
415
+ "api_detail_url": "http://www.giantbomb.com/api/concept/3015-2623/",
416
+ "id": 2623,
417
+ "name": "PlayStation Network",
418
+ "site_detail_url": "http://www.giantbomb.com/playstation-network/3015-2623/"
419
+ },
420
+ {
421
+ "api_detail_url": "http://www.giantbomb.com/api/concept/3015-1665/",
422
+ "id": 1665,
423
+ "name": "Dashboard View",
424
+ "site_detail_url": "http://www.giantbomb.com/dashboard-view/3015-1665/"
425
+ },
426
+ {
427
+ "api_detail_url": "http://www.giantbomb.com/api/concept/3015-5677/",
428
+ "id": 5677,
429
+ "name": "Licensed Cars",
430
+ "site_detail_url": "http://www.giantbomb.com/licensed-cars/3015-5677/"
431
+ },
432
+ {
433
+ "api_detail_url": "http://www.giantbomb.com/api/concept/3015-2254/",
434
+ "id": 2254,
435
+ "name": "Social Link",
436
+ "site_detail_url": "http://www.giantbomb.com/social-link/3015-2254/"
437
+ },
438
+ {
439
+ "api_detail_url": "http://www.giantbomb.com/api/concept/3015-939/",
440
+ "id": 939,
441
+ "name": "Multiplayer Party System",
442
+ "site_detail_url": "http://www.giantbomb.com/multiplayer-party-system/3015-939/"
443
+ },
444
+ {
445
+ "api_detail_url": "http://www.giantbomb.com/api/concept/3015-7792/",
446
+ "id": 7792,
447
+ "name": "Gamescom 2013",
448
+ "site_detail_url": "http://www.giantbomb.com/gamescom-2013/3015-7792/"
449
+ },
450
+ {
451
+ "api_detail_url": "http://www.giantbomb.com/api/concept/3015-7596/",
452
+ "id": 7596,
453
+ "name": "PAX Prime 2013",
454
+ "site_detail_url": "http://www.giantbomb.com/pax-prime-2013/3015-7596/"
455
+ },
456
+ {
457
+ "api_detail_url": "http://www.giantbomb.com/api/concept/3015-7932/",
458
+ "id": 7932,
459
+ "name": "E3 2014",
460
+ "site_detail_url": "http://www.giantbomb.com/e3-2014/3015-7932/"
461
+ },
462
+ {
463
+ "api_detail_url": "http://www.giantbomb.com/api/concept/3015-357/",
464
+ "id": 357,
465
+ "name": "Realism",
466
+ "site_detail_url": "http://www.giantbomb.com/realism/3015-357/"
467
+ },
468
+ {
469
+ "api_detail_url": "http://www.giantbomb.com/api/concept/3015-8493/",
470
+ "id": 8493,
471
+ "name": "Gamescom 2014",
472
+ "site_detail_url": "http://www.giantbomb.com/gamescom-2014/3015-8493/"
473
+ },
474
+ {
475
+ "api_detail_url": "http://www.giantbomb.com/api/concept/3015-7788/",
476
+ "id": 7788,
477
+ "name": "Tokyo Game Show 2013",
478
+ "site_detail_url": "http://www.giantbomb.com/tokyo-game-show-2013/3015-7788/"
479
+ },
480
+ {
481
+ "api_detail_url": "http://www.giantbomb.com/api/concept/3015-8511/",
482
+ "id": 8511,
483
+ "name": "Tokyo Game Show 2014",
484
+ "site_detail_url": "http://www.giantbomb.com/tokyo-game-show-2014/3015-8511/"
485
+ },
486
+ {
487
+ "api_detail_url": "http://www.giantbomb.com/api/concept/3015-8129/",
488
+ "id": 8129,
489
+ "name": "PAX Prime 2014",
490
+ "site_detail_url": "http://www.giantbomb.com/pax-prime-2014/3015-8129/"
491
+ },
492
+ {
493
+ "api_detail_url": "http://www.giantbomb.com/api/concept/3015-3097/",
494
+ "id": 3097,
495
+ "name": "Ghost Racer",
496
+ "site_detail_url": "http://www.giantbomb.com/ghost-racer/3015-3097/"
497
+ }
498
+ ],
499
+ "developers": [
500
+ {
501
+ "api_detail_url": "http://www.giantbomb.com/api/company/3010-4485/",
502
+ "id": 4485,
503
+ "name": "Evolution Studios Ltd",
504
+ "site_detail_url": "http://www.giantbomb.com/evolution-studios-ltd/3010-4485/"
505
+ }
506
+ ],
507
+ "first_appearance_characters": null,
508
+ "first_appearance_concepts": [
509
+ {
510
+ "api_detail_url": "http://www.giantbomb.com/api/concept/3015-7641/",
511
+ "id": 7641,
512
+ "name": "Companion App",
513
+ "site_detail_url": "http://www.giantbomb.com/companion-app/3015-7641/"
514
+ },
515
+ {
516
+ "api_detail_url": "http://www.giantbomb.com/api/concept/3015-198/",
517
+ "id": 198,
518
+ "name": "PlayStation Trophies",
519
+ "site_detail_url": "http://www.giantbomb.com/playstation-trophies/3015-198/"
520
+ },
521
+ {
522
+ "api_detail_url": "http://www.giantbomb.com/api/concept/3015-5817/",
523
+ "id": 5817,
524
+ "name": "PlayStation Plus",
525
+ "site_detail_url": "http://www.giantbomb.com/playstation-plus/3015-5817/"
526
+ },
527
+ {
528
+ "api_detail_url": "http://www.giantbomb.com/api/concept/3015-6740/",
529
+ "id": 6740,
530
+ "name": "PlayStation Mobile",
531
+ "site_detail_url": "http://www.giantbomb.com/playstation-mobile/3015-6740/"
532
+ },
533
+ {
534
+ "api_detail_url": "http://www.giantbomb.com/api/concept/3015-2623/",
535
+ "id": 2623,
536
+ "name": "PlayStation Network",
537
+ "site_detail_url": "http://www.giantbomb.com/playstation-network/3015-2623/"
538
+ },
539
+ {
540
+ "api_detail_url": "http://www.giantbomb.com/api/concept/3015-1665/",
541
+ "id": 1665,
542
+ "name": "Dashboard View",
543
+ "site_detail_url": "http://www.giantbomb.com/dashboard-view/3015-1665/"
544
+ },
545
+ {
546
+ "api_detail_url": "http://www.giantbomb.com/api/concept/3015-5677/",
547
+ "id": 5677,
548
+ "name": "Licensed Cars",
549
+ "site_detail_url": "http://www.giantbomb.com/licensed-cars/3015-5677/"
550
+ },
551
+ {
552
+ "api_detail_url": "http://www.giantbomb.com/api/concept/3015-2254/",
553
+ "id": 2254,
554
+ "name": "Social Link",
555
+ "site_detail_url": "http://www.giantbomb.com/social-link/3015-2254/"
556
+ },
557
+ {
558
+ "api_detail_url": "http://www.giantbomb.com/api/concept/3015-939/",
559
+ "id": 939,
560
+ "name": "Multiplayer Party System",
561
+ "site_detail_url": "http://www.giantbomb.com/multiplayer-party-system/3015-939/"
562
+ },
563
+ {
564
+ "api_detail_url": "http://www.giantbomb.com/api/concept/3015-7792/",
565
+ "id": 7792,
566
+ "name": "Gamescom 2013",
567
+ "site_detail_url": "http://www.giantbomb.com/gamescom-2013/3015-7792/"
568
+ },
569
+ {
570
+ "api_detail_url": "http://www.giantbomb.com/api/concept/3015-7596/",
571
+ "id": 7596,
572
+ "name": "PAX Prime 2013",
573
+ "site_detail_url": "http://www.giantbomb.com/pax-prime-2013/3015-7596/"
574
+ },
575
+ {
576
+ "api_detail_url": "http://www.giantbomb.com/api/concept/3015-7932/",
577
+ "id": 7932,
578
+ "name": "E3 2014",
579
+ "site_detail_url": "http://www.giantbomb.com/e3-2014/3015-7932/"
580
+ },
581
+ {
582
+ "api_detail_url": "http://www.giantbomb.com/api/concept/3015-357/",
583
+ "id": 357,
584
+ "name": "Realism",
585
+ "site_detail_url": "http://www.giantbomb.com/realism/3015-357/"
586
+ },
587
+ {
588
+ "api_detail_url": "http://www.giantbomb.com/api/concept/3015-8493/",
589
+ "id": 8493,
590
+ "name": "Gamescom 2014",
591
+ "site_detail_url": "http://www.giantbomb.com/gamescom-2014/3015-8493/"
592
+ },
593
+ {
594
+ "api_detail_url": "http://www.giantbomb.com/api/concept/3015-7788/",
595
+ "id": 7788,
596
+ "name": "Tokyo Game Show 2013",
597
+ "site_detail_url": "http://www.giantbomb.com/tokyo-game-show-2013/3015-7788/"
598
+ },
599
+ {
600
+ "api_detail_url": "http://www.giantbomb.com/api/concept/3015-8511/",
601
+ "id": 8511,
602
+ "name": "Tokyo Game Show 2014",
603
+ "site_detail_url": "http://www.giantbomb.com/tokyo-game-show-2014/3015-8511/"
604
+ },
605
+ {
606
+ "api_detail_url": "http://www.giantbomb.com/api/concept/3015-8129/",
607
+ "id": 8129,
608
+ "name": "PAX Prime 2014",
609
+ "site_detail_url": "http://www.giantbomb.com/pax-prime-2014/3015-8129/"
610
+ },
611
+ {
612
+ "api_detail_url": "http://www.giantbomb.com/api/concept/3015-3097/",
613
+ "id": 3097,
614
+ "name": "Ghost Racer",
615
+ "site_detail_url": "http://www.giantbomb.com/ghost-racer/3015-3097/"
616
+ }
617
+ ],
618
+ "first_appearance_locations": [
619
+ {
620
+ "api_detail_url": "http://www.giantbomb.com/api/location/3035-396/",
621
+ "id": 396,
622
+ "name": "The United States of America",
623
+ "site_detail_url": "http://www.giantbomb.com/the-united-states-of-america/3035-396/"
624
+ }
625
+ ],
626
+ "first_appearance_objects": [
627
+ {
628
+ "api_detail_url": "http://www.giantbomb.com/api/object/3055-1950/",
629
+ "id": 1950,
630
+ "name": "Street Sign",
631
+ "site_detail_url": "http://www.giantbomb.com/street-sign/3055-1950/"
632
+ },
633
+ {
634
+ "api_detail_url": "http://www.giantbomb.com/api/object/3055-322/",
635
+ "id": 322,
636
+ "name": "Car",
637
+ "site_detail_url": "http://www.giantbomb.com/car/3055-322/"
638
+ }
639
+ ],
640
+ "first_appearance_people": null,
641
+ "franchises": null,
642
+ "genres": [
643
+ {
644
+ "api_detail_url": "http://www.giantbomb.com/api/genre/3060-6/",
645
+ "id": 6,
646
+ "name": "Driving/Racing",
647
+ "site_detail_url": "http://www.giantbomb.com/games/?wikiSlug=drivingracing&wikiTypeId=3060&wikiId=6&genre=6"
648
+ }
649
+ ],
650
+ "killed_characters": null,
651
+ "locations": [
652
+ {
653
+ "api_detail_url": "http://www.giantbomb.com/api/location/3035-396/",
654
+ "id": 396,
655
+ "name": "The United States of America",
656
+ "site_detail_url": "http://www.giantbomb.com/the-united-states-of-america/3035-396/"
657
+ }
658
+ ],
659
+ "objects": [
660
+ {
661
+ "api_detail_url": "http://www.giantbomb.com/api/object/3055-1950/",
662
+ "id": 1950,
663
+ "name": "Street Sign",
664
+ "site_detail_url": "http://www.giantbomb.com/street-sign/3055-1950/"
665
+ },
666
+ {
667
+ "api_detail_url": "http://www.giantbomb.com/api/object/3055-322/",
668
+ "id": 322,
669
+ "name": "Car",
670
+ "site_detail_url": "http://www.giantbomb.com/car/3055-322/"
671
+ }
672
+ ],
673
+ "people": null,
674
+ "publishers": [
675
+ {
676
+ "api_detail_url": "http://www.giantbomb.com/api/publisher/3010-46/",
677
+ "id": 46,
678
+ "name": "Sony Computer Entertainment Europe",
679
+ "site_detail_url": "http://www.giantbomb.com/sony-computer-entertainment-europe/3010-46/"
680
+ },
681
+ {
682
+ "api_detail_url": "http://www.giantbomb.com/api/publisher/3010-4485/",
683
+ "id": 4485,
684
+ "name": "Evolution Studios Ltd",
685
+ "site_detail_url": "http://www.giantbomb.com/evolution-studios-ltd/3010-4485/"
686
+ }
687
+ ],
688
+ "releases": [
689
+ {
690
+ "api_detail_url": "http://www.giantbomb.com/api/release/3050-125459/",
691
+ "id": 125459,
692
+ "name": "Driveclub",
693
+ "site_detail_url": "http://www.giantbomb.com/driveclub/3030-41693/releases/"
694
+ },
695
+ {
696
+ "api_detail_url": "http://www.giantbomb.com/api/release/3050-129382/",
697
+ "id": 129382,
698
+ "name": "Driveclub",
699
+ "site_detail_url": "http://www.giantbomb.com/driveclub/3030-41693/releases/"
700
+ },
701
+ {
702
+ "api_detail_url": "http://www.giantbomb.com/api/release/3050-130843/",
703
+ "id": 130843,
704
+ "name": "Driveclub PlayStation Plus Edition",
705
+ "site_detail_url": "http://www.giantbomb.com/driveclub/3030-41693/releases/"
706
+ },
707
+ {
708
+ "api_detail_url": "http://www.giantbomb.com/api/release/3050-137893/",
709
+ "id": 137893,
710
+ "name": "Driveclub",
711
+ "site_detail_url": "http://www.giantbomb.com/driveclub/3030-41693/releases/"
712
+ }
713
+ ],
714
+ "reviews": [
715
+ {
716
+ "api_detail_url": "http://www.giantbomb.com/api/review/1900-677/",
717
+ "id": 677,
718
+ "name": "Driveclub Review",
719
+ "site_detail_url": "http://www.giantbomb.com/reviews/driveclub-review/1900-677/"
720
+ }
721
+ ],
722
+ "similar_games": [
723
+ {
724
+ "api_detail_url": "http://www.giantbomb.com/api/game/3030-42693/",
725
+ "id": 42693,
726
+ "name": "Forza Motorsport 5",
727
+ "site_detail_url": "http://www.giantbomb.com/forza-motorsport-5/3030-42693/"
728
+ }
729
+ ],
730
+ "themes": [
731
+ {
732
+ "api_detail_url": "http://www.giantbomb.com/api/theme/3032-26/",
733
+ "id": 26,
734
+ "name": "Motorsports",
735
+ "site_detail_url": "http://www.giantbomb.com/games/?wikiSlug=motorsports&wikiTypeId=3032&wikiId=26&theme=26"
736
+ }
737
+ ]
738
+ },
739
+ "version": "1.0"
740
+ }