heroku-api 0.1.7 → 0.1.8

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -15,9 +15,19 @@ task :cache, [:api_key] do |task, args|
15
15
  else
16
16
  require "#{File.dirname(__FILE__)}/lib/heroku/api"
17
17
  heroku = Heroku::API.new(:api_key => args.api_key)
18
- data = Heroku::API::OkJson.encode(heroku.get_addons.body)
18
+
19
+ addons = Heroku::API::OkJson.encode(heroku.get_addons.body)
19
20
  File.open("#{File.dirname(__FILE__)}/lib/heroku/api/mock/cache/get_addons.json", 'w') do |file|
20
- file.write(data)
21
+ file.write(addons)
22
+ end
23
+
24
+ user = heroku.get_user.body
25
+ user["email"] = "user@example.com"
26
+ user["id"] = "123456@users.heroku.com"
27
+ user = Heroku::API::OkJson.encode(user)
28
+ File.open("#{File.dirname(__FILE__)}/lib/heroku/api/mock/cache/get_user.json", 'w') do |file|
29
+ file.write(user)
21
30
  end
31
+
22
32
  end
23
33
  end
data/changelog.txt CHANGED
@@ -1,25 +1,41 @@
1
+ 0.1.8 05/21/2012
2
+ ================
3
+
4
+ fix tests to be individually runnable
5
+ update cache function to get user data
6
+ update domain tests to match new default plugins
7
+ update collaborators mocks to be more accurate
8
+ update domain tests to use random_domain
9
+ use better transfer targets in app tests
10
+ fix timestamp generation in mocks
11
+ fix release creation in mocks
12
+ fix release rollback mocks to rollback to last when no version is given
13
+ more accurate addons mocks
14
+ more accurate process mocks for attached processes
15
+
16
+
1
17
  0.1.7 05/15/2012
2
18
  ================
3
19
 
4
- # consolidate NotFound error handling to work more like other errors
5
- # fixes for ps:scale mock accuracy
6
- # fix default command for cedar web process mocks
20
+ consolidate NotFound error handling to work more like other errors
21
+ fixes for ps:scale mock accuracy
22
+ fix default command for cedar web process mocks
7
23
 
8
24
  0.1.6 05/09/2012
9
25
  ================
10
26
 
11
- # fixes for GET /apps/:app/releases/:release mocks
27
+ fixes for GET /apps/:app/releases/:release mocks
12
28
 
13
29
  0.1.5 05/09/2012
14
30
  ================
15
31
 
16
- # add support for GET /apps/:app/releases/current
32
+ add support for GET /apps/:app/releases/current
17
33
 
18
34
  0.1.4 05/09/2012
19
35
  ================
20
36
 
21
- # add DELETE /domains
22
- # add POST /login
37
+ add DELETE /domains
38
+ add POST /login
23
39
 
24
40
  0.1.3 05/03/2012
25
41
  ================
@@ -35,8 +35,11 @@ module Heroku
35
35
 
36
36
  def self.add_mock_app_addon(mock_data, app, addon)
37
37
  addon_data = get_mock_addon(mock_data, addon)
38
- mock_data[:addons][app] << addon_data.reject {|key, value| !['beta', 'configured', 'description', 'name', 'state', 'url'].include?(key)}
39
- version = mock_data[:releases][app].map {|release| release['name'][1..-1].to_i}.max || 0
38
+ mock_data[:addons][app] << addon_data.reject {|key, value| !['attachable', 'beta', 'configured', 'consumes_dyno_hours', 'description', 'group_description', 'name', 'plan_description', 'price', 'slug', 'state', 'terms_of_service', 'url'].include?(key)}
39
+ add_mock_release(mock_data, app, {'descr' => "Add-on add #{addon_data['name']}"})
40
+ end
41
+
42
+ def self.add_mock_release(mock_data, app, release_data)
40
43
  env = if get_mock_app(mock_data, app)['stack'] == 'cedar'
41
44
  {
42
45
  'BUNDLE_WITHOUT' => 'development:test',
@@ -48,16 +51,17 @@ module Heroku
48
51
  else
49
52
  {}
50
53
  end
54
+ version = mock_data[:releases][app].map {|release| release['name'][1..-1].to_i}.max || 0
51
55
  mock_data[:releases][app] << {
52
56
  'addons' => mock_data[:addons][app].map {|addon| addon['name']},
53
57
  'commit' => nil,
54
58
  'created_at' => timestamp,
55
- 'descr' => "Add-on add #{addon_data['name']}",
59
+ 'descr' => "",
56
60
  'env' => env,
57
61
  'name' => "v#{version + 1}",
58
62
  'pstable' => { 'web' => '' },
59
63
  'user' => 'email@example.com'
60
- }
64
+ }.merge(release_data)
61
65
  end
62
66
 
63
67
  def self.get_mock_addon(mock_data, addon)
@@ -101,13 +105,7 @@ module Heroku
101
105
  def self.get_mock_processes(mock_data, app)
102
106
  mock_data[:ps][app].map do |ps|
103
107
 
104
- # swap day/month positions for Time.parse
105
- time_parts = ps['transitioned_at'].split(' ')
106
- date_parts = time_parts.first.split('/')
107
- date_parts[1], date_parts[2] = date_parts[2], date_parts[1]
108
- time_parts[0] = date_parts.join('/')
109
- munged_time = time_parts.join(' ')
110
- elapsed = Time.now.to_i - Time.parse(munged_time).to_i
108
+ elapsed = Time.now.to_i - Time.parse(ps['transitioned_at']).to_i
111
109
  ps['elapsed'] = elapsed
112
110
 
113
111
  pretty_elapsed = if elapsed < 60
@@ -138,28 +136,7 @@ module Heroku
138
136
  def self.remove_mock_app_addon(mock_data, app, addon)
139
137
  addon_data = mock_data[:addons][app].detect {|addon_data| addon_data['name'] == addon}
140
138
  mock_data[:addons][app].delete(addon_data)
141
- version = mock_data[:releases][app].map {|release| release['name'][1..-1].to_i}.max || 0
142
- env = if get_mock_app(mock_data, app)['stack'] == 'cedar'
143
- {
144
- 'BUNDLE_WITHOUT' => 'development:test',
145
- 'DATABASE_URL' => 'postgres://username:password@ec2-123-123-123-123.compute-1.amazonaws.com/username',
146
- 'LANG' => 'en_US.UTF-8',
147
- 'RACK_ENV' => 'production',
148
- 'SHARED_DATABASE_URL' => 'postgres://username:password@ec2-123-123-123-123.compute-1.amazonaws.com/username'
149
- }
150
- else
151
- {}
152
- end
153
- mock_data[:releases][app] << {
154
- 'addons' => mock_data[:addons][app].map {|addon| addon['name']},
155
- 'commit' => nil,
156
- 'created_at' => timestamp,
157
- 'descr' => "Add-on remove #{addon_data['name']}",
158
- 'env' => env,
159
- 'name' => "v#{version + 1}",
160
- 'pstable' => { 'web' => '' },
161
- 'user' => 'email@example.com'
162
- }
139
+ add_mock_release(mock_data, app, {'descr' => "Add-on remove #{addon_data['name']}"})
163
140
  end
164
141
 
165
142
  def self.with_mock_app(mock_data, app, &block)
@@ -171,7 +148,7 @@ module Heroku
171
148
  end
172
149
 
173
150
  def self.timestamp
174
- Time.now.strftime("%G/%d/%m %H:%M:%S %z")
151
+ Time.now.strftime("%G/%m/%d %H:%M:%S %z")
175
152
  end
176
153
 
177
154
  end
@@ -97,7 +97,7 @@ module Heroku
97
97
  # addon does not exist
98
98
  {
99
99
  :body => Heroku::API::OkJson.encode({'error' => "Add-on not found."}),
100
- :status => 422
100
+ :status => 404
101
101
  }
102
102
  end
103
103
  end
@@ -118,7 +118,7 @@ module Heroku
118
118
  add_mock_app_addon(mock_data, app, addon)
119
119
  {
120
120
  :body => Heroku::API::OkJson.encode({
121
- "message" => nil,
121
+ "message" => 'Plan upgraded',
122
122
  "price" => get_mock_addon_price(mock_data, addon),
123
123
  "status" => 'Updated'
124
124
  }),
@@ -142,7 +142,7 @@ module Heroku
142
142
  # addon does not exist
143
143
  {
144
144
  :body => Heroku::API::OkJson.encode({'error' => "Add-on not found."}),
145
- :status => 422
145
+ :status => 404
146
146
  }
147
147
  end
148
148
  end
@@ -75,7 +75,8 @@ module Heroku
75
75
  mock_data[:apps] << app_data
76
76
  mock_data[:collaborators][app] = [{
77
77
  'access' => 'edit',
78
- 'email' => 'email@example.com'
78
+ 'email' => 'email@example.com',
79
+ 'name' => nil
79
80
  }]
80
81
  mock_data[:config_vars][app] = {}
81
82
  mock_data[:domains][app] = []
@@ -96,9 +97,7 @@ module Heroku
96
97
  }]
97
98
  mock_data[:releases][app] = []
98
99
 
99
- add_mock_app_addon(mock_data, app, 'logging:basic')
100
100
  if stack == 'cedar'
101
- add_mock_app_addon(mock_data, app, 'releases:basic')
102
101
  mock_data[:ps][app].first['command'] = 'bundle exec thin start -p $PORT'
103
102
  mock_data[:ps][app].first['type'] = 'Ps'
104
103
  else
@@ -1 +1 @@
1
- [{"state":"public","url":null,"beta":false,"name":"heroku-shared-postgresql:devcloud","description":"Heroku Shared PostgreSQL Devcloud"},{"url":"https://addons.heroku.com/addons/logentries:proto","state":"public","name":"logentries:proto","beta":false,"price_cents":1000,"id":"https://addons.heroku.com/addons/logentries:proto","description":"Logentries Proto","price_unit":"month"},{"state":"public","url":null,"beta":false,"name":"shared-database:5mb","description":"Shared Database 5MB"},{"url":"https://addons.heroku.com/addons/chargify:launch","state":"public","name":"chargify:launch","beta":false,"price_cents":3900,"id":"https://addons.heroku.com/addons/chargify:launch","description":"Chargify Launch","price_unit":"month"},{"url":"https://addons.heroku.com/addons/blitz:5000","state":"public","name":"blitz:5000","beta":false,"price_cents":129900,"id":"https://addons.heroku.com/addons/blitz:5000","description":"Blitz 5000","price_unit":"month"},{"state":"public","url":null,"beta":false,"name":"shared-database:20gb","description":"Shared Database 20GB"},{"url":"https://addons.heroku.com/addons/custom_domains:basic","state":"disabled","name":"custom_domains:basic","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/custom_domains:basic","description":"Custom Domains Custom Domain","price_unit":"month"},{"url":"https://addons.heroku.com/addons/statsmix:basic","state":"public","name":"statsmix:basic","beta":false,"price_cents":1900,"id":"https://addons.heroku.com/addons/statsmix:basic","description":"StatsMix Basic","price_unit":"month"},{"url":"https://addons.heroku.com/addons/sentry:developer","state":"public","name":"sentry:developer","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/sentry:developer","description":"Sentry Developer","price_unit":"month"},{"url":"https://addons.heroku.com/addons/logentries:production","state":"public","name":"logentries:production","beta":false,"price_cents":25000,"id":"https://addons.heroku.com/addons/logentries:production","description":"Logentries Production","price_unit":"month"},{"url":"https://addons.heroku.com/addons/parse:test","state":"beta","name":"parse:test","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/parse:test","description":"Parse Test","price_unit":"month"},{"url":"https://addons.heroku.com/addons/iron_mq:steel","state":"public","name":"iron_mq:steel","beta":false,"price_cents":14999,"id":"https://addons.heroku.com/addons/iron_mq:steel","description":"IronMQ Steel","price_unit":"month"},{"url":"https://addons.heroku.com/addons/redistogo:mini","state":"public","name":"redistogo:mini","beta":false,"price_cents":500,"id":"https://addons.heroku.com/addons/redistogo:mini","description":"Redis To Go Mini","price_unit":"month"},{"url":"https://addons.heroku.com/addons/cloudant:oxygen","state":"public","name":"cloudant:oxygen","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/cloudant:oxygen","description":"Cloudant Oxygen","price_unit":"month"},{"url":"https://addons.heroku.com/addons/stackmob:bronze","state":"public","name":"stackmob:bronze","beta":false,"price_cents":500,"id":"https://addons.heroku.com/addons/stackmob:bronze","description":"Stackmob Bronze","price_unit":"month"},{"url":"https://addons.heroku.com/addons/sendgrid:gold","state":"public","name":"sendgrid:gold","beta":false,"price_cents":19995,"id":"https://addons.heroku.com/addons/sendgrid:gold","description":"SendGrid Gold","price_unit":"month"},{"state":"public","url":"https://addons.heroku.com/bundles","beta":false,"name":"bundles:unlimited","description":"Unlimited Bundles"},{"url":"https://addons.heroku.com/addons/memcache:5mb","state":"public","name":"memcache:5mb","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/memcache:5mb","description":"Memcache 5 MB","price_unit":"month"},{"url":"https://addons.heroku.com/addons/restful_metrics:medium","state":"public","name":"restful_metrics:medium","beta":false,"price_cents":7900,"id":"https://addons.heroku.com/addons/restful_metrics:medium","description":"RESTful Metrics Medium","price_unit":"month"},{"url":"https://addons.heroku.com/addons/redistogo:nano","state":"public","name":"redistogo:nano","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/redistogo:nano","description":"Redis To Go Nano","price_unit":"month"},{"url":"https://addons.heroku.com/addons/releases:basic","state":"disabled","name":"releases:basic","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/releases:basic","description":"Release Management Basic","price_unit":"month"},{"url":"https://addons.heroku.com/addons/loggly:squirrel","state":"public","name":"loggly:squirrel","beta":false,"price_cents":4900,"id":"https://addons.heroku.com/addons/loggly:squirrel","description":"Loggly Squirrel","price_unit":"month"},{"url":"https://addons.heroku.com/addons/pgbackups:auto-month","state":"public","name":"pgbackups:auto-month","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/pgbackups:auto-month","description":"PG Backups Auto - One Month Retention","price_unit":"month"},{"url":"https://addons.heroku.com/addons/moonshadosms:max","state":"public","name":"moonshadosms:max","beta":false,"price_cents":35000,"id":"https://addons.heroku.com/addons/moonshadosms:max","description":"Moonshado SMS Max","price_unit":"month"},{"url":"https://addons.heroku.com/addons/treasure-data:test","state":"public","name":"treasure-data:test","beta":true,"price_cents":0,"id":"https://addons.heroku.com/addons/treasure-data:test","description":"Treasure Data Hadoop Test","price_unit":"month"},{"state":"public","url":null,"beta":false,"name":"legacy-database:ninja","description":"Legacy Database Ninja"},{"url":"https://addons.heroku.com/addons/ssl:hostname","state":"public","name":"ssl:hostname","beta":false,"price_cents":2000,"id":"https://addons.heroku.com/addons/ssl:hostname","description":"SSL Hostname Based SSL","price_unit":"month"},{"url":"https://addons.heroku.com/addons/mongolab:large","state":"public","name":"mongolab:large","beta":false,"price_cents":4000,"id":"https://addons.heroku.com/addons/mongolab:large","description":"MongoLab Large","price_unit":"month"},{"url":"https://addons.heroku.com/addons/iron_mq:ore","state":"public","name":"iron_mq:ore","beta":false,"price_cents":999,"id":"https://addons.heroku.com/addons/iron_mq:ore","description":"IronMQ Ore","price_unit":"month"},{"url":"https://addons.heroku.com/addons/heroku-postgresql:fugu","state":"public","name":"heroku-postgresql:fugu","beta":false,"price_cents":40000,"id":"https://addons.heroku.com/addons/heroku-postgresql:fugu","description":"Heroku Postgres Fugu","price_unit":"month"},{"url":"https://addons.heroku.com/addons/redistogo:small","state":"public","name":"redistogo:small","beta":false,"price_cents":2500,"id":"https://addons.heroku.com/addons/redistogo:small","description":"Redis To Go Small","price_unit":"month"},{"url":"https://addons.heroku.com/addons/eshq:test","state":"beta","name":"eshq:test","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/eshq:test","description":"EventSource HQ Test","price_unit":"month"},{"url":"https://addons.heroku.com/addons/stillalive:starter","state":"public","name":"stillalive:starter","beta":false,"price_cents":700,"id":"https://addons.heroku.com/addons/stillalive:starter","description":"StillAlive Starter","price_unit":"month"},{"state":"public","url":null,"beta":false,"name":"redistogo:rho.large.vm","description":"Redis To Go Rho Mobile Large VM"},{"url":"https://addons.heroku.com/addons/websolr:platinum","state":"public","name":"websolr:platinum","beta":false,"price_cents":10000,"id":"https://addons.heroku.com/addons/websolr:platinum","description":"Websolr Platinum","price_unit":"month"},{"url":"https://addons.heroku.com/addons/chargify:max","state":"public","name":"chargify:max","beta":false,"price_cents":99900,"id":"https://addons.heroku.com/addons/chargify:max","description":"Chargify Max","price_unit":"month"},{"url":"https://addons.heroku.com/addons/mongohq:small","state":"public","name":"mongohq:small","beta":false,"price_cents":1500,"id":"https://addons.heroku.com/addons/mongohq:small","description":"MongoHQ MongoHQ Small","price_unit":"month"},{"url":"https://addons.heroku.com/addons/stackmob:gold","state":"public","name":"stackmob:gold","beta":false,"price_cents":8900,"id":"https://addons.heroku.com/addons/stackmob:gold","description":"Stackmob Gold","price_unit":"month"},{"url":"https://addons.heroku.com/addons/justonedb:double_charmed_xi","state":"public","name":"justonedb:double_charmed_xi","beta":false,"price_cents":49900,"id":"https://addons.heroku.com/addons/justonedb:double_charmed_xi","description":"JustOneDB - NewSQL Cloud Database Double Charmed Xi","price_unit":"month"},{"url":"https://addons.heroku.com/addons/adminium:test","state":"beta","name":"adminium:test","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/adminium:test","description":"Adminium Test","price_unit":"month"},{"url":"https://addons.heroku.com/addons/logging:basic","state":"disabled","name":"logging:basic","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/logging:basic","description":"Logging Basic","price_unit":"month"},{"url":"https://addons.heroku.com/addons/sendgrid:silver","state":"public","name":"sendgrid:silver","beta":false,"price_cents":7995,"id":"https://addons.heroku.com/addons/sendgrid:silver","description":"SendGrid Silver","price_unit":"month"},{"url":"https://addons.heroku.com/addons/cloudmailin:developer","state":"public","name":"cloudmailin:developer","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/cloudmailin:developer","description":"CloudMailIn Developer","price_unit":"month"},{"url":"https://addons.heroku.com/addons/sentry:enterprise","state":"public","name":"sentry:enterprise","beta":false,"price_cents":9900,"id":"https://addons.heroku.com/addons/sentry:enterprise","description":"Sentry Enterprise","price_unit":"month"},{"url":"https://addons.heroku.com/addons/neo4j:test","state":"public","name":"neo4j:test","beta":true,"price_cents":0,"id":"https://addons.heroku.com/addons/neo4j:test","description":"Neo4j Test","price_unit":"month"},{"url":"https://addons.heroku.com/addons/restful_metrics:x-large","state":"public","name":"restful_metrics:x-large","beta":false,"price_cents":99900,"id":"https://addons.heroku.com/addons/restful_metrics:x-large","description":"RESTful Metrics X-Large","price_unit":"month"},{"url":"https://addons.heroku.com/addons/websolr:titanium","state":"public","name":"websolr:titanium","beta":false,"price_cents":80000,"id":"https://addons.heroku.com/addons/websolr:titanium","description":"Websolr Titanium","price_unit":"month"},{"url":"https://addons.heroku.com/addons/mongolab:x-large","state":"public","name":"mongolab:x-large","beta":false,"price_cents":6500,"id":"https://addons.heroku.com/addons/mongolab:x-large","description":"MongoLab X-Large","price_unit":"month"},{"url":"https://addons.heroku.com/addons/statsmix:pro","state":"public","name":"statsmix:pro","beta":false,"price_cents":9900,"id":"https://addons.heroku.com/addons/statsmix:pro","description":"StatsMix Pro","price_unit":"month"},{"url":"https://addons.heroku.com/addons/stillalive:plus","state":"public","name":"stillalive:plus","beta":false,"price_cents":2500,"id":"https://addons.heroku.com/addons/stillalive:plus","description":"StillAlive Plus","price_unit":"month"},{"url":"https://addons.heroku.com/addons/tddium:plus","state":"public","name":"tddium:plus","beta":false,"price_cents":8000,"id":"https://addons.heroku.com/addons/tddium:plus","description":"Tddium Plus","price_unit":"month"},{"url":"https://addons.heroku.com/addons/mwiki:test","state":"public","name":"mwiki:test","beta":true,"price_cents":0,"id":"https://addons.heroku.com/addons/mwiki:test","description":"mWiki Test","price_unit":"month"},{"url":"https://addons.heroku.com/addons/rhoconnect:premium","state":"public","name":"rhoconnect:premium","beta":false,"price_cents":9900,"id":"https://addons.heroku.com/addons/rhoconnect:premium","description":"RhoConnect Premium","price_unit":"month"},{"url":"https://addons.heroku.com/addons/pgbackups:auto-year","state":"beta","name":"pgbackups:auto-year","beta":false,"price_cents":10000,"id":"https://addons.heroku.com/addons/pgbackups:auto-year","description":"PG Backups Auto - One Year Retention","price_unit":"month"},{"url":"https://addons.heroku.com/addons/restful_metrics:small","state":"public","name":"restful_metrics:small","beta":false,"price_cents":2900,"id":"https://addons.heroku.com/addons/restful_metrics:small","description":"RESTful Metrics Small","price_unit":"month"},{"url":"https://addons.heroku.com/addons/airbrake:production","state":"public","name":"airbrake:production","beta":false,"price_cents":1900,"id":"https://addons.heroku.com/addons/airbrake:production","description":"Airbrake Production","price_unit":"month"},{"url":"https://addons.heroku.com/addons/justonedb:lambda","state":"public","name":"justonedb:lambda","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/justonedb:lambda","description":"JustOneDB - NewSQL Cloud Database Lambda","price_unit":"month"},{"url":"https://addons.heroku.com/addons/statsmix:standard","state":"public","name":"statsmix:standard","beta":false,"price_cents":4900,"id":"https://addons.heroku.com/addons/statsmix:standard","description":"StatsMix Standard","price_unit":"month"},{"url":"https://addons.heroku.com/addons/iron_mq:rust","state":"public","name":"iron_mq:rust","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/iron_mq:rust","description":"IronMQ Rust","price_unit":"month"},{"url":"https://addons.heroku.com/addons/justonedb:sigma","state":"public","name":"justonedb:sigma","beta":false,"price_cents":1900,"id":"https://addons.heroku.com/addons/justonedb:sigma","description":"JustOneDB - NewSQL Cloud Database Sigma","price_unit":"month"},{"url":"https://addons.heroku.com/addons/heroku-postgresql:mecha","state":"public","name":"heroku-postgresql:mecha","beta":false,"price_cents":640000,"id":"https://addons.heroku.com/addons/heroku-postgresql:mecha","description":"Heroku Postgres Mecha","price_unit":"month"},{"url":"https://addons.heroku.com/addons/xeround:basic250","state":"public","name":"xeround:basic250","beta":false,"price_cents":3300,"id":"https://addons.heroku.com/addons/xeround:basic250","description":"Xeround Cloud Database Basic 250MB","price_unit":"month"},{"url":"https://addons.heroku.com/addons/flying_sphinx:wooden","state":"public","name":"flying_sphinx:wooden","beta":false,"price_cents":1200,"id":"https://addons.heroku.com/addons/flying_sphinx:wooden","description":"Flying Sphinx Wooden","price_unit":"month"},{"url":"https://addons.heroku.com/addons/loggly:woodchuck","state":"public","name":"loggly:woodchuck","beta":false,"price_cents":14900,"id":"https://addons.heroku.com/addons/loggly:woodchuck","description":"Loggly Woodchuck","price_unit":"month"},{"url":"https://addons.heroku.com/addons/sendgrid:bronze","state":"public","name":"sendgrid:bronze","beta":false,"price_cents":995,"id":"https://addons.heroku.com/addons/sendgrid:bronze","description":"SendGrid Bronze","price_unit":"month"},{"url":"https://addons.heroku.com/addons/securekey:fortnightly","state":"beta","name":"securekey:fortnightly","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/securekey:fortnightly","description":"Secure Key Fortnightly","price_unit":"month"},{"url":"https://addons.heroku.com/addons/progstr-filer:test","state":"public","name":"progstr-filer:test","beta":true,"price_cents":0,"id":"https://addons.heroku.com/addons/progstr-filer:test","description":"Progstr Filer Test","price_unit":"month"},{"url":"https://addons.heroku.com/addons/deployhooks:email","state":"public","name":"deployhooks:email","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/deployhooks:email","description":"Deploy Hooks Email Hook","price_unit":"month"},{"url":"https://addons.heroku.com/addons/websolr:chromium","state":"public","name":"websolr:chromium","beta":false,"price_cents":5000,"id":"https://addons.heroku.com/addons/websolr:chromium","description":"Websolr Chromium","price_unit":"month"},{"url":"https://addons.heroku.com/addons/tddium:standard","state":"public","name":"tddium:standard","beta":false,"price_cents":5000,"id":"https://addons.heroku.com/addons/tddium:standard","description":"Tddium Standard","price_unit":"month"},{"url":"https://addons.heroku.com/addons/blitline:producer","state":"public","name":"blitline:producer","beta":false,"price_cents":3599,"id":"https://addons.heroku.com/addons/blitline:producer","description":"Blitline Producer","price_unit":"month"},{"url":"https://addons.heroku.com/addons/cloudmailin:starter","state":"public","name":"cloudmailin:starter","beta":false,"price_cents":2500,"id":"https://addons.heroku.com/addons/cloudmailin:starter","description":"CloudMailIn Starter","price_unit":"month"},{"url":"https://addons.heroku.com/addons/bonsai:test","state":"public","name":"bonsai:test","beta":true,"price_cents":0,"id":"https://addons.heroku.com/addons/bonsai:test","description":"Bonsai ElasticSearch Test","price_unit":"month"},{"url":"https://addons.heroku.com/addons/cloudmailin:microplus","state":"public","name":"cloudmailin:microplus","beta":false,"price_cents":1700,"id":"https://addons.heroku.com/addons/cloudmailin:microplus","description":"CloudMailIn Micro Plus","price_unit":"month"},{"url":"https://addons.heroku.com/addons/zencoder:dev","state":"public","name":"zencoder:dev","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/zencoder:dev","description":"Zencoder Developer","price_unit":"month"},{"url":"https://addons.heroku.com/addons/logentries:ops","state":"public","name":"logentries:ops","beta":false,"price_cents":5000,"id":"https://addons.heroku.com/addons/logentries:ops","description":"Logentries Ops","price_unit":"month"},{"url":"https://addons.heroku.com/addons/airbrake:enterprise_production","state":"public","name":"airbrake:enterprise_production","beta":false,"price_cents":49900,"id":"https://addons.heroku.com/addons/airbrake:enterprise_production","description":"Airbrake Enterprise Production","price_unit":"month"},{"url":"https://addons.heroku.com/addons/cloudmailin:professional","state":"public","name":"cloudmailin:professional","beta":false,"price_cents":4500,"id":"https://addons.heroku.com/addons/cloudmailin:professional","description":"CloudMailIn Professional","price_unit":"month"},{"url":"https://addons.heroku.com/addons/pandastream:quad","state":"public","name":"pandastream:quad","beta":false,"price_cents":39600,"id":"https://addons.heroku.com/addons/pandastream:quad","description":"Panda Stream Quad","price_unit":"month"},{"url":"https://addons.heroku.com/addons/xeround:pro512","state":"public","name":"xeround:pro512","beta":false,"price_cents":9500,"id":"https://addons.heroku.com/addons/xeround:pro512","description":"Xeround Cloud Database Pro 0.5GB","price_unit":"month"},{"url":"https://addons.heroku.com/addons/mongohq:rs_small","state":"public","name":"mongohq:rs_small","beta":false,"price_cents":14900,"id":"https://addons.heroku.com/addons/mongohq:rs_small","description":"MongoHQ Replica Set Small","price_unit":"month"},{"url":"https://addons.heroku.com/addons/pubnub:starter","state":"public","name":"pubnub:starter","beta":false,"price_cents":4999,"id":"https://addons.heroku.com/addons/pubnub:starter","description":"PubNub Starter","price_unit":"month"},{"url":"https://addons.heroku.com/addons/stackmob:iron","state":"public","name":"stackmob:iron","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/stackmob:iron","description":"Stackmob Iron","price_unit":"month"},{"url":"https://addons.heroku.com/addons/memcachier:test","state":"public","name":"memcachier:test","beta":true,"price_cents":0,"id":"https://addons.heroku.com/addons/memcachier:test","description":"MemCachier Test","price_unit":"month"},{"url":"https://addons.heroku.com/addons/zerigo_dns:basic","state":"public","name":"zerigo_dns:basic","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/zerigo_dns:basic","description":"Zerigo DNS Zerigo Basic","price_unit":"month"},{"url":"https://addons.heroku.com/addons/xeround:starter","state":"public","name":"xeround:starter","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/xeround:starter","description":"Xeround Cloud Database Starter","price_unit":"month"},{"url":"https://addons.heroku.com/addons/ranger:elite","state":"public","name":"ranger:elite","beta":false,"price_cents":2500,"id":"https://addons.heroku.com/addons/ranger:elite","description":"Ranger Elite","price_unit":"month"},{"url":"https://addons.heroku.com/addons/deployhooks:campfire","state":"public","name":"deployhooks:campfire","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/deployhooks:campfire","description":"Deploy Hooks Campfire Hook","price_unit":"month"},{"state":"public","url":null,"beta":false,"name":"legacy-database:zilla","description":"Legacy Database Zilla"},{"url":"https://addons.heroku.com/addons/ssl:piggyback","state":"disabled","name":"ssl:piggyback","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/ssl:piggyback","description":"SSL Piggyback SSL","price_unit":"month"},{"url":"https://addons.heroku.com/addons/ranger:recon","state":"public","name":"ranger:recon","beta":false,"price_cents":500,"id":"https://addons.heroku.com/addons/ranger:recon","description":"Ranger Recon","price_unit":"month"},{"url":"https://addons.heroku.com/addons/cleardb:punch","state":"public","name":"cleardb:punch","beta":false,"price_cents":999,"id":"https://addons.heroku.com/addons/cleardb:punch","description":"ClearDB MySQL Database Punch","price_unit":"month"},{"url":"https://addons.heroku.com/addons/chargify:developer","state":"public","name":"chargify:developer","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/chargify:developer","description":"Chargify Developer","price_unit":"month"},{"url":"https://addons.heroku.com/addons/sentry:pro","state":"public","name":"sentry:pro","beta":false,"price_cents":700,"id":"https://addons.heroku.com/addons/sentry:pro","description":"Sentry Pro","price_unit":"month"},{"url":"https://addons.heroku.com/addons/cloudmailin:micro","state":"public","name":"cloudmailin:micro","beta":false,"price_cents":900,"id":"https://addons.heroku.com/addons/cloudmailin:micro","description":"CloudMailIn Micro","price_unit":"month"},{"url":"https://addons.heroku.com/addons/loggly:beaver","state":"public","name":"loggly:beaver","beta":false,"price_cents":29900,"id":"https://addons.heroku.com/addons/loggly:beaver","description":"Loggly Beaver","price_unit":"month"},{"url":"https://addons.heroku.com/addons/justonedb:charmed_xi","state":"public","name":"justonedb:charmed_xi","beta":false,"price_cents":34900,"id":"https://addons.heroku.com/addons/justonedb:charmed_xi","description":"JustOneDB - NewSQL Cloud Database Charmed Xi","price_unit":"month"},{"url":"https://addons.heroku.com/addons/boxcar:test","state":"beta","name":"boxcar:test","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/boxcar:test","description":"Boxcar Push Notifications Test","price_unit":"month"},{"url":"https://addons.heroku.com/addons/tddium:mega","state":"public","name":"tddium:mega","beta":false,"price_cents":30000,"id":"https://addons.heroku.com/addons/tddium:mega","description":"Tddium Mega","price_unit":"month"},{"url":"https://addons.heroku.com/addons/logging:advanced","state":"disabled","name":"logging:advanced","beta":false,"price_cents":10000,"id":"https://addons.heroku.com/addons/logging:advanced","description":"Logging Advanced","price_unit":"month"},{"state":"public","url":null,"beta":false,"name":"legacy-database:ronin","description":"Legacy Database Ronin"},{"url":"https://addons.heroku.com/addons/zencoder:100k","state":"public","name":"zencoder:100k","beta":false,"price_cents":200000,"id":"https://addons.heroku.com/addons/zencoder:100k","description":"Zencoder 100,000 Minutes","price_unit":"month"},{"url":"https://addons.heroku.com/addons/mongohq:micro","state":"public","name":"mongohq:micro","beta":false,"price_cents":500,"id":"https://addons.heroku.com/addons/mongohq:micro","description":"MongoHQ MongoHQ Micro","price_unit":"month"},{"url":"https://addons.heroku.com/addons/pandastream:duo","state":"public","name":"pandastream:duo","beta":false,"price_cents":19800,"id":"https://addons.heroku.com/addons/pandastream:duo","description":"Panda Stream Duo","price_unit":"month"},{"url":"https://addons.heroku.com/addons/moonshadosms:plus","state":"public","name":"moonshadosms:plus","beta":false,"price_cents":2000,"id":"https://addons.heroku.com/addons/moonshadosms:plus","description":"Moonshado SMS Plus","price_unit":"month"},{"url":"https://addons.heroku.com/addons/cloudant:helium","state":"public","name":"cloudant:helium","beta":false,"price_cents":11900,"id":"https://addons.heroku.com/addons/cloudant:helium","description":"Cloudant Helium","price_unit":"month"},{"url":"https://addons.heroku.com/addons/heroku-postgresql:baku","state":"public","name":"heroku-postgresql:baku","beta":false,"price_cents":320000,"id":"https://addons.heroku.com/addons/heroku-postgresql:baku","description":"Heroku Postgres Baku","price_unit":"month"},{"url":"https://addons.heroku.com/addons/ssl:ip","state":"public","name":"ssl:ip","beta":false,"price_cents":10000,"id":"https://addons.heroku.com/addons/ssl:ip","description":"SSL IP Based Custom SSL","price_unit":"month"},{"url":"https://addons.heroku.com/addons/newrelic:professional","state":"public","name":"newrelic:professional","beta":false,"price_cents":6,"id":"https://addons.heroku.com/addons/newrelic:professional","description":"New Relic Professional","price_unit":"dyno_hour"},{"url":"https://addons.heroku.com/addons/searchify:starter","state":"public","name":"searchify:starter","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/searchify:starter","description":"Searchify IndexTank Starter","price_unit":"month"},{"url":"https://addons.heroku.com/addons/pubnub:popular","state":"public","name":"pubnub:popular","beta":false,"price_cents":24999,"id":"https://addons.heroku.com/addons/pubnub:popular","description":"PubNub Popular","price_unit":"month"},{"url":"https://addons.heroku.com/addons/docraptor:basic","state":"public","name":"docraptor:basic","beta":false,"price_cents":1900,"id":"https://addons.heroku.com/addons/docraptor:basic","description":"DocRaptor Basic","price_unit":"month"},{"url":"https://addons.heroku.com/addons/dbinsights:basic","state":"public","name":"dbinsights:basic","beta":false,"price_cents":2000,"id":"https://addons.heroku.com/addons/dbinsights:basic","description":"DbInsights Basic","price_unit":"month"},{"url":"https://addons.heroku.com/addons/memcache:100mb","state":"public","name":"memcache:100mb","beta":false,"price_cents":2000,"id":"https://addons.heroku.com/addons/memcache:100mb","description":"Memcache 100 MB","price_unit":"month"},{"url":"https://addons.heroku.com/addons/tddium:basic","state":"public","name":"tddium:basic","beta":false,"price_cents":2000,"id":"https://addons.heroku.com/addons/tddium:basic","description":"Tddium Basic","price_unit":"month"},{"url":"https://addons.heroku.com/addons/amazon_rds","state":"public","name":"amazon_rds","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/amazon_rds","description":"Amazon RDS Amazon RDS Integration","price_unit":"month"},{"url":"https://addons.heroku.com/addons/chargify:grow","state":"public","name":"chargify:grow","beta":false,"price_cents":34900,"id":"https://addons.heroku.com/addons/chargify:grow","description":"Chargify Grow","price_unit":"month"},{"url":"https://addons.heroku.com/addons/stillalive:basic","state":"public","name":"stillalive:basic","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/stillalive:basic","description":"StillAlive Basic","price_unit":"month"},{"url":"https://addons.heroku.com/addons/cleardb:ignite","state":"public","name":"cleardb:ignite","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/cleardb:ignite","description":"ClearDB MySQL Database Ignite","price_unit":"month"},{"url":"https://addons.heroku.com/addons/searchify:plus","state":"public","name":"searchify:plus","beta":false,"price_cents":4900,"id":"https://addons.heroku.com/addons/searchify:plus","description":"Searchify IndexTank Plus","price_unit":"month"},{"url":"https://addons.heroku.com/addons/xeround:basic100","state":"public","name":"xeround:basic100","beta":false,"price_cents":1700,"id":"https://addons.heroku.com/addons/xeround:basic100","description":"Xeround Cloud Database Basic 100MB","price_unit":"month"},{"url":"https://addons.heroku.com/addons/tronprint:test","state":"public","name":"tronprint:test","beta":true,"price_cents":0,"id":"https://addons.heroku.com/addons/tronprint:test","description":"Tronprint Test","price_unit":"month"},{"url":"https://addons.heroku.com/addons/blitline:rockstar","state":"public","name":"blitline:rockstar","beta":false,"price_cents":6599,"id":"https://addons.heroku.com/addons/blitline:rockstar","description":"Blitline Rockstar","price_unit":"month"},{"url":"https://addons.heroku.com/addons/loggly:mole","state":"public","name":"loggly:mole","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/loggly:mole","description":"Loggly Mole","price_unit":"month"},{"url":"https://addons.heroku.com/addons/airbrake:production_pro_plus","state":"public","name":"airbrake:production_pro_plus","beta":false,"price_cents":19900,"id":"https://addons.heroku.com/addons/airbrake:production_pro_plus","description":"Airbrake Production Pro Plus","price_unit":"month"},{"url":"https://addons.heroku.com/addons/flying_sphinx:ceramic","state":"public","name":"flying_sphinx:ceramic","beta":false,"price_cents":5500,"id":"https://addons.heroku.com/addons/flying_sphinx:ceramic","description":"Flying Sphinx Ceramic","price_unit":"month"},{"url":"https://addons.heroku.com/addons/loggly:capybara","state":"public","name":"loggly:capybara","beta":false,"price_cents":59900,"id":"https://addons.heroku.com/addons/loggly:capybara","description":"Loggly Capybara","price_unit":"month"},{"url":"https://addons.heroku.com/addons/zencoder:10k","state":"public","name":"zencoder:10k","beta":false,"price_cents":30000,"id":"https://addons.heroku.com/addons/zencoder:10k","description":"Zencoder 10,000 Minutes","price_unit":"month"},{"url":"https://addons.heroku.com/addons/mongolab:medium","state":"public","name":"mongolab:medium","beta":false,"price_cents":2000,"id":"https://addons.heroku.com/addons/mongolab:medium","description":"MongoLab Medium","price_unit":"month"},{"url":"https://addons.heroku.com/addons/progstr:test","state":"public","name":"progstr:test","beta":true,"price_cents":0,"id":"https://addons.heroku.com/addons/progstr:test","description":"Progstr Logger Test","price_unit":"month"},{"url":"https://addons.heroku.com/addons/cassandraio:test","state":"public","name":"cassandraio:test","beta":true,"price_cents":0,"id":"https://addons.heroku.com/addons/cassandraio:test","description":"Cassandra.io Test","price_unit":"month"},{"url":"https://addons.heroku.com/addons/database-com:test","state":"beta","name":"database-com:test","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/database-com:test","description":"database.com Test","price_unit":"month"},{"url":"https://addons.heroku.com/addons/zencoder:2k","state":"public","name":"zencoder:2k","beta":false,"price_cents":8000,"id":"https://addons.heroku.com/addons/zencoder:2k","description":"Zencoder 2,000 Minutes","price_unit":"month"},{"url":"https://addons.heroku.com/addons/heroku-shared-postgresql:basic","state":"public","name":"heroku-shared-postgresql:basic","beta":true,"price_cents":0,"id":"https://addons.heroku.com/addons/heroku-shared-postgresql:basic","description":"Heroku Shared PostgreSQL Basic","price_unit":"month"},{"url":"https://addons.heroku.com/addons/cloudant:krypton","state":"public","name":"cloudant:krypton","beta":false,"price_cents":39900,"id":"https://addons.heroku.com/addons/cloudant:krypton","description":"Cloudant Krypton","price_unit":"month"},{"url":"https://addons.heroku.com/addons/pgbackups:auto-week","state":"public","name":"pgbackups:auto-week","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/pgbackups:auto-week","description":"PG Backups Auto - One Week Retention","price_unit":"month"},{"url":"https://addons.heroku.com/addons/iron_worker:titanium","state":"public","name":"iron_worker:titanium","beta":false,"price_cents":99900,"id":"https://addons.heroku.com/addons/iron_worker:titanium","description":"IronWorker Titanium","price_unit":"month"},{"url":"https://addons.heroku.com/addons/loggly:gopher","state":"public","name":"loggly:gopher","beta":false,"price_cents":9900,"id":"https://addons.heroku.com/addons/loggly:gopher","description":"Loggly Gopher","price_unit":"month"},{"url":"https://addons.heroku.com/addons/logentries:tryit","state":"public","name":"logentries:tryit","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/logentries:tryit","description":"Logentries TryIt","price_unit":"month"},{"url":"https://addons.heroku.com/addons/deployhooks:basecamp","state":"public","name":"deployhooks:basecamp","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/deployhooks:basecamp","description":"Deploy Hooks Basecamp Hook","price_unit":"month"},{"url":"https://addons.heroku.com/addons/blitz:250","state":"public","name":"blitz:250","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/blitz:250","description":"Blitz 250","price_unit":"month"},{"url":"https://addons.heroku.com/addons/logging:expanded","state":"disabled","name":"logging:expanded","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/logging:expanded","description":"Logging Expanded","price_unit":"month"},{"state":"public","url":null,"beta":false,"name":"flying_sphinx:marble","description":"Flying Sphinx Marble"},{"url":"https://addons.heroku.com/addons/mailgun:starter","state":"public","name":"mailgun:starter","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/mailgun:starter","description":"Mailgun Starter","price_unit":"month"},{"state":"public","url":"http://getexceptional.com/","beta":false,"name":"exceptional:basic","description":"Exceptional Basic"},{"url":"https://addons.heroku.com/addons/pandastream:sandbox","state":"public","name":"pandastream:sandbox","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/pandastream:sandbox","description":"Panda Stream Sandbox","price_unit":"month"},{"url":"https://addons.heroku.com/addons/mongolab:starter","state":"public","name":"mongolab:starter","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/mongolab:starter","description":"MongoLab Starter","price_unit":"month"},{"url":"https://addons.heroku.com/addons/redistogo:medium","state":"public","name":"redistogo:medium","beta":false,"price_cents":11000,"id":"https://addons.heroku.com/addons/redistogo:medium","description":"Redis To Go Medium","price_unit":"month"},{"url":"https://addons.heroku.com/addons/iron_worker:starter","state":"public","name":"iron_worker:starter","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/iron_worker:starter","description":"IronWorker Starter","price_unit":"month"},{"url":"https://addons.heroku.com/addons/blitline:deployer","state":"public","name":"blitline:deployer","beta":false,"price_cents":1299,"id":"https://addons.heroku.com/addons/blitline:deployer","description":"Blitline Deployer","price_unit":"month"},{"url":"https://addons.heroku.com/addons/docraptor:max","state":"public","name":"docraptor:max","beta":false,"price_cents":18900,"id":"https://addons.heroku.com/addons/docraptor:max","description":"DocRaptor Max","price_unit":"month"},{"url":"https://addons.heroku.com/addons/zencoder:40k","state":"public","name":"zencoder:40k","beta":false,"price_cents":120000,"id":"https://addons.heroku.com/addons/zencoder:40k","description":"Zencoder 40,000 Minutes","price_unit":"month"},{"url":"https://addons.heroku.com/addons/memcache:1gb","state":"public","name":"memcache:1gb","beta":false,"price_cents":9000,"id":"https://addons.heroku.com/addons/memcache:1gb","description":"Memcache 1 GB","price_unit":"month"},{"url":"https://addons.heroku.com/addons/apigee_facebook:basic","state":"public","name":"apigee_facebook:basic","beta":true,"price_cents":0,"id":"https://addons.heroku.com/addons/apigee_facebook:basic","description":"Apigee for Facebook Basic","price_unit":"month"},{"url":"https://addons.heroku.com/addons/pandastream:solo","state":"public","name":"pandastream:solo","beta":false,"price_cents":9900,"id":"https://addons.heroku.com/addons/pandastream:solo","description":"Panda Stream Solo","price_unit":"month"},{"url":"https://addons.heroku.com/addons/logentries:concept","state":"public","name":"logentries:concept","beta":false,"price_cents":500,"id":"https://addons.heroku.com/addons/logentries:concept","description":"Logentries Concept","price_unit":"month"},{"url":"https://addons.heroku.com/addons/zerigo_dns:tier1","state":"public","name":"zerigo_dns:tier1","beta":false,"price_cents":700,"id":"https://addons.heroku.com/addons/zerigo_dns:tier1","description":"Zerigo DNS Zerigo Tier 1","price_unit":"month"},{"url":"https://addons.heroku.com/addons/cron:daily","state":"public","name":"cron:daily","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/cron:daily","description":"Cron Daily Cron","price_unit":"month"},{"url":"https://addons.heroku.com/addons/zerigo_dns:tier2","state":"public","name":"zerigo_dns:tier2","beta":false,"price_cents":2000,"id":"https://addons.heroku.com/addons/zerigo_dns:tier2","description":"Zerigo DNS Zerigo Tier 2","price_unit":"month"},{"url":"https://addons.heroku.com/addons/pusher:bootstrap","state":"public","name":"pusher:bootstrap","beta":false,"price_cents":1900,"id":"https://addons.heroku.com/addons/pusher:bootstrap","description":"Pusher Bootstrap","price_unit":"month"},{"url":"https://addons.heroku.com/addons/flying_sphinx:granite","state":"public","name":"flying_sphinx:granite","beta":false,"price_cents":15000,"id":"https://addons.heroku.com/addons/flying_sphinx:granite","description":"Flying Sphinx Granite","price_unit":"month"},{"url":"https://addons.heroku.com/addons/logentries:mega","state":"public","name":"logentries:mega","beta":false,"price_cents":500000,"id":"https://addons.heroku.com/addons/logentries:mega","description":"Logentries Mega","price_unit":"month"},{"url":"https://addons.heroku.com/addons/mailgun:hv","state":"public","name":"mailgun:hv","beta":false,"price_cents":19900,"id":"https://addons.heroku.com/addons/mailgun:hv","description":"Mailgun Pro High Volume","price_unit":"month"},{"url":"https://addons.heroku.com/addons/cleardb:scream","state":"public","name":"cleardb:scream","beta":false,"price_cents":9999,"id":"https://addons.heroku.com/addons/cleardb:scream","description":"ClearDB MySQL Database Scream","price_unit":"month"},{"url":"https://addons.heroku.com/addons/sendgrid:starter","state":"public","name":"sendgrid:starter","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/sendgrid:starter","description":"SendGrid Starter","price_unit":"month"},{"url":"https://addons.heroku.com/addons/websolr:cobalt","state":"public","name":"websolr:cobalt","beta":false,"price_cents":2000,"id":"https://addons.heroku.com/addons/websolr:cobalt","description":"Websolr Cobalt","price_unit":"month"},{"url":"https://addons.heroku.com/addons/mongolab:small","state":"public","name":"mongolab:small","beta":false,"price_cents":1000,"id":"https://addons.heroku.com/addons/mongolab:small","description":"MongoLab Small","price_unit":"month"},{"url":"https://addons.heroku.com/addons/cloudant:argon","state":"public","name":"cloudant:argon","beta":false,"price_cents":1500,"id":"https://addons.heroku.com/addons/cloudant:argon","description":"Cloudant Argon","price_unit":"month"},{"url":"https://addons.heroku.com/addons/heroku-postgresql:ika","state":"public","name":"heroku-postgresql:ika","beta":false,"price_cents":80000,"id":"https://addons.heroku.com/addons/heroku-postgresql:ika","description":"Heroku Postgres Ika","price_unit":"month"},{"url":"https://addons.heroku.com/addons/rhoconnect:enterprise","state":"public","name":"rhoconnect:enterprise","beta":false,"price_cents":49900,"id":"https://addons.heroku.com/addons/rhoconnect:enterprise","description":"RhoConnect Enterprise","price_unit":"month"},{"url":"https://addons.heroku.com/addons/iron_worker:venti","state":"public","name":"iron_worker:venti","beta":false,"price_cents":10800,"id":"https://addons.heroku.com/addons/iron_worker:venti","description":"IronWorker Venti","price_unit":"month"},{"url":"https://addons.heroku.com/addons/cloudamqp:test","state":"beta","name":"cloudamqp:test","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/cloudamqp:test","description":"CloudAMQP Test","price_unit":"month"},{"state":"public","url":null,"beta":false,"name":"pusher:custom_10k","description":"Pusher Custom_10K"},{"url":"https://addons.heroku.com/addons/dbinsights:starter","state":"public","name":"dbinsights:starter","beta":false,"price_cents":500,"id":"https://addons.heroku.com/addons/dbinsights:starter","description":"DbInsights Starter","price_unit":"month"},{"url":"https://addons.heroku.com/addons/pusher:startup","state":"public","name":"pusher:startup","beta":false,"price_cents":4900,"id":"https://addons.heroku.com/addons/pusher:startup","description":"Pusher Startup","price_unit":"month"},{"url":"https://addons.heroku.com/addons/scheduler:standard","state":"public","name":"scheduler:standard","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/scheduler:standard","description":"Heroku Scheduler Standard","price_unit":"month"},{"state":"public","url":"http://devcenter.heroku.com/articles/custom-error-pages","beta":false,"name":"custom_error_pages","description":"Custom Error Pages"},{"url":"https://addons.heroku.com/addons/spreedlycore:test","state":"beta","name":"spreedlycore:test","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/spreedlycore:test","description":"Spreedly Core Test","price_unit":"month"},{"url":"https://addons.heroku.com/addons/cloudant:neon","state":"public","name":"cloudant:neon","beta":false,"price_cents":3900,"id":"https://addons.heroku.com/addons/cloudant:neon","description":"Cloudant Neon","price_unit":"month"},{"url":"https://addons.heroku.com/addons/deployhooks:irc","state":"public","name":"deployhooks:irc","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/deployhooks:irc","description":"Deploy Hooks IRC Hook","price_unit":"month"},{"url":"https://addons.heroku.com/addons/cron:hourly","state":"public","name":"cron:hourly","beta":false,"price_cents":300,"id":"https://addons.heroku.com/addons/cron:hourly","description":"Cron Hourly Cron","price_unit":"month"},{"url":"https://addons.heroku.com/addons/exceptional:premium","state":"public","name":"exceptional:premium","beta":false,"price_cents":900,"id":"https://addons.heroku.com/addons/exceptional:premium","description":"Exceptional Exceptional Premium","price_unit":"month"},{"url":"https://addons.heroku.com/addons/newrelic:standard","state":"public","name":"newrelic:standard","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/newrelic:standard","description":"New Relic Standard","price_unit":"month"},{"url":"https://addons.heroku.com/addons/pubnub:minimal","state":"public","name":"pubnub:minimal","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/pubnub:minimal","description":"PubNub Minimal","price_unit":"month"},{"url":"https://addons.heroku.com/addons/pusher:sandbox","state":"public","name":"pusher:sandbox","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/pusher:sandbox","description":"Pusher Sandbox","price_unit":"month"},{"url":"https://addons.heroku.com/addons/docraptor:premium","state":"public","name":"docraptor:premium","beta":false,"price_cents":9500,"id":"https://addons.heroku.com/addons/docraptor:premium","description":"DocRaptor Premium","price_unit":"month"},{"url":"https://addons.heroku.com/addons/tddium:starter","state":"public","name":"tddium:starter","beta":false,"price_cents":700,"id":"https://addons.heroku.com/addons/tddium:starter","description":"Tddium Starter","price_unit":"month"},{"url":"https://addons.heroku.com/addons/chargify:start","state":"public","name":"chargify:start","beta":false,"price_cents":9900,"id":"https://addons.heroku.com/addons/chargify:start","description":"Chargify Start","price_unit":"month"},{"url":"https://addons.heroku.com/addons/redistogo:super","state":"public","name":"redistogo:super","beta":false,"price_cents":100000,"id":"https://addons.heroku.com/addons/redistogo:super","description":"Redis To Go Super","price_unit":"month"},{"url":"https://addons.heroku.com/addons/moonshadosms:premium","state":"public","name":"moonshadosms:premium","beta":false,"price_cents":10000,"id":"https://addons.heroku.com/addons/moonshadosms:premium","description":"Moonshado SMS Premium","price_unit":"month"},{"state":"public","url":"https://addons.heroku.com/bundles","beta":false,"name":"bundles:single","description":"Single Bundle"},{"url":"https://addons.heroku.com/addons/iron_worker:tall","state":"public","name":"iron_worker:tall","beta":false,"price_cents":3600,"id":"https://addons.heroku.com/addons/iron_worker:tall","description":"IronWorker Tall","price_unit":"month"},{"url":"https://addons.heroku.com/addons/redistogo:large","state":"public","name":"redistogo:large","beta":false,"price_cents":30000,"id":"https://addons.heroku.com/addons/redistogo:large","description":"Redis To Go Large","price_unit":"month"},{"url":"https://addons.heroku.com/addons/moonshadosms:basic","state":"public","name":"moonshadosms:basic","beta":false,"price_cents":500,"id":"https://addons.heroku.com/addons/moonshadosms:basic","description":"Moonshado SMS Basic","price_unit":"month"},{"url":"https://addons.heroku.com/addons/redistogo:mega","state":"public","name":"redistogo:mega","beta":false,"price_cents":400000,"id":"https://addons.heroku.com/addons/redistogo:mega","description":"Redis To Go Mega","price_unit":"month"},{"url":"https://addons.heroku.com/addons/heroku-postgresql:zilla","state":"public","name":"heroku-postgresql:zilla","beta":false,"price_cents":160000,"id":"https://addons.heroku.com/addons/heroku-postgresql:zilla","description":"Heroku Postgres Zilla","price_unit":"month"},{"url":"https://addons.heroku.com/addons/mongohq:large","state":"public","name":"mongohq:large","beta":false,"price_cents":4900,"id":"https://addons.heroku.com/addons/mongohq:large","description":"MongoHQ MongoHQ Large","price_unit":"month"},{"url":"https://addons.heroku.com/addons/blitz:1000","state":"public","name":"blitz:1000","beta":false,"price_cents":79900,"id":"https://addons.heroku.com/addons/blitz:1000","description":"Blitz 1000","price_unit":"month"},{"state":"public","url":null,"beta":false,"name":"legacy-database:fugu","description":"Legacy Database Fugu"},{"url":"https://addons.heroku.com/addons/memcache:250mb","state":"public","name":"memcache:250mb","beta":false,"price_cents":4000,"id":"https://addons.heroku.com/addons/memcache:250mb","description":"Memcache 250 MB","price_unit":"month"},{"url":"https://addons.heroku.com/addons/docraptor:starter","state":"public","name":"docraptor:starter","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/docraptor:starter","description":"DocRaptor Starter","price_unit":"month"},{"url":"https://addons.heroku.com/addons/dyn:lite50","state":"public","name":"dyn:lite50","beta":false,"price_cents":9500,"id":"https://addons.heroku.com/addons/dyn:lite50","description":"DynECT Managed DNS Lite 50","price_unit":"month"},{"url":"https://addons.heroku.com/addons/iron_mq:titanium","state":"public","name":"iron_mq:titanium","beta":false,"price_cents":99900,"id":"https://addons.heroku.com/addons/iron_mq:titanium","description":"IronMQ Titanium","price_unit":"month"},{"url":"https://addons.heroku.com/addons/sourceninja:test","state":"beta","name":"sourceninja:test","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/sourceninja:test","description":"SourceNinja Test","price_unit":"month"},{"url":"https://addons.heroku.com/addons/dyn:lite25","state":"public","name":"dyn:lite25","beta":false,"price_cents":6000,"id":"https://addons.heroku.com/addons/dyn:lite25","description":"DynECT Managed DNS Lite 25","price_unit":"month"},{"state":"public","url":null,"beta":false,"name":"redistogo:rho.small.vm","description":"Redis To Go Rho Mobile Small VM"},{"url":"https://addons.heroku.com/addons/heroku-postgresql:ronin","state":"public","name":"heroku-postgresql:ronin","beta":false,"price_cents":20000,"id":"https://addons.heroku.com/addons/heroku-postgresql:ronin","description":"Heroku Postgres Ronin","price_unit":"month"},{"url":"https://addons.heroku.com/addons/pgbackups:basic","state":"public","name":"pgbackups:basic","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/pgbackups:basic","description":"PG Backups Basic","price_unit":"month"},{"url":"https://addons.heroku.com/addons/memcache:10gb","state":"public","name":"memcache:10gb","beta":false,"price_cents":80000,"id":"https://addons.heroku.com/addons/memcache:10gb","description":"Memcache 10 GB","price_unit":"month"},{"url":"https://addons.heroku.com/addons/rhoconnect:basic","state":"public","name":"rhoconnect:basic","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/rhoconnect:basic","description":"RhoConnect Basic","price_unit":"month"},{"url":"https://addons.heroku.com/addons/websolr:palladium","state":"public","name":"websolr:palladium","beta":false,"price_cents":20000,"id":"https://addons.heroku.com/addons/websolr:palladium","description":"Websolr Palladium","price_unit":"month"},{"url":"https://addons.heroku.com/addons/stackmob:silver","state":"public","name":"stackmob:silver","beta":false,"price_cents":1900,"id":"https://addons.heroku.com/addons/stackmob:silver","description":"Stackmob Silver","price_unit":"month"},{"url":"https://addons.heroku.com/addons/zencoder:1k","state":"public","name":"zencoder:1k","beta":false,"price_cents":4000,"id":"https://addons.heroku.com/addons/zencoder:1k","description":"Zencoder 1,000 Minutes","price_unit":"month"},{"state":"public","url":null,"beta":false,"name":"newrelic:silver","description":"New Relic RPM Silver"},{"url":"https://addons.heroku.com/addons/restful_metrics:large","state":"public","name":"restful_metrics:large","beta":false,"price_cents":29900,"id":"https://addons.heroku.com/addons/restful_metrics:large","description":"RESTful Metrics Large","price_unit":"month"},{"url":"https://addons.heroku.com/addons/logentries:heavy","state":"public","name":"logentries:heavy","beta":false,"price_cents":100000,"id":"https://addons.heroku.com/addons/logentries:heavy","description":"Logentries Heavy","price_unit":"month"},{"state":"public","url":null,"beta":false,"name":"ssl:endpoint","description":"SSL Endpoint"},{"url":"https://addons.heroku.com/addons/blitline:developer","state":"public","name":"blitline:developer","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/blitline:developer","description":"Blitline Developer Package","price_unit":"month"},{"url":"https://addons.heroku.com/addons/moonshadosms:free","state":"public","name":"moonshadosms:free","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/moonshadosms:free","description":"Moonshado SMS Free","price_unit":"month"},{"url":"https://addons.heroku.com/addons/sendgrid:platinum","state":"public","name":"sendgrid:platinum","beta":false,"price_cents":39995,"id":"https://addons.heroku.com/addons/sendgrid:platinum","description":"SendGrid Platinum","price_unit":"month"},{"url":"https://addons.heroku.com/addons/framey:test","state":"beta","name":"framey:test","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/framey:test","description":"Framey Test","price_unit":"month"},{"url":"https://addons.heroku.com/addons/robowhois:test","state":"beta","name":"robowhois:test","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/robowhois:test","description":"RoboWhois Test","price_unit":"month"},{"url":"https://addons.heroku.com/addons/zencoder:20k","state":"public","name":"zencoder:20k","beta":false,"price_cents":60000,"id":"https://addons.heroku.com/addons/zencoder:20k","description":"Zencoder 20,000 Minutes","price_unit":"month"},{"url":"https://addons.heroku.com/addons/tddium:pro","state":"public","name":"tddium:pro","beta":false,"price_cents":15000,"id":"https://addons.heroku.com/addons/tddium:pro","description":"Tddium Pro","price_unit":"month"},{"url":"https://addons.heroku.com/addons/pubnub:common","state":"public","name":"pubnub:common","beta":false,"price_cents":8999,"id":"https://addons.heroku.com/addons/pubnub:common","description":"PubNub Common","price_unit":"month"},{"url":"https://addons.heroku.com/addons/dbinsights:standard","state":"public","name":"dbinsights:standard","beta":false,"price_cents":4000,"id":"https://addons.heroku.com/addons/dbinsights:standard","description":"DbInsights Standard","price_unit":"month"},{"url":"https://addons.heroku.com/addons/logentries:dev","state":"public","name":"logentries:dev","beta":false,"price_cents":2500,"id":"https://addons.heroku.com/addons/logentries:dev","description":"Logentries Dev","price_unit":"month"},{"url":"https://addons.heroku.com/addons/airbrake:production_pro","state":"public","name":"airbrake:production_pro","beta":false,"price_cents":9900,"id":"https://addons.heroku.com/addons/airbrake:production_pro","description":"Airbrake Production Pro","price_unit":"month"},{"url":"https://addons.heroku.com/addons/releases:advanced","state":"disabled","name":"releases:advanced","beta":false,"price_cents":10000,"id":"https://addons.heroku.com/addons/releases:advanced","description":"Release Management Advanced","price_unit":"month"},{"url":"https://addons.heroku.com/addons/zencoder:4k","state":"public","name":"zencoder:4k","beta":false,"price_cents":12000,"id":"https://addons.heroku.com/addons/zencoder:4k","description":"Zencoder 4,000 Minutes","price_unit":"month"},{"url":"https://addons.heroku.com/addons/airbrake:developer","state":"public","name":"airbrake:developer","beta":false,"price_cents":700,"id":"https://addons.heroku.com/addons/airbrake:developer","description":"Airbrake Developer","price_unit":"month"},{"url":"https://addons.heroku.com/addons/pusher:bigboy","state":"public","name":"pusher:bigboy","beta":false,"price_cents":19900,"id":"https://addons.heroku.com/addons/pusher:bigboy","description":"Pusher Big Boy","price_unit":"month"},{"url":"https://addons.heroku.com/addons/airbrake:developer_plus","state":"public","name":"airbrake:developer_plus","beta":false,"price_cents":1400,"id":"https://addons.heroku.com/addons/airbrake:developer_plus","description":"Airbrake Developer Plus","price_unit":"month"},{"url":"https://addons.heroku.com/addons/websolr:tungsten","state":"public","name":"websolr:tungsten","beta":false,"price_cents":40000,"id":"https://addons.heroku.com/addons/websolr:tungsten","description":"Websolr Tungsten","price_unit":"month"},{"url":"https://addons.heroku.com/addons/pgbackups:plus","state":"public","name":"pgbackups:plus","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/pgbackups:plus","description":"PG Backups Plus","price_unit":"month"},{"url":"https://addons.heroku.com/addons/mongohq:rs_large","state":"public","name":"mongohq:rs_large","beta":false,"price_cents":30000,"id":"https://addons.heroku.com/addons/mongohq:rs_large","description":"MongoHQ Replica Set Large","price_unit":"month"},{"url":"https://addons.heroku.com/addons/apigee:basic","state":"public","name":"apigee:basic","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/apigee:basic","description":"Apigee For Twitter Basic","price_unit":"month"},{"url":"https://addons.heroku.com/addons/cloudmailin:premium","state":"public","name":"cloudmailin:premium","beta":false,"price_cents":8500,"id":"https://addons.heroku.com/addons/cloudmailin:premium","description":"CloudMailIn Premium","price_unit":"month"},{"url":"https://addons.heroku.com/addons/restful_metrics:developer","state":"public","name":"restful_metrics:developer","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/restful_metrics:developer","description":"RESTful Metrics Developer","price_unit":"month"},{"url":"https://addons.heroku.com/addons/superfeedr:test","state":"beta","name":"superfeedr:test","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/superfeedr:test","description":"Superfeedr Test","price_unit":"month"},{"url":"https://addons.heroku.com/addons/papertrail:test","state":"beta","name":"papertrail:test","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/papertrail:test","description":"Papertrail Test","price_unit":"month"},{"url":"https://addons.heroku.com/addons/logentries:staging","state":"public","name":"logentries:staging","beta":false,"price_cents":10000,"id":"https://addons.heroku.com/addons/logentries:staging","description":"Logentries Staging","price_unit":"month"},{"url":"https://addons.heroku.com/addons/spacialdb:test","state":"beta","name":"spacialdb:test","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/spacialdb:test","description":"SpacialDB Test","price_unit":"month"},{"url":"https://addons.heroku.com/addons/custom_domains:wildcard","state":"disabled","name":"custom_domains:wildcard","beta":false,"price_cents":500,"id":"https://addons.heroku.com/addons/custom_domains:wildcard","description":"Custom Domains Wildcard domains","price_unit":"month"},{"url":"https://addons.heroku.com/addons/docraptor:professional","state":"public","name":"docraptor:professional","beta":false,"price_cents":3700,"id":"https://addons.heroku.com/addons/docraptor:professional","description":"DocRaptor Professional","price_unit":"month"},{"url":"https://addons.heroku.com/addons/custom_error_pages:standard","state":"disabled","name":"custom_error_pages:standard","beta":false,"price_cents":10000,"id":"https://addons.heroku.com/addons/custom_error_pages:standard","description":"Custom Error Pages Custom Error Pages","price_unit":"month"},{"url":"https://addons.heroku.com/addons/ticketly:test","state":"beta","name":"ticketly:test","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/ticketly:test","description":"Ticketly Test","price_unit":"month"},{"url":"https://addons.heroku.com/addons/iron_worker:grande","state":"public","name":"iron_worker:grande","beta":false,"price_cents":7200,"id":"https://addons.heroku.com/addons/iron_worker:grande","description":"IronWorker Grande","price_unit":"month"},{"url":"https://addons.heroku.com/addons/raydash:test","state":"beta","name":"raydash:test","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/raydash:test","description":"Raydash Test","price_unit":"month"},{"url":"https://addons.heroku.com/addons/rabbitmq:test","state":"beta","name":"rabbitmq:test","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/rabbitmq:test","description":"RabbitMQ Test","price_unit":"month"},{"url":"https://addons.heroku.com/addons/iron_mq:cast","state":"public","name":"iron_mq:cast","beta":false,"price_cents":4999,"id":"https://addons.heroku.com/addons/iron_mq:cast","description":"IronMQ Cast","price_unit":"month"},{"url":"https://addons.heroku.com/addons/logentries:high","state":"public","name":"logentries:high","beta":false,"price_cents":50000,"id":"https://addons.heroku.com/addons/logentries:high","description":"Logentries High","price_unit":"month"},{"url":"https://addons.heroku.com/addons/logentries:super","state":"public","name":"logentries:super","beta":false,"price_cents":250000,"id":"https://addons.heroku.com/addons/logentries:super","description":"Logentries Super","price_unit":"month"},{"url":"https://addons.heroku.com/addons/tripwire:test","state":"beta","name":"tripwire:test","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/tripwire:test","description":"Tripwire Test","price_unit":"month"},{"url":"https://addons.heroku.com/addons/dyn:lite10","state":"public","name":"dyn:lite10","beta":false,"price_cents":3000,"id":"https://addons.heroku.com/addons/dyn:lite10","description":"DynECT Managed DNS Lite 10","price_unit":"month"},{"url":"https://addons.heroku.com/addons/mongohq:free","state":"public","name":"mongohq:free","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/mongohq:free","description":"MongoHQ MongoHQ Free","price_unit":"month"},{"url":"https://addons.heroku.com/addons/mailgun:pro","state":"public","name":"mailgun:pro","beta":false,"price_cents":7900,"id":"https://addons.heroku.com/addons/mailgun:pro","description":"Mailgun Pro","price_unit":"month"},{"url":"https://addons.heroku.com/addons/mailgun:basic","state":"public","name":"mailgun:basic","beta":false,"price_cents":1900,"id":"https://addons.heroku.com/addons/mailgun:basic","description":"Mailgun Basic","price_unit":"month"},{"url":"https://addons.heroku.com/addons/ssl:sni","state":"public","name":"ssl:sni","beta":false,"price_cents":500,"id":"https://addons.heroku.com/addons/ssl:sni","description":"SSL SNI SSL","price_unit":"month"},{"url":"https://addons.heroku.com/addons/statsmix:developer","state":"public","name":"statsmix:developer","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/statsmix:developer","description":"StatsMix Developer","price_unit":"month"},{"url":"https://addons.heroku.com/addons/cleardb:drift","state":"public","name":"cleardb:drift","beta":false,"price_cents":4999,"id":"https://addons.heroku.com/addons/cleardb:drift","description":"ClearDB MySQL Database Drift","price_unit":"month"},{"url":"https://addons.heroku.com/addons/justonedb:xi","state":"public","name":"justonedb:xi","beta":false,"price_cents":19900,"id":"https://addons.heroku.com/addons/justonedb:xi","description":"JustOneDB - NewSQL Cloud Database Xi","price_unit":"month"},{"url":"https://addons.heroku.com/addons/foundelasticsearch:test","state":"beta","name":"foundelasticsearch:test","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/foundelasticsearch:test","description":"Found ElasticSearch Test","price_unit":"month"},{"url":"https://addons.heroku.com/addons/deployhooks:http","state":"public","name":"deployhooks:http","beta":false,"price_cents":0,"id":"https://addons.heroku.com/addons/deployhooks:http","description":"Deploy Hooks HTTP Post Hook","price_unit":"month"},{"url":"https://addons.heroku.com/addons/memcache:50gb","state":"public","name":"memcache:50gb","beta":false,"price_cents":350000,"id":"https://addons.heroku.com/addons/memcache:50gb","description":"Memcache 50 GB","price_unit":"month"}]
1
+ [{"url":"https://addons.heroku.com/addons/websolr:palladium","price_cents":20000,"state":"public","beta":false,"price_unit":"month","name":"websolr:palladium","id":"https://addons.heroku.com/addons/websolr:palladium","description":"Websolr Palladium"},{"url":"https://addons.heroku.com/addons/treasure-data:test","price_cents":0,"state":"public","beta":true,"price_unit":"month","name":"treasure-data:test","id":"https://addons.heroku.com/addons/treasure-data:test","description":"Treasure Data Hadoop Test"},{"url":"https://addons.heroku.com/addons/dbinsights:standard","price_cents":4000,"state":"public","beta":false,"price_unit":"month","name":"dbinsights:standard","id":"https://addons.heroku.com/addons/dbinsights:standard","description":"DbInsights Standard"},{"state":"alpha","url":null,"group_description":"Crashnote","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"crashnote:test","description":"Crashnote Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/restful_metrics:medium","price_cents":7900,"state":"public","beta":false,"price_unit":"month","name":"restful_metrics:medium","id":"https://addons.heroku.com/addons/restful_metrics:medium","description":"RESTful Metrics Medium"},{"url":"https://addons.heroku.com/addons/sentry:enterprise","price_cents":9900,"state":"public","beta":false,"price_unit":"month","name":"sentry:enterprise","id":"https://addons.heroku.com/addons/sentry:enterprise","description":"Sentry Enterprise"},{"state":"alpha","url":null,"group_description":"Cranium","plan_description":"Zilla","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"zilla","name":"cranium:zilla","description":"Cranium zilla","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/scheduler:standard","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"scheduler:standard","id":"https://addons.heroku.com/addons/scheduler:standard","description":"Heroku Scheduler Standard"},{"state":"alpha","url":null,"group_description":"Library","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"library:test","description":"Library Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Bean","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"bean:test","description":"Bean Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Yobuko","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"yobuko:test","description":"Yobuko Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Staging","plan_description":"Ika","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ika","name":"shogun-staging:ika","description":"Shogun-staging Ika","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/custom_domains:wildcard","price_cents":500,"state":"disabled","beta":false,"price_unit":"month","name":"custom_domains:wildcard","id":"https://addons.heroku.com/addons/custom_domains:wildcard","description":"Custom Domains Wildcard domains"},{"url":"https://addons.heroku.com/addons/heroku-postgresql:kappa","price_cents":0,"state":"public","beta":true,"price_unit":"month","name":"heroku-postgresql:kappa","id":"https://addons.heroku.com/addons/heroku-postgresql:kappa","description":"Heroku Postgres Kappa"},{"url":"https://addons.heroku.com/addons/flying_sphinx:granite","price_cents":15000,"state":"public","beta":false,"price_unit":"month","name":"flying_sphinx:granite","id":"https://addons.heroku.com/addons/flying_sphinx:granite","description":"Flying Sphinx Granite"},{"state":"alpha","url":null,"group_description":"Librato Metrics","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"librato-metrics:test","description":"Librato-metrics Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/loggly:mole","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"loggly:mole","id":"https://addons.heroku.com/addons/loggly:mole","description":"Loggly Mole"},{"state":"disabled","url":null,"group_description":"Dyn","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"dyn:test","description":"DynECT Managed DNS Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Zilla","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"zilla","name":"shogun-tmaher:zilla","description":"Shogun-tmaher Zilla","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/deployhooks:irc","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"deployhooks:irc","id":"https://addons.heroku.com/addons/deployhooks:irc","description":"Deploy Hooks IRC Hook"},{"state":"alpha","url":null,"group_description":"Jchaddon","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"jchaddon:test","description":"Jchaddon Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Dynonamics Staging","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"dynonamics-staging:test","description":"Dynonamics-staging Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Rabble","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"rabble:test","description":"Rabble Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/statsmix:developer","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"statsmix:developer","id":"https://addons.heroku.com/addons/statsmix:developer","description":"StatsMix Developer"},{"url":"https://addons.heroku.com/addons/releases:advanced","price_cents":10000,"state":"disabled","beta":false,"price_unit":"month","name":"releases:advanced","id":"https://addons.heroku.com/addons/releases:advanced","description":"Release Management Advanced"},{"state":"public","url":null,"group_description":"Legacy Database","plan_description":"Zilla","attachable":false,"beta":false,"price":{"cents":160000,"unit":"month"},"terms_of_service":false,"slug":"zilla","name":"legacy-database:zilla","description":"Legacy Database Zilla","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/tddium:mega","price_cents":30000,"state":"public","beta":false,"price_unit":"month","name":"tddium:mega","id":"https://addons.heroku.com/addons/tddium:mega","description":"Tddium Mega"},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Zilla Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"zilla-postgis","name":"shogun-will:zilla-postgis","description":"Shogun-will Zilla Postgis","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/dyn:lite50","price_cents":9500,"state":"public","beta":false,"price_unit":"month","name":"dyn:lite50","id":"https://addons.heroku.com/addons/dyn:lite50","description":"DynECT Managed DNS Lite 50"},{"state":"disabled","url":null,"group_description":"Blitz","plan_description":"500","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"500","name":"blitz:500","description":"Blitz 500","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogunhgimenez","plan_description":"Ika","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ika","name":"shogunhgimenez:ika","description":"Shogunhgimenez Ika","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Tempo","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"tempo:test","description":"Tempo Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Pagelime","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"pagelime:test","description":"Pagelime Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Onesky","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"onesky:test","description":"OneSky Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Cloudability","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"cloudability:test","description":"Cloudability Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Neo4j Test","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"neo4j-test:test","description":"Neo4j-test Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/mongolab:large","price_cents":4000,"state":"public","beta":false,"price_unit":"month","name":"mongolab:large","id":"https://addons.heroku.com/addons/mongolab:large","description":"MongoLab Large"},{"url":"https://addons.heroku.com/addons/deployhooks:http","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"deployhooks:http","id":"https://addons.heroku.com/addons/deployhooks:http","description":"Deploy Hooks HTTP Post Hook"},{"url":"https://addons.heroku.com/addons/mailgun:hv","price_cents":19900,"state":"public","beta":false,"price_unit":"month","name":"mailgun:hv","id":"https://addons.heroku.com/addons/mailgun:hv","description":"Mailgun Pro High Volume"},{"state":"alpha","url":null,"group_description":"Canary Review","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"canary-review:test","description":"Canary-review Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Indextank","plan_description":"Plus","attachable":false,"beta":false,"price":{"cents":5000,"unit":"month"},"terms_of_service":false,"slug":"plus","name":"indextank:plus","description":"IndexTank Search Plus","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/xeround:pro512","price_cents":9500,"state":"public","beta":false,"price_unit":"month","name":"xeround:pro512","id":"https://addons.heroku.com/addons/xeround:pro512","description":"Xeround the cloud database Pro 0.5GB"},{"state":"disabled","url":null,"group_description":"Flying Sphinx","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"flying_sphinx:test","description":"Flying Sphinx Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Mzaddon","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"mzaddon:test","description":"Mzaddon Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Wrong","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"wrong:test","description":"Wrong Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/papertrail:test","price_cents":0,"state":"public","beta":true,"price_unit":"month","name":"papertrail:test","id":"https://addons.heroku.com/addons/papertrail:test","description":"Papertrail Test"},{"url":"https://addons.heroku.com/addons/cron:daily","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"cron:daily","id":"https://addons.heroku.com/addons/cron:daily","description":"Cron Daily Cron"},{"url":"https://addons.heroku.com/addons/zencoder:40k","price_cents":120000,"state":"public","beta":false,"price_unit":"month","name":"zencoder:40k","id":"https://addons.heroku.com/addons/zencoder:40k","description":"Zencoder 40,000 Minutes"},{"state":"alpha","url":null,"group_description":"Ubalo Demo","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"ubalo-demo:test","description":"Ubalo-demo Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogunjdixon","plan_description":"Ika","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ika","name":"shogunjdixon:ika","description":"Shogunjdixon Ika","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Fdr","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"shogun-fdr:test","description":"Shogun-fdr Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/mongohq:rs_large","price_cents":30000,"state":"public","beta":false,"price_unit":"month","name":"mongohq:rs_large","id":"https://addons.heroku.com/addons/mongohq:rs_large","description":"MongoHQ Replica Set Large"},{"url":"https://addons.heroku.com/addons/memcache:10gb","price_cents":80000,"state":"public","beta":false,"price_unit":"month","name":"memcache:10gb","id":"https://addons.heroku.com/addons/memcache:10gb","description":"Memcache 10 GB"},{"url":"https://addons.heroku.com/addons/deployhooks:basecamp","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"deployhooks:basecamp","id":"https://addons.heroku.com/addons/deployhooks:basecamp","description":"Deploy Hooks Basecamp Hook"},{"url":"https://addons.heroku.com/addons/custom_domains:basic","price_cents":0,"state":"disabled","beta":false,"price_unit":"month","name":"custom_domains:basic","id":"https://addons.heroku.com/addons/custom_domains:basic","description":"Custom Domains Custom Domain"},{"state":"alpha","url":null,"group_description":"Uploadjuicer","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"uploadjuicer:test","description":"Uploadjuicer Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Sourceninja1","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"sourceninja1:test","description":"Sourceninja1 Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Staging","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"shogun-staging:test","description":"Shogun-staging Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Redistogo Old","plan_description":"Basic","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"basic","name":"redistogo-old:basic","description":"RedisToGo Basic","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/iron_mq:titanium","price_cents":99900,"state":"public","beta":false,"price_unit":"month","name":"iron_mq:titanium","id":"https://addons.heroku.com/addons/iron_mq:titanium","description":"IronMQ Titanium"},{"state":"alpha","url":null,"group_description":"Appharbordonothingaddon","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"appharbordonothingaddon:test","description":"Appharbordonothingaddon Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Deployhooks2","plan_description":"Email","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"email","name":"deployhooks2:email","description":"Deployhooks2 eMail","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/cloudmailin:developer","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"cloudmailin:developer","id":"https://addons.heroku.com/addons/cloudmailin:developer","description":"CloudMailIn Developer"},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Baku","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"baku","name":"shogun-will:baku","description":"Shogun-will Baku","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Mecha Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"mecha-postgis","name":"shogun-tmaher:mecha-postgis","description":"Shogun-tmaher Mecha Postgis","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Postageapp","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"postageapp:test","description":"Postageapp Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Memcache","plan_description":"250mb","attachable":false,"beta":false,"price":{"cents":4000,"unit":"month"},"terms_of_service":false,"slug":"250mb","name":"memcache:250mb","description":"Memcache 250 MB","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Exceptionalnew","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"exceptionalnew:test","description":"Exceptionalnew Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/newrelic:standard","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"newrelic:standard","id":"https://addons.heroku.com/addons/newrelic:standard","description":"New Relic Standard"},{"url":"https://addons.heroku.com/addons/pandastream:solo","price_cents":9900,"state":"public","beta":false,"price_unit":"month","name":"pandastream:solo","id":"https://addons.heroku.com/addons/pandastream:solo","description":"PandaStream Solo"},{"url":"https://addons.heroku.com/addons/deployhooks:email","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"deployhooks:email","id":"https://addons.heroku.com/addons/deployhooks:email","description":"Deploy Hooks Email Hook"},{"state":"alpha","url":null,"group_description":"Postgres","plan_description":"Basic","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"basic","name":"postgres:basic","description":"Postgres Basic","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Isabelle Test Addon","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"isabelle_test_addon:test","description":"Isabelle_test_addon Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Crond","plan_description":"Daily","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"daily","name":"crond:daily","description":"Crond Daily","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Simplegeo","plan_description":"Plus","attachable":false,"beta":false,"price":{"cents":4900,"unit":"month"},"terms_of_service":false,"slug":"plus","name":"simplegeo:plus","description":"SimpleGeo Plus","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Ronin Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ronin-postgis","name":"shogun-will:ronin-postgis","description":"Shogun-will Ronin Postgis","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/logentries:tryit","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"logentries:tryit","id":"https://addons.heroku.com/addons/logentries:tryit","description":"Logentries TryIt"},{"url":"https://addons.heroku.com/addons/amazon_rds","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"amazon_rds","id":"https://addons.heroku.com/addons/amazon_rds","description":"Amazon RDS Amazon RDS Integration"},{"url":"https://addons.heroku.com/addons/pgbackups:auto-month","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"pgbackups:auto-month","id":"https://addons.heroku.com/addons/pgbackups:auto-month","description":"PG Backups Auto - One Month Retention"},{"state":"alpha","url":null,"group_description":"Deployhooks2","plan_description":"Campfire","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"campfire","name":"deployhooks2:campfire","description":"Deployhooks2 Campfire","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/neo4j:test","price_cents":0,"state":"public","beta":true,"price_unit":"month","name":"neo4j:test","id":"https://addons.heroku.com/addons/neo4j:test","description":"Neo4j Test"},{"url":"https://addons.heroku.com/addons/statsmix:standard","price_cents":4900,"state":"public","beta":false,"price_unit":"month","name":"statsmix:standard","id":"https://addons.heroku.com/addons/statsmix:standard","description":"StatsMix Standard"},{"url":"https://addons.heroku.com/addons/stackmob:gold","price_cents":8900,"state":"public","beta":false,"price_unit":"month","name":"stackmob:gold","id":"https://addons.heroku.com/addons/stackmob:gold","description":"Stackmob Gold"},{"url":"https://addons.heroku.com/addons/pusher:startup","price_cents":4900,"state":"public","beta":false,"price_unit":"month","name":"pusher:startup","id":"https://addons.heroku.com/addons/pusher:startup","description":"Pusher Startup"},{"url":"https://addons.heroku.com/addons/rhoconnect:enterprise","price_cents":49900,"state":"public","beta":false,"price_unit":"month","name":"rhoconnect:enterprise","id":"https://addons.heroku.com/addons/rhoconnect:enterprise","description":"RhoConnect Enterprise"},{"state":"disabled","url":null,"group_description":"Dbinsights","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"dbinsights:test","description":"DbInsights Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/dbinsights:basic","price_cents":2000,"state":"public","beta":false,"price_unit":"month","name":"dbinsights:basic","id":"https://addons.heroku.com/addons/dbinsights:basic","description":"DbInsights Basic"},{"state":"disabled","url":null,"group_description":"Searchify","plan_description":"Starter","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"starter","name":"searchify:starter","description":"Searchify IndexTank Starter","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/chargify:developer","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"chargify:developer","id":"https://addons.heroku.com/addons/chargify:developer","description":"Chargify Developer"},{"state":"alpha","url":null,"group_description":"Shogunjdixon","plan_description":"Mecha","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"mecha","name":"shogunjdixon:mecha","description":"Shogunjdixon Mecha","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogunhgimenez","plan_description":"Fugu","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"fugu","name":"shogunhgimenez:fugu","description":"Shogunhgimenez Fugu","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Justonedb","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"justonedb:test","description":"JustOneDB - NewSQL Cloud Database Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/heroku-postgresql:ika","price_cents":80000,"state":"public","beta":false,"price_unit":"month","name":"heroku-postgresql:ika","id":"https://addons.heroku.com/addons/heroku-postgresql:ika","description":"Heroku Postgres Ika"},{"url":"https://addons.heroku.com/addons/zerigo_dns:tier1","price_cents":700,"state":"public","beta":false,"price_unit":"month","name":"zerigo_dns:tier1","id":"https://addons.heroku.com/addons/zerigo_dns:tier1","description":"Zerigo DNS Zerigo Tier 1"},{"url":"https://addons.heroku.com/addons/adminium:petproject","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"adminium:petproject","id":"https://addons.heroku.com/addons/adminium:petproject","description":"Adminium Pet Project"},{"state":"alpha","url":null,"group_description":"Stillalive Staging","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"stillalive-staging:test","description":"Stillalive-staging Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Simplegeo","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"simplegeo:test","description":"SimpleGeo Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Kappa Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"kappa-postgis","name":"shogun-freeformz:kappa-postgis","description":"Shogun-freeformz Kappa-postgis","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Mongocrypt","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"mongocrypt:test","description":"Mongocrypt Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/mongohq:large","price_cents":4900,"state":"public","beta":false,"price_unit":"month","name":"mongohq:large","id":"https://addons.heroku.com/addons/mongohq:large","description":"MongoHQ MongoHQ Large"},{"state":"disabled","url":null,"group_description":"Loggly","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"loggly:test","description":"Loggly Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/zerigo_dns:tier2","price_cents":2000,"state":"public","beta":false,"price_unit":"month","name":"zerigo_dns:tier2","id":"https://addons.heroku.com/addons/zerigo_dns:tier2","description":"Zerigo DNS Zerigo Tier 2"},{"state":"alpha","url":null,"group_description":"Vibes Goals","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"vibes-goals:test","description":"Vibes-goals Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/cloudmailin:premium","price_cents":8500,"state":"public","beta":false,"price_unit":"month","name":"cloudmailin:premium","id":"https://addons.heroku.com/addons/cloudmailin:premium","description":"CloudMailIn Premium"},{"url":"https://addons.heroku.com/addons/docraptor:max","price_cents":18900,"state":"public","beta":false,"price_unit":"month","name":"docraptor:max","id":"https://addons.heroku.com/addons/docraptor:max","description":"DocRaptor Max"},{"url":"https://addons.heroku.com/addons/deployhooks:campfire","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"deployhooks:campfire","id":"https://addons.heroku.com/addons/deployhooks:campfire","description":"Deploy Hooks Campfire Hook"},{"state":"public","url":"http://devcenter.heroku.com/articles/deploy-hooks","group_description":"Deploy Hooks","plan_description":"SMS","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"sms","name":"deployhooks:sms","description":"SMS Hook","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/tddium:starter","price_cents":700,"state":"public","beta":false,"price_unit":"month","name":"tddium:starter","id":"https://addons.heroku.com/addons/tddium:starter","description":"Tddium Starter"},{"state":"alpha","url":null,"group_description":"Shogun Staging","plan_description":"Crane","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"crane","name":"shogun-staging:crane","description":"Shogun-staging Crane","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Bind","plan_description":"Noeqd","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"noeqd","name":"bind:noeqd","description":"Bind Noeqd","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/iron_mq:steel","price_cents":14999,"state":"public","beta":false,"price_unit":"month","name":"iron_mq:steel","id":"https://addons.heroku.com/addons/iron_mq:steel","description":"IronMQ Steel"},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Zilla","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"zilla","name":"shogun-freeformz:zilla","description":"Shogun-freeformz Zilla","consumes_dyno_hours":false},{"state":"public","url":null,"group_description":"Legacy Database","plan_description":"Fugu","attachable":false,"beta":false,"price":{"cents":40000,"unit":"month"},"terms_of_service":false,"slug":"fugu","name":"legacy-database:fugu","description":"Legacy Database Fugu","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/websolr:chromium","price_cents":5000,"state":"public","beta":false,"price_unit":"month","name":"websolr:chromium","id":"https://addons.heroku.com/addons/websolr:chromium","description":"Websolr Chromium"},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Ika","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ika","name":"shogun-tmaher:ika","description":"Shogun-tmaher Ika","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Cranium","plan_description":"Fugu","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"fugu","name":"cranium:fugu","description":"Cranium fugu","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/pandastream:quad","price_cents":39600,"state":"public","beta":false,"price_unit":"month","name":"pandastream:quad","id":"https://addons.heroku.com/addons/pandastream:quad","description":"PandaStream Quad"},{"url":"https://addons.heroku.com/addons/restful_metrics:small","price_cents":2900,"state":"public","beta":false,"price_unit":"month","name":"restful_metrics:small","id":"https://addons.heroku.com/addons/restful_metrics:small","description":"RESTful Metrics Small"},{"url":"https://addons.heroku.com/addons/superfeedr:test","price_cents":0,"state":"public","beta":true,"price_unit":"month","name":"superfeedr:test","id":"https://addons.heroku.com/addons/superfeedr:test","description":"Superfeedr Test"},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Fugu Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"fugu-postgis","name":"shogun-freeformz:fugu-postgis","description":"Shogun-freeformz Fugu-postgis","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/stillalive:starter","price_cents":1500,"state":"public","beta":false,"price_unit":"month","name":"stillalive:starter","id":"https://addons.heroku.com/addons/stillalive:starter","description":"StillAlive Starter"},{"state":"alpha","url":null,"group_description":"Shogun Staging","plan_description":"Ronin","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ronin","name":"shogun-staging:ronin","description":"Shogun-staging Ronin","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/zerigo_dns:basic","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"zerigo_dns:basic","id":"https://addons.heroku.com/addons/zerigo_dns:basic","description":"Zerigo DNS Zerigo Basic"},{"state":"alpha","url":null,"group_description":"Force Database","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"force-database:test","description":"ForceDatabaseInc Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Weborb Clustering","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"weborb_clustering:test","description":"Weborb_clustering Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogunhgimenez","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"shogunhgimenez:test","description":"Shogunhgimenez Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/airbrake:developer_plus","price_cents":1400,"state":"public","beta":false,"price_unit":"month","name":"airbrake:developer_plus","id":"https://addons.heroku.com/addons/airbrake:developer_plus","description":"Airbrake Developer Plus"},{"url":"https://addons.heroku.com/addons/logentries:dev","price_cents":2500,"state":"public","beta":false,"price_unit":"month","name":"logentries:dev","id":"https://addons.heroku.com/addons/logentries:dev","description":"Logentries Dev"},{"state":"alpha","url":null,"group_description":"Localhostapp","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"localhostapp:test","description":"Localhostapp Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Elasticsearch","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"elasticsearch:test","description":"Squatter ElasticSearch Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/xeround:starter","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"xeround:starter","id":"https://addons.heroku.com/addons/xeround:starter","description":"Xeround the cloud database Starter"},{"state":"disabled","url":null,"group_description":"Simple Worker","plan_description":"Venti","attachable":false,"beta":false,"price":{"cents":10800,"unit":"month"},"terms_of_service":false,"slug":"venti","name":"simple_worker:venti","description":"Appoxy SimpleWorker Venti","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Sharedworkforce","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"sharedworkforce:test","description":"Sharedworkforce Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Phrase","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"phrase:test","description":"phrase Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Myaddon Mega Addon","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"myaddon-mega-addon:test","description":"Myaddon-mega-addon Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Fourteen","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"fourteen:test","description":"Fourteen Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Logworm","plan_description":"Starter","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"starter","name":"logworm:starter","description":"LogWorm Starter","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Houndsleuth","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"houndsleuth:test","description":"HoundSleuth Hosted Search Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/adminium:enterprise","price_cents":5000,"state":"public","beta":false,"price_unit":"month","name":"adminium:enterprise","id":"https://addons.heroku.com/addons/adminium:enterprise","description":"Adminium Enterprise"},{"url":"https://addons.heroku.com/addons/cloudmailin:professional","price_cents":4500,"state":"public","beta":false,"price_unit":"month","name":"cloudmailin:professional","id":"https://addons.heroku.com/addons/cloudmailin:professional","description":"CloudMailIn Professional"},{"state":"alpha","url":null,"group_description":"Starter Shogun","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"starter-shogun:test","description":"Starter-shogun Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Musashi Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"musashi-postgis","name":"shogun-tmaher:musashi-postgis","description":"Shogun-tmaher Musashi Postgis","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Pg9test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"pg9test","name":"shogun-tmaher:pg9test","description":"Shogun-tmaher PG9Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Helpmeapp","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"helpmeapp:test","description":"Helpmeapp Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Iron Mq","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"iron_mq:test","description":"IronMQ Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/docraptor:basic","price_cents":1900,"state":"public","beta":false,"price_unit":"month","name":"docraptor:basic","id":"https://addons.heroku.com/addons/docraptor:basic","description":"DocRaptor Basic"},{"state":"disabled","url":null,"group_description":"Heroku Postgresql","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"heroku-postgresql:test","description":"Heroku Postgres Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/loggly:beaver","price_cents":29900,"state":"public","beta":false,"price_unit":"month","name":"loggly:beaver","id":"https://addons.heroku.com/addons/loggly:beaver","description":"Loggly Beaver"},{"url":"https://addons.heroku.com/addons/sendgrid:silver","price_cents":7995,"state":"public","beta":false,"price_unit":"month","name":"sendgrid:silver","id":"https://addons.heroku.com/addons/sendgrid:silver","description":"SendGrid Silver"},{"state":"public","url":null,"group_description":"Newrelic","plan_description":"Silver","attachable":false,"beta":false,"price":{"cents":5,"unit":"dyno_hour"},"terms_of_service":false,"slug":"silver","name":"newrelic:silver","description":"New Relic RPM Silver","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/memcachier:5000","price_cents":30000,"state":"public","beta":false,"price_unit":"month","name":"memcachier:5000","id":"https://addons.heroku.com/addons/memcachier:5000","description":"MemCachier 5 Gb"},{"state":"alpha","url":null,"group_description":"Henson","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"henson:test","description":"Henson Test","consumes_dyno_hours":false},{"state":"public","url":null,"group_description":"Redistogo","plan_description":"Rho.Large.Vm","attachable":false,"beta":false,"price":{"cents":7500,"unit":"month"},"terms_of_service":false,"slug":"rho.large.vm","name":"redistogo:rho.large.vm","description":"Redis To Go Rho Mobile Large VM","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Chronicdb","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"chronicdb:test","description":"Chronicdb Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/securekey:fortnightly","price_cents":0,"state":"beta","beta":false,"price_unit":"month","name":"securekey:fortnightly","id":"https://addons.heroku.com/addons/securekey:fortnightly","description":"Secure Key Fortnightly"},{"state":"alpha","url":null,"group_description":"Starter Shogun","plan_description":"Ronin","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ronin","name":"starter-shogun:ronin","description":"Starter-shogun Ronin","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogunjdixon","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"shogunjdixon:test","description":"Shogunjdixon Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/iron_worker:tall","price_cents":3600,"state":"public","beta":false,"price_unit":"month","name":"iron_worker:tall","id":"https://addons.heroku.com/addons/iron_worker:tall","description":"IronWorker Tall"},{"url":"https://addons.heroku.com/addons/pusher:sandbox","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"pusher:sandbox","id":"https://addons.heroku.com/addons/pusher:sandbox","description":"Pusher Sandbox"},{"url":"https://addons.heroku.com/addons/chargify:grow","price_cents":34900,"state":"public","beta":false,"price_unit":"month","name":"chargify:grow","id":"https://addons.heroku.com/addons/chargify:grow","description":"Chargify Grow"},{"url":"https://addons.heroku.com/addons/ticketly:test","price_cents":0,"state":"beta","beta":false,"price_unit":"month","name":"ticketly:test","id":"https://addons.heroku.com/addons/ticketly:test","description":"Ticketly Test"},{"url":"https://addons.heroku.com/addons/mongohq:free","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"mongohq:free","id":"https://addons.heroku.com/addons/mongohq:free","description":"MongoHQ MongoHQ Free"},{"state":"alpha","url":null,"group_description":"Cranium","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"cranium:test","description":"Cranium Test","consumes_dyno_hours":false},{"state":"public","url":"http://devcenter.heroku.com/articles/custom-error-pages","group_description":null,"plan_description":null,"attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":null,"name":"custom_error_pages","description":"Custom Error Pages","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Sendgrid","plan_description":"Premium","attachable":false,"beta":false,"price":{"cents":8000,"unit":"month"},"terms_of_service":false,"slug":"premium","name":"sendgrid:premium","description":"SendGrid Sendgrid Premium","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Deployhooks2","plan_description":"Basecamp","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"basecamp","name":"deployhooks2:basecamp","description":"Deployhooks2 Basecamp","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Fastly","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"fastly:test","description":"Fastly Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/logentries:proto","price_cents":1000,"state":"public","beta":false,"price_unit":"month","name":"logentries:proto","id":"https://addons.heroku.com/addons/logentries:proto","description":"Logentries Proto"},{"url":"https://addons.heroku.com/addons/pgbackups:auto-year","price_cents":10000,"state":"beta","beta":false,"price_unit":"month","name":"pgbackups:auto-year","id":"https://addons.heroku.com/addons/pgbackups:auto-year","description":"PG Backups Auto - One Year Retention"},{"state":"disabled","url":null,"group_description":"Tddium","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"tddium:test","description":"Tddium Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Fugu Staging","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"fugu-staging","name":"shogun-will:fugu-staging","description":"Shogun-will Fugu staging","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Baku","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"baku","name":"shogun-freeformz:baku","description":"Shogun-freeformz Baku","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/airbrake:production_pro","price_cents":9900,"state":"public","beta":false,"price_unit":"month","name":"airbrake:production_pro","id":"https://addons.heroku.com/addons/airbrake:production_pro","description":"Airbrake Production Pro"},{"url":"https://addons.heroku.com/addons/redistogo:large","price_cents":30000,"state":"public","beta":false,"price_unit":"month","name":"redistogo:large","id":"https://addons.heroku.com/addons/redistogo:large","description":"Redis To Go Large"},{"url":"https://addons.heroku.com/addons/loggly:capybara","price_cents":59900,"state":"public","beta":false,"price_unit":"month","name":"loggly:capybara","id":"https://addons.heroku.com/addons/loggly:capybara","description":"Loggly Capybara"},{"state":"disabled","url":null,"group_description":"Pgbackups","plan_description":"Hourly","attachable":false,"beta":false,"price":{"cents":0,"unit":"0"},"terms_of_service":false,"slug":"hourly","name":"pgbackups:hourly","description":"PG Backups Hourly","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/cloudant:oxygen","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"cloudant:oxygen","id":"https://addons.heroku.com/addons/cloudant:oxygen","description":"Cloudant Oxygen"},{"url":"https://addons.heroku.com/addons/statsmix:basic","price_cents":1900,"state":"public","beta":false,"price_unit":"month","name":"statsmix:basic","id":"https://addons.heroku.com/addons/statsmix:basic","description":"StatsMix Basic"},{"url":"https://addons.heroku.com/addons/redistogo:super","price_cents":100000,"state":"public","beta":false,"price_unit":"month","name":"redistogo:super","id":"https://addons.heroku.com/addons/redistogo:super","description":"Redis To Go Super"},{"url":"https://addons.heroku.com/addons/rhoconnect:premium","price_cents":9900,"state":"public","beta":false,"price_unit":"month","name":"rhoconnect:premium","id":"https://addons.heroku.com/addons/rhoconnect:premium","description":"RhoConnect Premium"},{"state":"alpha","url":null,"group_description":"Continuityapp","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"continuityapp:test","description":"Continuityapp Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Zilla Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"zilla-postgis","name":"shogun-tmaher:zilla-postgis","description":"Shogun-tmaher Zilla Postgis","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Jdixon","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"shogun-jdixon:test","description":"Shogun-jdixon Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/memcachier:500","price_cents":4000,"state":"public","beta":false,"price_unit":"month","name":"memcachier:500","id":"https://addons.heroku.com/addons/memcachier:500","description":"MemCachier 500 Mb"},{"state":"disabled","url":null,"group_description":"Memcached","plan_description":"Basic","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"basic","name":"memcached:basic","description":"Memcached Memcached Basic","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogunhgimenez","plan_description":"Dev","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"dev","name":"shogunhgimenez:dev","description":"Shogunhgimenez Dev","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/docraptor:premium","price_cents":9500,"state":"public","beta":false,"price_unit":"month","name":"docraptor:premium","id":"https://addons.heroku.com/addons/docraptor:premium","description":"DocRaptor Premium"},{"url":"https://addons.heroku.com/addons/mongolab:small","price_cents":1000,"state":"public","beta":false,"price_unit":"month","name":"mongolab:small","id":"https://addons.heroku.com/addons/mongolab:small","description":"MongoLab Small"},{"url":"https://addons.heroku.com/addons/pusher:bootstrap","price_cents":1900,"state":"public","beta":false,"price_unit":"month","name":"pusher:bootstrap","id":"https://addons.heroku.com/addons/pusher:bootstrap","description":"Pusher Bootstrap"},{"url":"https://addons.heroku.com/addons/cassandraio:test","price_cents":0,"state":"public","beta":true,"price_unit":"month","name":"cassandraio:test","id":"https://addons.heroku.com/addons/cassandraio:test","description":"Cassandra.io Test"},{"url":"https://addons.heroku.com/addons/justonedb:charmed_xi","price_cents":34900,"state":"public","beta":false,"price_unit":"month","name":"justonedb:charmed_xi","id":"https://addons.heroku.com/addons/justonedb:charmed_xi","description":"JustOneDB - NewSQL Cloud Database Charmed Xi"},{"url":"https://addons.heroku.com/addons/flying_sphinx:wooden","price_cents":1200,"state":"public","beta":false,"price_unit":"month","name":"flying_sphinx:wooden","id":"https://addons.heroku.com/addons/flying_sphinx:wooden","description":"Flying Sphinx Wooden"},{"url":"https://addons.heroku.com/addons/memcachier:250mb","price_cents":2500,"state":"public","beta":false,"price_unit":"month","name":"memcachier:250mb","id":"https://addons.heroku.com/addons/memcachier:250mb","description":"MemCachier 250 Mb"},{"url":"https://addons.heroku.com/addons/releases:basic","price_cents":0,"state":"disabled","beta":false,"price_unit":"month","name":"releases:basic","id":"https://addons.heroku.com/addons/releases:basic","description":"Release Management Basic"},{"url":"https://addons.heroku.com/addons/tddium:pro","price_cents":15000,"state":"public","beta":false,"price_unit":"month","name":"tddium:pro","id":"https://addons.heroku.com/addons/tddium:pro","description":"Tddium Pro"},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Kappa Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"kappa-postgis","name":"shogun-will:kappa-postgis","description":"Shogun-will Kappa Postgis","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Indextank","plan_description":"Contest 30day","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"contest_30day","name":"indextank:contest_30day","description":"IndexTank Search Heroku Contest 30 Day","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Logmetrics","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"logmetrics:test","description":"Logmetrics Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Baku Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"baku-postgis","name":"shogun-will:baku-postgis","description":"Shogun-will Baku Postgis","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/exceptional:premium","price_cents":900,"state":"public","beta":false,"price_unit":"month","name":"exceptional:premium","id":"https://addons.heroku.com/addons/exceptional:premium","description":"Exceptional Exceptional Premium"},{"state":"disabled","url":null,"group_description":"Heroku Postgresql","plan_description":"Pg9test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"pg9test","name":"heroku-postgresql:pg9test","description":"Heroku Postgres PG9Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/pgbackups:plus","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"pgbackups:plus","id":"https://addons.heroku.com/addons/pgbackups:plus","description":"PG Backups Plus"},{"state":"alpha","url":null,"group_description":"Cloudpostgres","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"cloudpostgres:test","description":"Cloud Postgres Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Ranger","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"ranger:test","description":"Ranger Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Kappa","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"kappa","name":"shogun-will:kappa","description":"Shogun-will Kappa","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Preview Test","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"preview-test:test","description":"Test Preview Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/memcache:1gb","price_cents":9000,"state":"public","beta":false,"price_unit":"month","name":"memcache:1gb","id":"https://addons.heroku.com/addons/memcache:1gb","description":"Memcache 1 GB"},{"url":"https://addons.heroku.com/addons/mongohq:rs_small","price_cents":14900,"state":"public","beta":false,"price_unit":"month","name":"mongohq:rs_small","id":"https://addons.heroku.com/addons/mongohq:rs_small","description":"MongoHQ Replica Set Small"},{"state":"alpha","url":null,"group_description":"Heroku Postgresql","plan_description":"Trial","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"trial","name":"heroku-postgresql:trial","description":"Heroku Postgres Trial","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Blitz","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"blitz:test","description":"Blitz Test","consumes_dyno_hours":false},{"state":"public","url":null,"group_description":"Heroku Shared Postgresql","plan_description":"Devcloud","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"devcloud","name":"heroku-shared-postgresql:devcloud","description":"Heroku Shared PostgreSQL Devcloud","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/zencoder:dev","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"zencoder:dev","id":"https://addons.heroku.com/addons/zencoder:dev","description":"Zencoder Developer"},{"url":"https://addons.heroku.com/addons/stillalive:plus","price_cents":2500,"state":"public","beta":false,"price_unit":"month","name":"stillalive:plus","id":"https://addons.heroku.com/addons/stillalive:plus","description":"StillAlive Plus"},{"state":"alpha","url":null,"group_description":"Qworum","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"qworum:test","description":"Qworum Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Hoptoad","plan_description":"Beta Eol","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"beta_eol","name":"hoptoad:beta_eol","description":"Airbrake Beta EOL","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Daisho","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"daisho:test","description":"Daisho Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/eshq:test","price_cents":0,"state":"beta","beta":false,"price_unit":"month","name":"eshq:test","id":"https://addons.heroku.com/addons/eshq:test","description":"EventSource HQ Test"},{"url":"https://addons.heroku.com/addons/tddium:basic","price_cents":2000,"state":"public","beta":false,"price_unit":"month","name":"tddium:basic","id":"https://addons.heroku.com/addons/tddium:basic","description":"Tddium Basic"},{"url":"https://addons.heroku.com/addons/docraptor:starter","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"docraptor:starter","id":"https://addons.heroku.com/addons/docraptor:starter","description":"DocRaptor Starter"},{"state":"public","url":null,"group_description":"Pusher","plan_description":"Custom 10k","attachable":false,"beta":false,"price":{"cents":39800,"unit":"month"},"terms_of_service":false,"slug":"custom_10k","name":"pusher:custom_10k","description":"Pusher Custom_10K","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Heroku Postgresql","plan_description":"Baku Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"baku-postgis","name":"heroku-postgresql:baku-postgis","description":"Heroku Postgres Baku Postgis","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Indextank","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"indextank:test","description":"IndexTank Search Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Staged Sphinx","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"staged_sphinx:test","description":"Flying Sphinx Staging Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Ronin Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ronin-postgis","name":"shogun-tmaher:ronin-postgis","description":"Shogun-tmaher Ronin Postgis","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Croonga Test","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"croonga-test:test","description":"Croonga-test Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/mwiki:micro","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"mwiki:micro","id":"https://addons.heroku.com/addons/mwiki:micro","description":"mWiki Micro"},{"url":"https://addons.heroku.com/addons/chargify:max","price_cents":99900,"state":"public","beta":false,"price_unit":"month","name":"chargify:max","id":"https://addons.heroku.com/addons/chargify:max","description":"Chargify Max"},{"url":"https://addons.heroku.com/addons/heroku-postgresql:fugu","price_cents":40000,"state":"public","beta":false,"price_unit":"month","name":"heroku-postgresql:fugu","id":"https://addons.heroku.com/addons/heroku-postgresql:fugu","description":"Heroku Postgres Fugu"},{"url":"https://addons.heroku.com/addons/websolr:platinum","price_cents":10000,"state":"public","beta":false,"price_unit":"month","name":"websolr:platinum","id":"https://addons.heroku.com/addons/websolr:platinum","description":"Websolr Platinum"},{"state":"alpha","url":null,"group_description":"Foobar","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"foobar:test","description":"Foobar Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Logglyheroku","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"logglyheroku:test","description":"DONTUSE Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/moonshadosms:premium","price_cents":10000,"state":"public","beta":false,"price_unit":"month","name":"moonshadosms:premium","id":"https://addons.heroku.com/addons/moonshadosms:premium","description":"Moonshado SMS Premium"},{"url":"https://addons.heroku.com/addons/loggly:gopher","price_cents":9900,"state":"public","beta":false,"price_unit":"month","name":"loggly:gopher","id":"https://addons.heroku.com/addons/loggly:gopher","description":"Loggly Gopher"},{"url":"https://addons.heroku.com/addons/logentries:ops","price_cents":5000,"state":"public","beta":false,"price_unit":"month","name":"logentries:ops","id":"https://addons.heroku.com/addons/logentries:ops","description":"Logentries Ops"},{"state":"disabled","url":null,"group_description":"Bundles","plan_description":"Unlimited","attachable":false,"beta":false,"price":{"cents":2000,"unit":"month"},"terms_of_service":false,"slug":"unlimited","name":"bundles:unlimited","description":"Bundles Unlimited Bundles","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Yotogi","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"yotogi:test","description":"Yotogi Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Mecha","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"mecha","name":"shogun-freeformz:mecha","description":"Shogun-freeformz Mecha","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/heroku-postgresql:dev","price_cents":0,"state":"public","beta":true,"price_unit":"month","name":"heroku-postgresql:dev","id":"https://addons.heroku.com/addons/heroku-postgresql:dev","description":"Heroku Postgres Dev"},{"url":"https://addons.heroku.com/addons/custom_error_pages:standard","price_cents":10000,"state":"disabled","beta":false,"price_unit":"month","name":"custom_error_pages:standard","id":"https://addons.heroku.com/addons/custom_error_pages:standard","description":"Custom Error Pages Custom Error Pages"},{"url":"https://addons.heroku.com/addons/heroku-postgresql:crane","price_cents":0,"state":"public","beta":true,"price_unit":"month","name":"heroku-postgresql:crane","id":"https://addons.heroku.com/addons/heroku-postgresql:crane","description":"Heroku Postgres Crane"},{"state":"alpha","url":null,"group_description":"Zenslap2","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"zenslap2:test","description":"Zenslap2 Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Xerounddev","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"xerounddev:test","description":"Xeround DEV Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Fugu Staging","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"fugu-staging","name":"shogun-tmaher:fugu-staging","description":"Shogun-tmaher Fugu staging","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogunjdixon","plan_description":"Fugu","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"fugu","name":"shogunjdixon:fugu","description":"Shogunjdixon Fugu","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Maddog Test","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"maddog-test:test","description":"Maddog-test Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/mongohq:small","price_cents":1500,"state":"public","beta":false,"price_unit":"month","name":"mongohq:small","id":"https://addons.heroku.com/addons/mongohq:small","description":"MongoHQ MongoHQ Small"},{"state":"disabled","url":null,"group_description":"Simple Worker","plan_description":"Starter","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"starter","name":"simple_worker:starter","description":"Appoxy SimpleWorker Starter","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Cloudcounter","plan_description":"Premium","attachable":false,"beta":false,"price":{"cents":100,"unit":"month"},"terms_of_service":false,"slug":"premium","name":"cloudcounter:premium","description":"CloudCounter Premium","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/pubnub:common","price_cents":8999,"state":"public","beta":false,"price_unit":"month","name":"pubnub:common","id":"https://addons.heroku.com/addons/pubnub:common","description":"PubNub Common"},{"url":"https://addons.heroku.com/addons/mailgun:starter","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"mailgun:starter","id":"https://addons.heroku.com/addons/mailgun:starter","description":"Mailgun Starter"},{"url":"https://addons.heroku.com/addons/newrelic:professional","price_cents":6,"state":"public","beta":false,"price_unit":"dyno_hour","name":"newrelic:professional","id":"https://addons.heroku.com/addons/newrelic:professional","description":"New Relic Professional"},{"state":"disabled","url":null,"group_description":"Websolr","plan_description":"Legacy Gold","attachable":false,"beta":false,"price":{"cents":6900,"unit":"month"},"terms_of_service":false,"slug":"legacy_gold","name":"websolr:legacy_gold","description":"Websolr Legacy Gold","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Torch","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"torch:test","description":"Torch Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Abstractidentity","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"abstractidentity:test","description":"Abstractidentity Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/heroku-postgresql:ronin","price_cents":20000,"state":"public","beta":false,"price_unit":"month","name":"heroku-postgresql:ronin","id":"https://addons.heroku.com/addons/heroku-postgresql:ronin","description":"Heroku Postgres Ronin"},{"url":"https://addons.heroku.com/addons/pubnub:minimal","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"pubnub:minimal","id":"https://addons.heroku.com/addons/pubnub:minimal","description":"PubNub Minimal"},{"url":"https://addons.heroku.com/addons/pgbackups:auto-week","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"pgbackups:auto-week","id":"https://addons.heroku.com/addons/pgbackups:auto-week","description":"PG Backups Auto - One Week Retention"},{"url":"https://addons.heroku.com/addons/mongolab:x-large","price_cents":6500,"state":"public","beta":false,"price_unit":"month","name":"mongolab:x-large","id":"https://addons.heroku.com/addons/mongolab:x-large","description":"MongoLab X-Large"},{"url":"https://addons.heroku.com/addons/sentry:pro","price_cents":700,"state":"public","beta":false,"price_unit":"month","name":"sentry:pro","id":"https://addons.heroku.com/addons/sentry:pro","description":"Sentry Pro"},{"url":"https://addons.heroku.com/addons/mailgun:basic","price_cents":1900,"state":"public","beta":false,"price_unit":"month","name":"mailgun:basic","id":"https://addons.heroku.com/addons/mailgun:basic","description":"Mailgun Basic"},{"state":"disabled","url":null,"group_description":"Securekey","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"securekey:test","description":"Secure Key Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Securekey","plan_description":"Daily","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"daily","name":"securekey:daily","description":"Secure Key Daily","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/zencoder:1k","price_cents":4000,"state":"public","beta":false,"price_unit":"month","name":"zencoder:1k","id":"https://addons.heroku.com/addons/zencoder:1k","description":"Zencoder 1,000 Minutes"},{"state":"alpha","url":null,"group_description":"Wrong1","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"wrong1:test","description":"Wrong1 Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/websolr:titanium","price_cents":80000,"state":"public","beta":false,"price_unit":"month","name":"websolr:titanium","id":"https://addons.heroku.com/addons/websolr:titanium","description":"Websolr Titanium"},{"url":"https://addons.heroku.com/addons/websolr:cobalt","price_cents":2000,"state":"public","beta":false,"price_unit":"month","name":"websolr:cobalt","id":"https://addons.heroku.com/addons/websolr:cobalt","description":"Websolr Cobalt"},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Baku Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"baku-postgis","name":"shogun-tmaher:baku-postgis","description":"Shogun-tmaher Baku Postgis","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Pvh","plan_description":"Ronin","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ronin","name":"shogun-pvh:ronin","description":"Shogun-pvh Ronin","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Kappa","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"kappa","name":"shogun-freeformz:kappa","description":"Shogun-freeformz Kappa","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Hoptoad","plan_description":"Basic","attachable":false,"beta":false,"price":{"cents":200,"unit":"month"},"terms_of_service":false,"slug":"basic","name":"hoptoad:basic","description":"Airbrake Basic","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/adminium:startup","price_cents":1000,"state":"public","beta":false,"price_unit":"month","name":"adminium:startup","id":"https://addons.heroku.com/addons/adminium:startup","description":"Adminium Startup"},{"url":"https://addons.heroku.com/addons/searchify:plus","price_cents":4900,"state":"public","beta":false,"price_unit":"month","name":"searchify:plus","id":"https://addons.heroku.com/addons/searchify:plus","description":"Searchify IndexTank Plus"},{"url":"https://addons.heroku.com/addons/cloudmailin:starter","price_cents":2500,"state":"public","beta":false,"price_unit":"month","name":"cloudmailin:starter","id":"https://addons.heroku.com/addons/cloudmailin:starter","description":"CloudMailIn Starter"},{"url":"https://addons.heroku.com/addons/redistogo:mini","price_cents":500,"state":"public","beta":false,"price_unit":"month","name":"redistogo:mini","id":"https://addons.heroku.com/addons/redistogo:mini","description":"Redis To Go Mini"},{"url":"https://addons.heroku.com/addons/rabbitmq:test","price_cents":0,"state":"beta","beta":false,"price_unit":"month","name":"rabbitmq:test","id":"https://addons.heroku.com/addons/rabbitmq:test","description":"RabbitMQ Test"},{"state":"disabled","url":null,"group_description":"Websolr","plan_description":"Legacy Silver","attachable":false,"beta":false,"price":{"cents":2000,"unit":"month"},"terms_of_service":false,"slug":"legacy_silver","name":"websolr:legacy_silver","description":"Websolr Legacy Silver","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Securekey","plan_description":"Weekly","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"weekly","name":"securekey:weekly","description":"Secure Key Weekly","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/restful_metrics:x-large","price_cents":99900,"state":"public","beta":false,"price_unit":"month","name":"restful_metrics:x-large","id":"https://addons.heroku.com/addons/restful_metrics:x-large","description":"RESTful Metrics X-Large"},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Mecha","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"mecha","name":"shogun-will:mecha","description":"Shogun-will Mecha","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogunhgimenez","plan_description":"Mecha","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"mecha","name":"shogunhgimenez:mecha","description":"Shogunhgimenez Mecha","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/dyn:lite10","price_cents":3000,"state":"public","beta":false,"price_unit":"month","name":"dyn:lite10","id":"https://addons.heroku.com/addons/dyn:lite10","description":"DynECT Managed DNS Lite 10"},{"url":"https://addons.heroku.com/addons/justonedb:double_charmed_xi","price_cents":49900,"state":"public","beta":false,"price_unit":"month","name":"justonedb:double_charmed_xi","id":"https://addons.heroku.com/addons/justonedb:double_charmed_xi","description":"JustOneDB - NewSQL Cloud Database Double Charmed Xi"},{"url":"https://addons.heroku.com/addons/cron:hourly","price_cents":300,"state":"public","beta":false,"price_unit":"month","name":"cron:hourly","id":"https://addons.heroku.com/addons/cron:hourly","description":"Cron Hourly Cron"},{"url":"https://addons.heroku.com/addons/cleardb:punch","price_cents":999,"state":"public","beta":false,"price_unit":"month","name":"cleardb:punch","id":"https://addons.heroku.com/addons/cleardb:punch","description":"ClearDB MySQL Database Punch"},{"url":"https://addons.heroku.com/addons/ssl:piggyback","price_cents":0,"state":"disabled","beta":false,"price_unit":"month","name":"ssl:piggyback","id":"https://addons.heroku.com/addons/ssl:piggyback","description":"SSL Piggyback SSL"},{"url":"https://addons.heroku.com/addons/cloudinary:test","price_cents":0,"state":"beta","beta":false,"price_unit":"month","name":"cloudinary:test","id":"https://addons.heroku.com/addons/cloudinary:test","description":"Cloudinary Test"},{"state":"alpha","url":null,"group_description":"Yotogi Addon","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"yotogi-addon:test","description":"Yotogi-addon Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Djucy","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"djucy:test","description":"Djucy Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Cranium","plan_description":"Pico","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"pico","name":"cranium:pico","description":"Cranium pico","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Simple Worker","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"simple_worker:test","description":"Appoxy SimpleWorker Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/logging:expanded","price_cents":0,"state":"disabled","beta":false,"price_unit":"month","name":"logging:expanded","id":"https://addons.heroku.com/addons/logging:expanded","description":"Logging Expanded"},{"state":"alpha","url":null,"group_description":"Heat Engine","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"heat_engine:test","description":"Heat_engine Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Restful Metrics","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"restful_metrics:test","description":"RESTful Metrics Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/progstr-filer:test","price_cents":0,"state":"public","beta":true,"price_unit":"month","name":"progstr-filer:test","id":"https://addons.heroku.com/addons/progstr-filer:test","description":"Progstr Filer Test"},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"shogun-will:test","description":"Shogun-will Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Pg9test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"pg9test","name":"shogun-freeformz:pg9test","description":"Shogun-freeformz Pg9test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Sendgrid","plan_description":"Pro","attachable":false,"beta":false,"price":{"cents":2000,"unit":"month"},"terms_of_service":false,"slug":"pro","name":"sendgrid:pro","description":"SendGrid Sendgrid Pro","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Gemfury","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"gemfury:test","description":"Gemfury Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Myaddon Mega Addon Two","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"myaddon-mega-addon-two:test","description":"Myaddon-mega-addon-two Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Heroku Postgresql","plan_description":"Ronin Staging","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ronin-staging","name":"heroku-postgresql:ronin-staging","description":"Heroku Postgres Ronin staging","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/foundelasticsearch:test","price_cents":0,"state":"beta","beta":false,"price_unit":"month","name":"foundelasticsearch:test","id":"https://addons.heroku.com/addons/foundelasticsearch:test","description":"Found ElasticSearch Test"},{"state":"alpha","url":null,"group_description":"Heroku Postgresql","plan_description":"Fugu Staging","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"fugu-staging","name":"heroku-postgresql:fugu-staging","description":"Heroku Postgres Fugu staging","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/redistogo:medium","price_cents":11000,"state":"public","beta":false,"price_unit":"month","name":"redistogo:medium","id":"https://addons.heroku.com/addons/redistogo:medium","description":"Redis To Go Medium"},{"state":"disabled","url":null,"group_description":"Chargify","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"chargify:test","description":"Chargify Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/memcachier:100","price_cents":1500,"state":"public","beta":false,"price_unit":"month","name":"memcachier:100","id":"https://addons.heroku.com/addons/memcachier:100","description":"MemCachier 100 Mb"},{"state":"alpha","url":null,"group_description":"Heroku Postgresql","plan_description":"Devplus","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"devplus","name":"heroku-postgresql:devplus","description":"Heroku Postgres Dev Plus","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/cloudamqp:test","price_cents":0,"state":"public","beta":true,"price_unit":"month","name":"cloudamqp:test","id":"https://addons.heroku.com/addons/cloudamqp:test","description":"CloudAMQP Test"},{"state":"alpha","url":null,"group_description":"Searchbox","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"searchbox:test","description":"Searchbox Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/moonshadosms:max","price_cents":35000,"state":"public","beta":false,"price_unit":"month","name":"moonshadosms:max","id":"https://addons.heroku.com/addons/moonshadosms:max","description":"Moonshado SMS Max"},{"url":"https://addons.heroku.com/addons/redistogo:nano","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"redistogo:nano","id":"https://addons.heroku.com/addons/redistogo:nano","description":"Redis To Go Nano"},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Fugu","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"fugu","name":"shogun-will:fugu","description":"Shogun-will Fugu","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/memcachier:1000","price_cents":7000,"state":"public","beta":false,"price_unit":"month","name":"memcachier:1000","id":"https://addons.heroku.com/addons/memcachier:1000","description":"MemCachier 1 Gb"},{"state":"alpha","url":null,"group_description":"Redisgreen","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"redisgreen:test","description":"Redisgreen Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/redistogo:small","price_cents":2500,"state":"public","beta":false,"price_unit":"month","name":"redistogo:small","id":"https://addons.heroku.com/addons/redistogo:small","description":"Redis To Go Small"},{"url":"https://addons.heroku.com/addons/websolr:tungsten","price_cents":40000,"state":"public","beta":false,"price_unit":"month","name":"websolr:tungsten","id":"https://addons.heroku.com/addons/websolr:tungsten","description":"Websolr Tungsten"},{"state":"public","url":null,"group_description":"Shared Database","plan_description":"5mb","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"5mb","name":"shared-database:5mb","description":"Shared Database 5MB","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/restful_metrics:developer","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"restful_metrics:developer","id":"https://addons.heroku.com/addons/restful_metrics:developer","description":"RESTful Metrics Developer"},{"state":"alpha","url":null,"group_description":"El Hydra","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"el-hydra:test","description":"El-hydra Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Html2cloud","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"html2cloud:test","description":"Html2cloud Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/justonedb:sigma","price_cents":1900,"state":"public","beta":false,"price_unit":"month","name":"justonedb:sigma","id":"https://addons.heroku.com/addons/justonedb:sigma","description":"JustOneDB - NewSQL Cloud Database Sigma"},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"shogun-freeformz:test","description":"Shogun-freeformz Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Deployhooks2","plan_description":"Irc","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"irc","name":"deployhooks2:irc","description":"Deployhooks2 IRC Hook","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Sendgrid","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"sendgrid:test","description":"SendGrid Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Logglyheroku","plan_description":"Test2","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test2","name":"logglyheroku:test2","description":"DONTUSE Test2","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/sendgrid:starter","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"sendgrid:starter","id":"https://addons.heroku.com/addons/sendgrid:starter","description":"SendGrid Starter"},{"state":"alpha","url":null,"group_description":"Cranium","plan_description":"Mecha","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"mecha","name":"cranium:mecha","description":"Cranium mecha","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/logentries:super","price_cents":250000,"state":"public","beta":false,"price_unit":"month","name":"logentries:super","id":"https://addons.heroku.com/addons/logentries:super","description":"Logentries Super"},{"url":"https://addons.heroku.com/addons/spacialdb:test","price_cents":0,"state":"beta","beta":false,"price_unit":"month","name":"spacialdb:test","id":"https://addons.heroku.com/addons/spacialdb:test","description":"SpacialDB Test"},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Mecha","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"mecha","name":"shogun-tmaher:mecha","description":"Shogun-tmaher Mecha","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Jaque","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"jaque:test","description":"Jaque Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Kappa Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"kappa-postgis","name":"shogun-tmaher:kappa-postgis","description":"Shogun-tmaher Kappa Postgis","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Pusher","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"pusher:test","description":"Pusher Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/moonshadosms:basic","price_cents":500,"state":"public","beta":false,"price_unit":"month","name":"moonshadosms:basic","id":"https://addons.heroku.com/addons/moonshadosms:basic","description":"Moonshado SMS Basic"},{"url":"https://addons.heroku.com/addons/pubnub:popular","price_cents":24999,"state":"public","beta":false,"price_unit":"month","name":"pubnub:popular","id":"https://addons.heroku.com/addons/pubnub:popular","description":"PubNub Popular"},{"state":"disabled","url":null,"group_description":"Mailgun","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"mailgun:test","description":"Mailgun Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Hoptoad","plan_description":"Plus","attachable":false,"beta":false,"price":{"cents":700,"unit":"month"},"terms_of_service":false,"slug":"plus","name":"hoptoad:plus","description":"Airbrake Plus","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Stackmob","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"stackmob:test","description":"Stackmob Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogunjdixon","plan_description":"Crane","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"crane","name":"shogunjdixon:crane","description":"Shogunjdixon Crane","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/memcachier:25","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"memcachier:25","id":"https://addons.heroku.com/addons/memcachier:25","description":"MemCachier 25 Mb"},{"state":"alpha","url":null,"group_description":"Database Com Beta","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"database-com-beta:test","description":"Database-com-beta Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Stackmob","plan_description":"Platinum","attachable":false,"beta":false,"price":{"cents":119900,"unit":"month"},"terms_of_service":false,"slug":"platinum","name":"stackmob:platinum","description":"Stackmob Platinum","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/iron_worker:venti","price_cents":10800,"state":"public","beta":false,"price_unit":"month","name":"iron_worker:venti","id":"https://addons.heroku.com/addons/iron_worker:venti","description":"IronWorker Venti"},{"state":"alpha","url":null,"group_description":"Heroku Postgresql","plan_description":"Ika Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ika-postgis","name":"heroku-postgresql:ika-postgis","description":"Heroku Postgres Ika Postgis","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Unique Io","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"unique-io:test","description":"Unique-io Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Sickle","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"sickle:test","description":"Sickle Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Glenntest","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"glenntest:test","description":"Glenntest Test","consumes_dyno_hours":true},{"state":"alpha","url":null,"group_description":"Cloudquartz","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"cloudquartz:test","description":"Cloudquartz Test","consumes_dyno_hours":true},{"state":"disabled","url":null,"group_description":"Pubnub","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"pubnub:test","description":"PubNub Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Database Com Morten","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"database-com-morten:test","description":"Database.com Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/cloudmailin:micro","price_cents":900,"state":"public","beta":false,"price_unit":"month","name":"cloudmailin:micro","id":"https://addons.heroku.com/addons/cloudmailin:micro","description":"CloudMailIn Micro"},{"url":"https://addons.heroku.com/addons/memcache:5mb","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"memcache:5mb","id":"https://addons.heroku.com/addons/memcache:5mb","description":"Memcache 5 MB"},{"url":"https://addons.heroku.com/addons/tddium:standard","price_cents":5000,"state":"public","beta":false,"price_unit":"month","name":"tddium:standard","id":"https://addons.heroku.com/addons/tddium:standard","description":"Tddium Standard"},{"url":"https://addons.heroku.com/addons/justonedb:xi","price_cents":19900,"state":"public","beta":false,"price_unit":"month","name":"justonedb:xi","id":"https://addons.heroku.com/addons/justonedb:xi","description":"JustOneDB - NewSQL Cloud Database Xi"},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Kappa","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"kappa","name":"shogun-tmaher:kappa","description":"Shogun-tmaher Kappa","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Heroku Postgresql","plan_description":"Mecha Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"mecha-postgis","name":"heroku-postgresql:mecha-postgis","description":"Heroku Postgres Mecha Postgis","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Letmein","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"letmein:test","description":"Letmein Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/blitline:producer","price_cents":3599,"state":"public","beta":false,"price_unit":"month","name":"blitline:producer","id":"https://addons.heroku.com/addons/blitline:producer","description":"Blitline Producer"},{"url":"https://addons.heroku.com/addons/statsmix:pro","price_cents":9900,"state":"public","beta":false,"price_unit":"month","name":"statsmix:pro","id":"https://addons.heroku.com/addons/statsmix:pro","description":"StatsMix Pro"},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Baku","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"baku","name":"shogun-tmaher:baku","description":"Shogun-tmaher Baku","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogunjdixon","plan_description":"Ronin","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ronin","name":"shogunjdixon:ronin","description":"Shogunjdixon Ronin","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/logentries:mega","price_cents":500000,"state":"public","beta":false,"price_unit":"month","name":"logentries:mega","id":"https://addons.heroku.com/addons/logentries:mega","description":"Logentries Mega"},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Ronin Staging","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ronin-staging","name":"shogun-freeformz:ronin-staging","description":"Shogun-freeformz Ronin-staging","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Sendgrid","plan_description":"Free","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"free","name":"sendgrid:free","description":"SendGrid Sendgrid Free","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/dbinsights:starter","price_cents":500,"state":"public","beta":false,"price_unit":"month","name":"dbinsights:starter","id":"https://addons.heroku.com/addons/dbinsights:starter","description":"DbInsights Starter"},{"url":"https://addons.heroku.com/addons/pandastream:duo","price_cents":19800,"state":"public","beta":false,"price_unit":"month","name":"pandastream:duo","id":"https://addons.heroku.com/addons/pandastream:duo","description":"PandaStream Duo"},{"state":"disabled","url":null,"group_description":"Xeround","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"xeround:test","description":"Xeround the cloud database Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Websolr","plan_description":"Legacy Titanium","attachable":false,"beta":false,"price":{"cents":49900,"unit":"month"},"terms_of_service":false,"slug":"legacy_titanium","name":"websolr:legacy_titanium","description":"Websolr Legacy Titanium","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/iron_worker:grande","price_cents":7200,"state":"public","beta":false,"price_unit":"month","name":"iron_worker:grande","id":"https://addons.heroku.com/addons/iron_worker:grande","description":"IronWorker Grande"},{"url":"https://addons.heroku.com/addons/heroku-postgresql:zilla","price_cents":160000,"state":"public","beta":false,"price_unit":"month","name":"heroku-postgresql:zilla","id":"https://addons.heroku.com/addons/heroku-postgresql:zilla","description":"Heroku Postgres Zilla"},{"state":"disabled","url":null,"group_description":"Searchify","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"searchify:test","description":"Searchify IndexTank Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Glenntest3","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"glenntest3:test","description":"Glenn's Test Addon Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Nuvolabase","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"nuvolabase:test","description":"Nuvolabase Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/airbrake:enterprise_production","price_cents":49900,"state":"public","beta":false,"price_unit":"month","name":"airbrake:enterprise_production","id":"https://addons.heroku.com/addons/airbrake:enterprise_production","description":"Airbrake Enterprise Production"},{"url":"https://addons.heroku.com/addons/xeround:basic250","price_cents":3300,"state":"public","beta":false,"price_unit":"month","name":"xeround:basic250","id":"https://addons.heroku.com/addons/xeround:basic250","description":"Xeround the cloud database Basic 250MB"},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Fugu Staging","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"fugu-staging","name":"shogun-freeformz:fugu-staging","description":"Shogun-freeformz Fugu-staging","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Oneloginherokusaml","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"oneloginherokusaml:test","description":"Oneloginherokusaml Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shove","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"shove:test","description":"Shove Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogunhgimenez","plan_description":"Baku","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"baku","name":"shogunhgimenez:baku","description":"Shogunhgimenez Baku","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Crond","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"crond:test","description":"Crond Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Bobik","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"bobik:test","description":"Bobik Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Heroku Shared Postgresql","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"heroku-shared-postgresql:test","description":"Heroku Shared PostgreSQL Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Splunk","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"splunk:test","description":"Splunk Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogunhgimenez","plan_description":"Trial","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"trial","name":"shogunhgimenez:trial","description":"Shogunhgimenez Trial","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/progstr:test","price_cents":0,"state":"public","beta":true,"price_unit":"month","name":"progstr:test","id":"https://addons.heroku.com/addons/progstr:test","description":"Progstr Logger Test"},{"url":"https://addons.heroku.com/addons/loggly:woodchuck","price_cents":14900,"state":"public","beta":false,"price_unit":"month","name":"loggly:woodchuck","id":"https://addons.heroku.com/addons/loggly:woodchuck","description":"Loggly Woodchuck"},{"state":"disabled","url":null,"group_description":"Airbrake","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"airbrake:test","description":"Airbrake Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/zencoder:4k","price_cents":12000,"state":"public","beta":false,"price_unit":"month","name":"zencoder:4k","id":"https://addons.heroku.com/addons/zencoder:4k","description":"Zencoder 4,000 Minutes"},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Fugu","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"fugu","name":"shogun-freeformz:fugu","description":"Shogun-freeformz Fugu","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/memcachier:2500","price_cents":16500,"state":"public","beta":false,"price_unit":"month","name":"memcachier:2500","id":"https://addons.heroku.com/addons/memcachier:2500","description":"MemCachier 2.5 Gb"},{"state":"alpha","url":null,"group_description":"Vixie Production","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"vixie-production:test","description":"Vixie-production Test","consumes_dyno_hours":true},{"url":"https://addons.heroku.com/addons/sendgrid:platinum","price_cents":39995,"state":"public","beta":false,"price_unit":"month","name":"sendgrid:platinum","id":"https://addons.heroku.com/addons/sendgrid:platinum","description":"SendGrid Platinum"},{"url":"https://addons.heroku.com/addons/cloudant:argon","price_cents":1500,"state":"public","beta":false,"price_unit":"month","name":"cloudant:argon","id":"https://addons.heroku.com/addons/cloudant:argon","description":"Cloudant Argon"},{"url":"https://addons.heroku.com/addons/dashmin:test","price_cents":0,"state":"beta","beta":false,"price_unit":"month","name":"dashmin:test","id":"https://addons.heroku.com/addons/dashmin:test","description":"Dashmin Test"},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Baku Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"baku-postgis","name":"shogun-freeformz:baku-postgis","description":"Shogun-freeformz Baku-postgis","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Deployhooks2","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"deployhooks2:test","description":"Deployhooks2 Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/tripwire:test","price_cents":0,"state":"beta","beta":false,"price_unit":"month","name":"tripwire:test","id":"https://addons.heroku.com/addons/tripwire:test","description":"Tripwire Test"},{"url":"https://addons.heroku.com/addons/zencoder:100k","price_cents":200000,"state":"public","beta":false,"price_unit":"month","name":"zencoder:100k","id":"https://addons.heroku.com/addons/zencoder:100k","description":"Zencoder 100,000 Minutes"},{"state":"alpha","url":null,"group_description":"Dynamodb","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"dynamodb:test","description":"Dynamodb Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Cranium","plan_description":"Baku","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"baku","name":"cranium:baku","description":"Cranium baku","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/mongolab:starter","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"mongolab:starter","id":"https://addons.heroku.com/addons/mongolab:starter","description":"MongoLab Starter"},{"url":"https://addons.heroku.com/addons/pandastream:sandbox","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"pandastream:sandbox","id":"https://addons.heroku.com/addons/pandastream:sandbox","description":"PandaStream Sandbox"},{"url":"https://addons.heroku.com/addons/pubnub:starter","price_cents":4999,"state":"public","beta":false,"price_unit":"month","name":"pubnub:starter","id":"https://addons.heroku.com/addons/pubnub:starter","description":"PubNub Starter"},{"state":"alpha","url":null,"group_description":"Chatspire","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"chatspire:test","description":"Chatspire Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Ika","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ika","name":"shogun-freeformz:ika","description":"Shogun-freeformz Ika","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Myaddon","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"myaddon:test","description":"Myaddon Test","consumes_dyno_hours":false},{"state":"public","url":null,"group_description":"Heroku Shared Postgresql","plan_description":"Basic","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"basic","name":"heroku-shared-postgresql:basic","description":"Heroku Shared PostgreSQL Basic","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Fugu Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"fugu-postgis","name":"shogun-will:fugu-postgis","description":"Shogun-will Fugu Postgis","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Errorbucket","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"errorbucket:test","description":"Errorbucket Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/iron_worker:titanium","price_cents":99900,"state":"public","beta":false,"price_unit":"month","name":"iron_worker:titanium","id":"https://addons.heroku.com/addons/iron_worker:titanium","description":"IronWorker Titanium"},{"url":"https://addons.heroku.com/addons/flying_sphinx:ceramic","price_cents":5500,"state":"public","beta":false,"price_unit":"month","name":"flying_sphinx:ceramic","id":"https://addons.heroku.com/addons/flying_sphinx:ceramic","description":"Flying Sphinx Ceramic"},{"url":"https://addons.heroku.com/addons/airbrake:production_pro_plus","price_cents":19900,"state":"public","beta":false,"price_unit":"month","name":"airbrake:production_pro_plus","id":"https://addons.heroku.com/addons/airbrake:production_pro_plus","description":"Airbrake Production Pro Plus"},{"state":"alpha","url":null,"group_description":"Postgres","plan_description":"Devcloud","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"devcloud","name":"postgres:devcloud","description":"Postgres Devcloud","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Ika Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ika-postgis","name":"shogun-tmaher:ika-postgis","description":"Shogun-tmaher Ika Postgis","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Scheduler","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"scheduler:test","description":"Heroku Scheduler Test","consumes_dyno_hours":true},{"state":"disabled","url":null,"group_description":"Recurly","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"recurly:test","description":"Recurly Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/chargify:launch","price_cents":3900,"state":"public","beta":false,"price_unit":"month","name":"chargify:launch","id":"https://addons.heroku.com/addons/chargify:launch","description":"Chargify Launch"},{"url":"https://addons.heroku.com/addons/database-com:test","price_cents":0,"state":"beta","beta":false,"price_unit":"month","name":"database-com:test","id":"https://addons.heroku.com/addons/database-com:test","description":"database.com Test"},{"url":"https://addons.heroku.com/addons/zencoder:20k","price_cents":60000,"state":"public","beta":false,"price_unit":"month","name":"zencoder:20k","id":"https://addons.heroku.com/addons/zencoder:20k","description":"Zencoder 20,000 Minutes"},{"state":"alpha","url":null,"group_description":"Joygun","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"joygun:test","description":"Joygun Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Isabelle Addontest","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"isabelle_addontest:test","description":"Isabelle_addontest Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/iron_mq:ore","price_cents":999,"state":"public","beta":false,"price_unit":"month","name":"iron_mq:ore","id":"https://addons.heroku.com/addons/iron_mq:ore","description":"IronMQ Ore"},{"state":"alpha","url":null,"group_description":"Shogunhgimenez","plan_description":"Ronin","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ronin","name":"shogunhgimenez:ronin","description":"Shogunhgimenez Ronin","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Cassandrahq","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"cassandrahq:test","description":"CassandraHQ Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/iron_worker:starter","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"iron_worker:starter","id":"https://addons.heroku.com/addons/iron_worker:starter","description":"IronWorker Starter"},{"state":"alpha","url":null,"group_description":"Mctestaddon","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"mctestaddon:test","description":"Mctestaddon Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Xeround","plan_description":"500mb","attachable":false,"beta":false,"price":{"cents":7000,"unit":"month"},"terms_of_service":false,"slug":"500mb","name":"xeround:500mb","description":"Xeround the cloud database 500MB","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Heroku Postgresql","plan_description":"Fugu Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"fugu-postgis","name":"heroku-postgresql:fugu-postgis","description":"Heroku Postgres Fugu Postgis","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Zenslap","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"zenslap:test","description":"zenslap Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Crane","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"crane","name":"shogun-will:crane","description":"Shogun-will Crane","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/logentries:high","price_cents":50000,"state":"public","beta":false,"price_unit":"month","name":"logentries:high","id":"https://addons.heroku.com/addons/logentries:high","description":"Logentries High"},{"state":"alpha","url":null,"group_description":"Notificationapp","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"notificationapp:test","description":"Notification App Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/airbrake:developer","price_cents":700,"state":"public","beta":false,"price_unit":"month","name":"airbrake:developer","id":"https://addons.heroku.com/addons/airbrake:developer","description":"Airbrake Developer"},{"url":"https://addons.heroku.com/addons/pusher:bigboy","price_cents":19900,"state":"public","beta":false,"price_unit":"month","name":"pusher:bigboy","id":"https://addons.heroku.com/addons/pusher:bigboy","description":"Pusher Big Boy"},{"url":"https://addons.heroku.com/addons/redistogo:mega","price_cents":400000,"state":"public","beta":false,"price_unit":"month","name":"redistogo:mega","id":"https://addons.heroku.com/addons/redistogo:mega","description":"Redis To Go Mega"},{"state":"alpha","url":null,"group_description":"Foo Bar","plan_description":"Baz","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"baz","name":"foo-bar:baz","description":"Foo-bar Baz","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/mwiki:large","price_cents":700,"state":"public","beta":false,"price_unit":"month","name":"mwiki:large","id":"https://addons.heroku.com/addons/mwiki:large","description":"mWiki Large"},{"state":"alpha","url":null,"group_description":"Ubalo","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"ubalo:test","description":"Ubalo Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/memcachier:10000","price_cents":55000,"state":"public","beta":false,"price_unit":"month","name":"memcachier:10000","id":"https://addons.heroku.com/addons/memcachier:10000","description":"MemCachier 10 Gb"},{"state":"disabled","url":null,"group_description":"Websolr","plan_description":"Legacy Platinum","attachable":false,"beta":false,"price":{"cents":16900,"unit":"month"},"terms_of_service":false,"slug":"legacy_platinum","name":"websolr:legacy_platinum","description":"Websolr Legacy Platinum","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Ronin Staging","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ronin-staging","name":"shogun-will:ronin-staging","description":"Shogun-will Ronin staging","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Heroku Postgresql","plan_description":"Zilla Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"zilla-postgis","name":"heroku-postgresql:zilla-postgis","description":"Heroku Postgres Zilla Postgis","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Bubo","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"bubo:test","description":"Bubo Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"My Addon","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"my_addon:test","description":"My_addon Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/spreedlycore:test","price_cents":0,"state":"beta","beta":false,"price_unit":"month","name":"spreedlycore:test","id":"https://addons.heroku.com/addons/spreedlycore:test","description":"Spreedly Core Test"},{"url":"https://addons.heroku.com/addons/blitline:rockstar","price_cents":6599,"state":"public","beta":false,"price_unit":"month","name":"blitline:rockstar","id":"https://addons.heroku.com/addons/blitline:rockstar","description":"Blitline Rockstar"},{"url":"https://addons.heroku.com/addons/stackmob:bronze","price_cents":500,"state":"public","beta":false,"price_unit":"month","name":"stackmob:bronze","id":"https://addons.heroku.com/addons/stackmob:bronze","description":"Stackmob Bronze"},{"state":"disabled","url":null,"group_description":"Simple Worker","plan_description":"Tall","attachable":false,"beta":false,"price":{"cents":3600,"unit":"month"},"terms_of_service":false,"slug":"tall","name":"simple_worker:tall","description":"Appoxy SimpleWorker Tall","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Ronin","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ronin","name":"shogun-will:ronin","description":"Shogun-will Ronin","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Cranium","plan_description":"Ika","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ika","name":"cranium:ika","description":"Cranium ika","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Invoicefu","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"invoicefu:test","description":"Invoicefu Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Ika Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ika-postgis","name":"shogun-will:ika-postgis","description":"Shogun-will Ika Postgis","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Mecha Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"mecha-postgis","name":"shogun-freeformz:mecha-postgis","description":"Shogun-freeformz Mecha-postgis","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/sentry:developer","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"sentry:developer","id":"https://addons.heroku.com/addons/sentry:developer","description":"Sentry Developer"},{"state":"disabled","url":null,"group_description":"Indextank","plan_description":"Premium","attachable":false,"beta":false,"price":{"cents":30000,"unit":"month"},"terms_of_service":false,"slug":"premium","name":"indextank:premium","description":"IndexTank Search Premium","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Sendgrid","plan_description":"Lite","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"lite","name":"sendgrid:lite","description":"SendGrid Lite","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Cloudassault","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"cloudassault:test","description":"Cloud Assault Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Crane","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"crane","name":"shogun-freeformz:crane","description":"Shogun-freeformz Crane","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/blitline:developer","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"blitline:developer","id":"https://addons.heroku.com/addons/blitline:developer","description":"Blitline Developer Package"},{"url":"https://addons.heroku.com/addons/bonsai:test","price_cents":0,"state":"public","beta":true,"price_unit":"month","name":"bonsai:test","id":"https://addons.heroku.com/addons/bonsai:test","description":"Bonsai ElasticSearch Test"},{"state":"alpha","url":null,"group_description":"Vixie Staging","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"vixie-staging:test","description":"Vixie-staging Test","consumes_dyno_hours":true},{"state":"alpha","url":null,"group_description":"Deployhooks2","plan_description":"Http","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"http","name":"deployhooks2:http","description":"Deployhooks2 HTTP Hook","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/ssl:sni","price_cents":500,"state":"public","beta":false,"price_unit":"month","name":"ssl:sni","id":"https://addons.heroku.com/addons/ssl:sni","description":"SSL SNI SSL"},{"url":"https://addons.heroku.com/addons/blitz:1000","price_cents":79900,"state":"public","beta":false,"price_unit":"month","name":"blitz:1000","id":"https://addons.heroku.com/addons/blitz:1000","description":"Blitz 1000"},{"state":"disabled","url":null,"group_description":"Rhoconnect","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"rhoconnect:test","description":"RhoConnect Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Crond","plan_description":"Hourly","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"hourly","name":"crond:hourly","description":"Crond Hourly","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/logentries:production","price_cents":25000,"state":"public","beta":false,"price_unit":"month","name":"logentries:production","id":"https://addons.heroku.com/addons/logentries:production","description":"Logentries Production"},{"state":"alpha","url":null,"group_description":"Yorapi","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"yorapi:test","description":"Yorapi Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Musashi Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"musashi-postgis","name":"shogun-freeformz:musashi-postgis","description":"Shogun-freeformz Musashi-postgis","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Indextank","plan_description":"Trial","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"trial","name":"indextank:trial","description":"IndexTank Search Trial","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/memcache:100mb","price_cents":2000,"state":"public","beta":false,"price_unit":"month","name":"memcache:100mb","id":"https://addons.heroku.com/addons/memcache:100mb","description":"Memcache 100 MB"},{"state":"public","url":null,"group_description":"Legacy Database","plan_description":"Ninja","attachable":false,"beta":false,"price":{"cents":80000,"unit":"month"},"terms_of_service":false,"slug":"ninja","name":"legacy-database:ninja","description":"Legacy Database Ninja","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Webperformance","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"webperformance:test","description":"Webperformance Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Traction","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"traction:test","description":"Traction Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Tsuchi","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"tsuchi:test","description":"Tsuchi Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Statsmix","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"statsmix:test","description":"StatsMix Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Cranium","plan_description":"Crane","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"crane","name":"cranium:crane","description":"Cranium crane","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/logentries:concept","price_cents":500,"state":"public","beta":false,"price_unit":"month","name":"logentries:concept","id":"https://addons.heroku.com/addons/logentries:concept","description":"Logentries Concept"},{"state":"alpha","url":null,"group_description":"Blogapp","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"blogapp:test","description":"Blogapp Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/ranger:elite","price_cents":2500,"state":"public","beta":false,"price_unit":"month","name":"ranger:elite","id":"https://addons.heroku.com/addons/ranger:elite","description":"Ranger Elite"},{"state":"alpha","url":null,"group_description":"Mydbdc","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"mydbdc:test","description":"Mydbdc Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/logging:basic","price_cents":0,"state":"disabled","beta":false,"price_unit":"month","name":"logging:basic","id":"https://addons.heroku.com/addons/logging:basic","description":"Logging Basic"},{"url":"https://addons.heroku.com/addons/boxcar:test","price_cents":0,"state":"beta","beta":false,"price_unit":"month","name":"boxcar:test","id":"https://addons.heroku.com/addons/boxcar:test","description":"Boxcar Push Notifications Test"},{"state":"disabled","url":null,"group_description":"Xeround","plan_description":"1gb","attachable":false,"beta":false,"price":{"cents":14900,"unit":"month"},"terms_of_service":false,"slug":"1gb","name":"xeround:1gb","description":"Xeround the cloud database 1GB","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/apigee_facebook:basic","price_cents":0,"state":"public","beta":true,"price_unit":"month","name":"apigee_facebook:basic","id":"https://addons.heroku.com/addons/apigee_facebook:basic","description":"Apigee for Facebook Basic"},{"state":"alpha","url":null,"group_description":"Pct141","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"pct141:test","description":"Pct141 Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Notificationapp1","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"notificationapp1:test","description":"Notificationapp1 Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/tronprint:test","price_cents":0,"state":"public","beta":true,"price_unit":"month","name":"tronprint:test","id":"https://addons.heroku.com/addons/tronprint:test","description":"Tronprint Test"},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Ika","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ika","name":"shogun-will:ika","description":"Shogun-will Ika","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Crane","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"crane","name":"shogun-tmaher:crane","description":"Shogun-tmaher Crane","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/searchify:small","price_cents":2500,"state":"public","beta":false,"price_unit":"month","name":"searchify:small","id":"https://addons.heroku.com/addons/searchify:small","description":"Searchify IndexTank Small"},{"state":"alpha","url":null,"group_description":"Mailchimp","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"mailchimp:test","description":"Mailchimp Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/framey:test","price_cents":0,"state":"beta","beta":false,"price_unit":"month","name":"framey:test","id":"https://addons.heroku.com/addons/framey:test","description":"Framey Test"},{"state":"alpha","url":null,"group_description":"Isabelle Test","plan_description":"Standard","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"standard","name":"isabelle-test:standard","description":" Standard","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Indextank","plan_description":"Starter","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"starter","name":"indextank:starter","description":"IndexTank Search Starter","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/zencoder:2k","price_cents":8000,"state":"public","beta":false,"price_unit":"month","name":"zencoder:2k","id":"https://addons.heroku.com/addons/zencoder:2k","description":"Zencoder 2,000 Minutes"},{"url":"https://addons.heroku.com/addons/mailgun:pro","price_cents":7900,"state":"public","beta":false,"price_unit":"month","name":"mailgun:pro","id":"https://addons.heroku.com/addons/mailgun:pro","description":"Mailgun Pro"},{"state":"disabled","url":null,"group_description":"Cloudcounter V2","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"cloudcounter_v2:test","description":"Cloudcounter_v2 Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/logentries:heavy","price_cents":100000,"state":"public","beta":false,"price_unit":"month","name":"logentries:heavy","id":"https://addons.heroku.com/addons/logentries:heavy","description":"Logentries Heavy"},{"url":"https://addons.heroku.com/addons/chargify:start","price_cents":9900,"state":"public","beta":false,"price_unit":"month","name":"chargify:start","id":"https://addons.heroku.com/addons/chargify:start","description":"Chargify Start"},{"url":"https://addons.heroku.com/addons/moonshadosms:plus","price_cents":2000,"state":"public","beta":false,"price_unit":"month","name":"moonshadosms:plus","id":"https://addons.heroku.com/addons/moonshadosms:plus","description":"Moonshado SMS Plus"},{"state":"disabled","url":null,"group_description":"Indextank","plan_description":"Pro","attachable":false,"beta":false,"price":{"cents":17500,"unit":"month"},"terms_of_service":false,"slug":"pro","name":"indextank:pro","description":"IndexTank Search Pro","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/apigee:basic","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"apigee:basic","id":"https://addons.heroku.com/addons/apigee:basic","description":"Apigee For Twitter Basic"},{"state":"public","url":null,"group_description":"Flying Sphinx","plan_description":"Marble","attachable":false,"beta":false,"price":{"cents":30000,"unit":"month"},"terms_of_service":false,"slug":"marble","name":"flying_sphinx:marble","description":"Flying Sphinx Marble","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/heroku-postgresql:baku","price_cents":320000,"state":"public","beta":false,"price_unit":"month","name":"heroku-postgresql:baku","id":"https://addons.heroku.com/addons/heroku-postgresql:baku","description":"Heroku Postgres Baku"},{"state":"alpha","url":null,"group_description":"Bearings","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"bearings:test","description":"Bearings Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Endax Fourteen","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"endax-fourteen:test","description":"Endax-fourteen Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Cranium","plan_description":"Ronin","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ronin","name":"cranium:ronin","description":"Cranium ronin","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Testaddon100","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"testaddon100:test","description":"Testaddon100 Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Musashi Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"musashi-postgis","name":"shogun-will:musashi-postgis","description":"Shogun-will Musashi Postgis","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Ronin","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ronin","name":"shogun-tmaher:ronin","description":"Shogun-tmaher Ronin","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Request Logger","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"request-logger:test","description":"Request-logger Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Mailchimp Tester","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"mailchimp-tester:test","description":"Mailchimp-tester Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/loggly:squirrel","price_cents":4900,"state":"public","beta":false,"price_unit":"month","name":"loggly:squirrel","id":"https://addons.heroku.com/addons/loggly:squirrel","description":"Loggly Squirrel"},{"state":"alpha","url":null,"group_description":"Zinc","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"zinc:test","description":"Zinc Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Pvh","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"shogun-pvh:test","description":"Shogun-pvh Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogunjdixon","plan_description":"Baku","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"baku","name":"shogunjdixon:baku","description":"Shogunjdixon Baku","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/memcache:50gb","price_cents":350000,"state":"public","beta":false,"price_unit":"month","name":"memcache:50gb","id":"https://addons.heroku.com/addons/memcache:50gb","description":"Memcache 50 GB"},{"state":"public","url":null,"group_description":"Legacy Database","plan_description":"Ronin","attachable":false,"beta":false,"price":{"cents":20000,"unit":"month"},"terms_of_service":false,"slug":"ronin","name":"legacy-database:ronin","description":"Legacy Database Ronin","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Taninaddon","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"taninaddon:test","description":"Taninaddon Test","consumes_dyno_hours":false},{"state":"public","url":null,"group_description":"Shared Database","plan_description":"20gb","attachable":false,"beta":false,"price":{"cents":1500,"unit":"month"},"terms_of_service":false,"slug":"20gb","name":"shared-database:20gb","description":"Shared Database 20GB","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/mongohq:micro","price_cents":500,"state":"public","beta":false,"price_unit":"month","name":"mongohq:micro","id":"https://addons.heroku.com/addons/mongohq:micro","description":"MongoHQ MongoHQ Micro"},{"state":"alpha","url":null,"group_description":"Workdivision","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"workdivision:test","description":"Workdivision Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/stackmob:iron","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"stackmob:iron","id":"https://addons.heroku.com/addons/stackmob:iron","description":"Stackmob Iron"},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Pg9test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"pg9test","name":"shogun-will:pg9test","description":"Shogun-will PG9Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Ika Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ika-postgis","name":"shogun-freeformz:ika-postgis","description":"Shogun-freeformz Ika-postgis","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Malicealpha","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"malicealpha:test","description":"Malice Alpha Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Croonga","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"croonga:test","description":"Croonga Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Cloudcounter","plan_description":"Basic","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"basic","name":"cloudcounter:basic","description":"CloudCounter Basic","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Bind","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"bind:test","description":"Bind Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Canary","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"canary:test","description":"Canary Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/blitz:5000","price_cents":129900,"state":"public","beta":false,"price_unit":"month","name":"blitz:5000","id":"https://addons.heroku.com/addons/blitz:5000","description":"Blitz 5000"},{"url":"https://addons.heroku.com/addons/dyn:lite25","price_cents":6000,"state":"public","beta":false,"price_unit":"month","name":"dyn:lite25","id":"https://addons.heroku.com/addons/dyn:lite25","description":"DynECT Managed DNS Lite 25"},{"state":"alpha","url":null,"group_description":"Clojure","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"clojure:test","description":"Clojure Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/xeround:basic100","price_cents":1700,"state":"public","beta":false,"price_unit":"month","name":"xeround:basic100","id":"https://addons.heroku.com/addons/xeround:basic100","description":"Xeround the cloud database Basic 100MB"},{"state":"public","url":null,"group_description":"Turkey","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"turkey:test","description":"Turkey Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Tolq","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"tolq:test","description":"Tolq Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Simplegeo","plan_description":"Premium","attachable":false,"beta":false,"price":{"cents":7900,"unit":"month"},"terms_of_service":false,"slug":"premium","name":"simplegeo:premium","description":"SimpleGeo Premium","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogunhgimenez","plan_description":"Development","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"development","name":"shogunhgimenez:development","description":"Shogunhgimenez Development","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/ssl:ip","price_cents":10000,"state":"public","beta":false,"price_unit":"month","name":"ssl:ip","id":"https://addons.heroku.com/addons/ssl:ip","description":"SSL IP Based Custom SSL"},{"url":"https://addons.heroku.com/addons/sourceninja:test","price_cents":0,"state":"beta","beta":false,"price_unit":"month","name":"sourceninja:test","id":"https://addons.heroku.com/addons/sourceninja:test","description":"SourceNinja Test"},{"url":"https://addons.heroku.com/addons/tddium:plus","price_cents":8000,"state":"public","beta":false,"price_unit":"month","name":"tddium:plus","id":"https://addons.heroku.com/addons/tddium:plus","description":"Tddium Plus"},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Mecha Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"mecha-postgis","name":"shogun-will:mecha-postgis","description":"Shogun-will Mecha Postgis","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogunhgimenez","plan_description":"Zilla","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"zilla","name":"shogunhgimenez:zilla","description":"Shogunhgimenez Zilla","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Ronin Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ronin-postgis","name":"shogun-freeformz:ronin-postgis","description":"Shogun-freeformz Ronin-postgis","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Iron Worker","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"iron_worker:test","description":"IronWorker Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/iron_mq:cast","price_cents":4999,"state":"public","beta":false,"price_unit":"month","name":"iron_mq:cast","id":"https://addons.heroku.com/addons/iron_mq:cast","description":"IronMQ Cast"},{"state":"alpha","url":null,"group_description":"Heroku My Addon","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"heroku_my_addon:test","description":"Heroku_my_addon Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Newsfeedlab","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"newsfeedlab:test","description":"Newsfeed Lab Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/cloudant:neon","price_cents":3900,"state":"public","beta":false,"price_unit":"month","name":"cloudant:neon","id":"https://addons.heroku.com/addons/cloudant:neon","description":"Cloudant Neon"},{"state":"alpha","url":null,"group_description":"Foo Bar","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"foo-bar:test","description":"Foo-bar Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Redisko","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"redisko:test","description":"Redisko Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Pgbackups","plan_description":"Daily","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"daily","name":"pgbackups:daily","description":"PG Backups Daily","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/cleardb:ignite","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"cleardb:ignite","id":"https://addons.heroku.com/addons/cleardb:ignite","description":"ClearDB MySQL Database Ignite"},{"state":"disabled","url":null,"group_description":"Bifrost","plan_description":"Ronin","attachable":false,"beta":false,"price":{"cents":20000,"unit":"month"},"terms_of_service":false,"slug":"ronin","name":"bifrost:ronin","description":"PostgreSQL 9.0 Ronin","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/raydash:test","price_cents":0,"state":"beta","beta":false,"price_unit":"month","name":"raydash:test","id":"https://addons.heroku.com/addons/raydash:test","description":"Raydash Test"},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Zilla Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"zilla-postgis","name":"shogun-freeformz:zilla-postgis","description":"Shogun-freeformz Zilla-postgis","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Pedros Addon","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"pedros_addon:test","description":"Pedros_addon Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/parse:test","price_cents":0,"state":"beta","beta":false,"price_unit":"month","name":"parse:test","id":"https://addons.heroku.com/addons/parse:test","description":"Parse Test"},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"shogun-tmaher:test","description":"Shogun-tmaher Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogunhgimenez","plan_description":"Devplus","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"devplus","name":"shogunhgimenez:devplus","description":"Shogunhgimenez Dev Plus","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/mongolab:medium","price_cents":2000,"state":"public","beta":false,"price_unit":"month","name":"mongolab:medium","id":"https://addons.heroku.com/addons/mongolab:medium","description":"MongoLab Medium"},{"state":"alpha","url":null,"group_description":"Elasticsearch","plan_description":"Test2","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test2","name":"elasticsearch:test2","description":"Squatter ElasticSearch Test 2","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/logging:advanced","price_cents":10000,"state":"disabled","beta":false,"price_unit":"month","name":"logging:advanced","id":"https://addons.heroku.com/addons/logging:advanced","description":"Logging Advanced"},{"state":"alpha","url":null,"group_description":"Appboard","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"appboard:test","description":"Appboard Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Logentries","plan_description":"Tryit Old","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"tryit_old","name":"logentries:tryit_old","description":"Logentries TryIt","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Hachiko","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"hachiko:test","description":"Hachiko Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Bind","plan_description":"Beanstalkd","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"beanstalkd","name":"bind:beanstalkd","description":"Bind Beanstalk","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Exceptional","plan_description":"Basic","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"basic","name":"exceptional:basic","description":"Exceptional Exceptional Basic","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/cloudant:krypton","price_cents":39900,"state":"public","beta":false,"price_unit":"month","name":"cloudant:krypton","id":"https://addons.heroku.com/addons/cloudant:krypton","description":"Cloudant Krypton"},{"url":"https://addons.heroku.com/addons/cloudant:helium","price_cents":11900,"state":"public","beta":false,"price_unit":"month","name":"cloudant:helium","id":"https://addons.heroku.com/addons/cloudant:helium","description":"Cloudant Helium"},{"state":"alpha","url":null,"group_description":"Postgres","plan_description":"Test","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"postgres:test","description":"Postgres Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Heroku Postgresql","plan_description":"Musashi Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"musashi-postgis","name":"heroku-postgresql:musashi-postgis","description":"Heroku Postgres Musashi Postgis","consumes_dyno_hours":false},{"state":"public","url":null,"group_description":"Redistogo","plan_description":"Rho.Small.Vm","attachable":false,"beta":false,"price":{"cents":1500,"unit":"month"},"terms_of_service":false,"slug":"rho.small.vm","name":"redistogo:rho.small.vm","description":"Redis To Go Rho Mobile Small VM","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/airbrake:production","price_cents":1900,"state":"public","beta":false,"price_unit":"month","name":"airbrake:production","id":"https://addons.heroku.com/addons/airbrake:production","description":"Airbrake Production"},{"state":"alpha","url":null,"group_description":"Shogun Will","plan_description":"Zilla","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"zilla","name":"shogun-will:zilla","description":"Shogun-will Zilla","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/sendgrid:gold","price_cents":19995,"state":"public","beta":false,"price_unit":"month","name":"sendgrid:gold","id":"https://addons.heroku.com/addons/sendgrid:gold","description":"SendGrid Gold"},{"url":"https://addons.heroku.com/addons/sendgrid:bronze","price_cents":995,"state":"public","beta":false,"price_unit":"month","name":"sendgrid:bronze","id":"https://addons.heroku.com/addons/sendgrid:bronze","description":"SendGrid Bronze"},{"state":"alpha","url":null,"group_description":"Isabelle Test","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"isabelle-test:test","description":" Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/moonshadosms:free","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"moonshadosms:free","id":"https://addons.heroku.com/addons/moonshadosms:free","description":"Moonshado SMS Free"},{"state":"alpha","url":null,"group_description":"Keavy Addon","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"keavy-addon:test","description":"Keavy-addon Test","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Simplegeo","plan_description":"Basic","attachable":false,"beta":false,"price":{"cents":900,"unit":"month"},"terms_of_service":false,"slug":"basic","name":"simplegeo:basic","description":"SimpleGeo Basic","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Ronin Staging","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ronin-staging","name":"shogun-tmaher:ronin-staging","description":"Shogun-tmaher Ronin staging","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Fugu","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"fugu","name":"shogun-tmaher:fugu","description":"Shogun-tmaher Fugu","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Sg","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"sg:test","description":"Sg Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Bind","plan_description":"Redis","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"redis","name":"bind:redis","description":"Bind Redis","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/blitline:deployer","price_cents":1299,"state":"public","beta":false,"price_unit":"month","name":"blitline:deployer","id":"https://addons.heroku.com/addons/blitline:deployer","description":"Blitline Deployer"},{"state":"alpha","url":null,"group_description":"Dynonamics","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"dynonamics:test","description":"Dynonamics Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/stillalive:basic","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"stillalive:basic","id":"https://addons.heroku.com/addons/stillalive:basic","description":"StillAlive Basic"},{"state":"disabled","url":null,"group_description":"Simple Worker","plan_description":"Grande","attachable":false,"beta":false,"price":{"cents":7200,"unit":"month"},"terms_of_service":false,"slug":"grande","name":"simple_worker:grande","description":"Appoxy SimpleWorker Grande","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/cleardb:drift","price_cents":4999,"state":"public","beta":false,"price_unit":"month","name":"cleardb:drift","id":"https://addons.heroku.com/addons/cleardb:drift","description":"ClearDB MySQL Database Drift"},{"state":"alpha","url":null,"group_description":"Connfu","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"connfu:test","description":"Connfu Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/blitz:250","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"blitz:250","id":"https://addons.heroku.com/addons/blitz:250","description":"Blitz 250"},{"url":"https://addons.heroku.com/addons/cloudmailin:microplus","price_cents":1700,"state":"public","beta":false,"price_unit":"month","name":"cloudmailin:microplus","id":"https://addons.heroku.com/addons/cloudmailin:microplus","description":"CloudMailIn Micro Plus"},{"url":"https://addons.heroku.com/addons/iron_mq:rust","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"iron_mq:rust","id":"https://addons.heroku.com/addons/iron_mq:rust","description":"IronMQ Rust"},{"state":"alpha","url":null,"group_description":"Twilio","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"twilio:test","description":"Twilio Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogunjdixon","plan_description":"Zilla","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"zilla","name":"shogunjdixon:zilla","description":"Shogunjdixon Zilla","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/rhoconnect:basic","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"rhoconnect:basic","id":"https://addons.heroku.com/addons/rhoconnect:basic","description":"RhoConnect Basic"},{"url":"https://addons.heroku.com/addons/robowhois:test","price_cents":0,"state":"beta","beta":false,"price_unit":"month","name":"robowhois:test","id":"https://addons.heroku.com/addons/robowhois:test","description":"RoboWhois Test"},{"state":"alpha","url":null,"group_description":"Shogun Tmaher","plan_description":"Fugu Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"fugu-postgis","name":"shogun-tmaher:fugu-postgis","description":"Shogun-tmaher Fugu Postgis","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/docraptor:professional","price_cents":3700,"state":"public","beta":false,"price_unit":"month","name":"docraptor:professional","id":"https://addons.heroku.com/addons/docraptor:professional","description":"DocRaptor Professional"},{"url":"https://addons.heroku.com/addons/restful_metrics:large","price_cents":29900,"state":"public","beta":false,"price_unit":"month","name":"restful_metrics:large","id":"https://addons.heroku.com/addons/restful_metrics:large","description":"RESTful Metrics Large"},{"url":"https://addons.heroku.com/addons/pgbackups:basic","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"pgbackups:basic","id":"https://addons.heroku.com/addons/pgbackups:basic","description":"PG Backups Basic"},{"state":"disabled","url":null,"group_description":"Bundles","plan_description":"Single","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"single","name":"bundles:single","description":"Bundles Single Bundle","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Heroku Postgresql","plan_description":"Kappa Postgis","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"kappa-postgis","name":"heroku-postgresql:kappa-postgis","description":"Heroku Postgres Kappa Postgis","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Memcached","plan_description":"Advanced","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"advanced","name":"memcached:advanced","description":"Memcached Memcached Advanced","consumes_dyno_hours":false},{"state":"disabled","url":null,"group_description":"Cleardb","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"cleardb:test","description":"ClearDB MySQL Database Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/ssl:endpoint","price_cents":2000,"state":"public","beta":false,"price_unit":"month","name":"ssl:endpoint","id":"https://addons.heroku.com/addons/ssl:endpoint","description":"SSL Endpoint"},{"state":"alpha","url":null,"group_description":"Shogun Pvh","plan_description":"Ika","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ika","name":"shogun-pvh:ika","description":"Shogun-pvh Ika","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Shogun Freeformz","plan_description":"Ronin","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"ronin","name":"shogun-freeformz:ronin","description":"Shogun-freeformz Ronin","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Opencnam","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"opencnam:test","description":"Opencnam Test","consumes_dyno_hours":false},{"state":"alpha","url":null,"group_description":"Docubear","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"docubear:test","description":"Docubear Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/heroku-postgresql:mecha","price_cents":640000,"state":"public","beta":false,"price_unit":"month","name":"heroku-postgresql:mecha","id":"https://addons.heroku.com/addons/heroku-postgresql:mecha","description":"Heroku Postgres Mecha"},{"url":"https://addons.heroku.com/addons/zencoder:10k","price_cents":30000,"state":"public","beta":false,"price_unit":"month","name":"zencoder:10k","id":"https://addons.heroku.com/addons/zencoder:10k","description":"Zencoder 10,000 Minutes"},{"state":"alpha","url":null,"group_description":"Tempodb","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"tempodb:test","description":"Tempo Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/stackmob:silver","price_cents":1900,"state":"public","beta":false,"price_unit":"month","name":"stackmob:silver","id":"https://addons.heroku.com/addons/stackmob:silver","description":"Stackmob Silver"},{"url":"https://addons.heroku.com/addons/logentries:staging","price_cents":10000,"state":"public","beta":false,"price_unit":"month","name":"logentries:staging","id":"https://addons.heroku.com/addons/logentries:staging","description":"Logentries Staging"},{"url":"https://addons.heroku.com/addons/justonedb:lambda","price_cents":0,"state":"public","beta":false,"price_unit":"month","name":"justonedb:lambda","id":"https://addons.heroku.com/addons/justonedb:lambda","description":"JustOneDB - NewSQL Cloud Database Lambda"},{"state":"alpha","url":null,"group_description":"Cdnbuddy","plan_description":"Test","attachable":false,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"test","name":"cdnbuddy:test","description":"Cdnbuddy Test","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/cleardb:scream","price_cents":9999,"state":"public","beta":false,"price_unit":"month","name":"cleardb:scream","id":"https://addons.heroku.com/addons/cleardb:scream","description":"ClearDB MySQL Database Scream"},{"url":"https://addons.heroku.com/addons/ranger:recon","price_cents":500,"state":"public","beta":false,"price_unit":"month","name":"ranger:recon","id":"https://addons.heroku.com/addons/ranger:recon","description":"Ranger Recon"},{"state":"alpha","url":null,"group_description":"Heroku Postgresql","plan_description":"Development","attachable":true,"beta":false,"price":{"cents":0,"unit":"month"},"terms_of_service":false,"slug":"development","name":"heroku-postgresql:development","description":"Heroku Postgres Development","consumes_dyno_hours":false},{"url":"https://addons.heroku.com/addons/ssl:hostname","price_cents":2000,"state":"public","beta":false,"price_unit":"month","name":"ssl:hostname","id":"https://addons.heroku.com/addons/ssl:hostname","description":"SSL Hostname Based SSL"}]
@@ -1 +1 @@
1
- {"created_at":"2011/10/24 12:23:54 -0700","last_login":"2012/03/01 18:09:06 -0800","id":"123456@users.heroku.com","email":"user@example.com"}
1
+ {"name":null,"created_at":"2012/01/16 13:27:23 -0800","verified_at":"2012/01/16 13:30:59 -0800","last_login":"2012/05/18 11:23:50 -0700","confirmed":false,"id":"123456@users.heroku.com","verified":true,"confirmed_at":null,"email":"user@example.com"}
@@ -37,7 +37,7 @@ module Heroku
37
37
  app, _ = request_params[:captures][:path]
38
38
  email = request_params[:query]['collaborator[email]']
39
39
  with_mock_app(mock_data, app) do
40
- mock_data[:collaborators][app] |= [{'access' => 'edit', 'email' => email}]
40
+ mock_data[:collaborators][app] |= [{'access' => 'edit', 'email' => email, 'name' => nil}]
41
41
  {
42
42
  :body => "#{email} added as a collaborator on #{app}.",
43
43
  :status => 200
@@ -8,6 +8,7 @@ module Heroku
8
8
  app, key, _ = request_params[:captures][:path]
9
9
  with_mock_app(mock_data, app) do
10
10
  mock_data[:config_vars][app].delete(key)
11
+ add_mock_release(mock_data, app, {'descr' => "Config remove #{key}"})
11
12
  {
12
13
  :body => Heroku::API::OkJson.encode(mock_data[:config_vars][app]),
13
14
  :status => 200
@@ -34,6 +35,7 @@ module Heroku
34
35
  with_mock_app(mock_data, app) do
35
36
  new_config_vars = request_params[:body]
36
37
  mock_data[:config_vars][app].merge!(new_config_vars)
38
+ add_mock_release(mock_data, app, {'descr' => "Config add #{new_config_vars.keys.join(', ')}"})
37
39
  {
38
40
  :body => Heroku::API::OkJson.encode(mock_data[:config_vars][app]),
39
41
  :status => 200
@@ -54,28 +54,21 @@ module Heroku
54
54
  app, _ = request_params[:captures][:path]
55
55
  domain = request_params[:query]['domain_name[domain]']
56
56
  with_mock_app(mock_data, app) do |app_data|
57
- if ['custom_domains:basic', 'custom_domains:wildcard'].any? {|addon| get_mock_app_addon(mock_data, app, addon)}
58
- unless get_mock_app_domain(mock_data, app, domain)
59
- mock_data[:domains][app] << {
60
- 'app_id' => app_data['id'],
61
- 'base_domain' => domain.split('.')[-2..-1].join('.'),
62
- 'created_at' => timestamp,
63
- 'domain' => domain,
64
- 'default' => nil,
65
- 'id' => rand(999999),
66
- 'updated_at' => timestamp
67
- }
68
- end
69
- {
70
- :body => Heroku::API::OkJson.encode('domain' => domain),
71
- :status => 201
72
- }
73
- else
74
- {
75
- :body => Heroku::API::OkJson.encode([["base","Please install the Custom Domains addon before adding domains to your app"]]),
76
- :status => 422
57
+ unless get_mock_app_domain(mock_data, app, domain)
58
+ mock_data[:domains][app] << {
59
+ 'app_id' => app_data['id'],
60
+ 'base_domain' => domain.split('.')[-2..-1].join('.'),
61
+ 'created_at' => timestamp,
62
+ 'domain' => domain,
63
+ 'default' => nil,
64
+ 'id' => rand(999999),
65
+ 'updated_at' => timestamp
77
66
  }
78
67
  end
68
+ {
69
+ :body => Heroku::API::OkJson.encode('domain' => domain),
70
+ :status => 201
71
+ }
79
72
  end
80
73
  end
81
74
 
@@ -19,7 +19,9 @@ module Heroku
19
19
  request_params, mock_data = parse_stub_params(params)
20
20
  app, _ = request_params[:captures][:path]
21
21
  with_mock_app(mock_data, app) do |app_data|
22
- attached = request_params[:query].has_key?('attach') && request_params[:query]['attach'].to_s == 'true'
22
+ unless attached = request_params[:query].has_key?('attach') && request_params[:query]['attach'].to_s == 'true'
23
+ type = 'Ps'
24
+ end
23
25
  command = request_params[:query].has_key?('command') && request_params[:query]['command']
24
26
  rendezvous_url = if attached
25
27
  "s1.runtime.heroku.com:5000/#{SecureRandom.hex(32)}"
@@ -36,7 +38,7 @@ module Heroku
36
38
  'slug' => 'NONE',
37
39
  'state' => 'created',
38
40
  'transitioned_at' => timestamp,
39
- 'type' => 'Ps',
41
+ 'type' => type,
40
42
  'upid' => rand(99999999).to_s
41
43
  }
42
44
  mock_data[:ps][app] << data
@@ -7,22 +7,10 @@ module Heroku
7
7
  request_params, mock_data = parse_stub_params(params)
8
8
  app, _ = request_params[:captures][:path]
9
9
  with_mock_app(mock_data, app) do |app_data|
10
- if get_mock_app_addon(mock_data, app, 'releases:basic')
11
- {
12
- :body => Heroku::API::OkJson.encode(mock_data[:releases][app][-2..-1]),
13
- :status => 200
14
- }
15
- elsif get_mock_app_addon(mock_data, app, 'releases:advanced')
16
- {
17
- :body => Heroku::API::OkJson.encode(mock_data[:releases][app]),
18
- :status => 200
19
- }
20
- else
21
- {
22
- :body => Heroku::API::OkJson.encode({'error' => 'Please install the Release Management add-on to access release history'}),
23
- :status => 422
24
- }
25
- end
10
+ {
11
+ :body => Heroku::API::OkJson.encode(mock_data[:releases][app]),
12
+ :status => 200
13
+ }
26
14
  end
27
15
  end
28
16
 
@@ -31,27 +19,16 @@ module Heroku
31
19
  request_params, mock_data = parse_stub_params(params)
32
20
  app, release_name, _ = request_params[:captures][:path]
33
21
  with_mock_app(mock_data, app) do |app_data|
34
- if ['releases:basic', 'releases:advanced'].any? {|addon| get_mock_app_addon(mock_data, app, addon)}
35
- releases = if get_mock_app_addon(mock_data, app, 'releases:basic')
36
- mock_data[:releases][app][-2..-1]
37
- elsif get_mock_app_addon(mock_data, app, 'releases:advanced')
38
- mock_data[:releases][app]
39
- end
40
- if release_data = (release_name == 'current' && releases.last) || releases.detect {|release| release['name'] == release_name}
41
- {
42
- :body => Heroku::API::OkJson.encode(release_data),
43
- :status => 200
44
- }
45
- else
46
- {
47
- :body => 'Record not found.',
48
- :status => 404
49
- }
50
- end
22
+ releases = mock_data[:releases][app]
23
+ if release_data = (release_name == 'current' && releases.last) || releases.detect {|release| release['name'] == release_name}
24
+ {
25
+ :body => Heroku::API::OkJson.encode(release_data),
26
+ :status => 200
27
+ }
51
28
  else
52
29
  {
53
- :body => Heroku::API::OkJson.encode({'error' => 'Please install the Release Management add-on to access release history'}),
54
- :status => 422
30
+ :body => 'Record not found.',
31
+ :status => 404
55
32
  }
56
33
  end
57
34
  end
@@ -61,59 +38,27 @@ module Heroku
61
38
  Excon.stub(:expects => 200, :method => :post, :path => %r{^/apps/([^/]+)/releases} ) do |params|
62
39
  request_params, mock_data = parse_stub_params(params)
63
40
  app, _ = request_params[:captures][:path]
64
- release_name = request_params[:query]['rollback']
41
+ release_name = request_params[:query]['rollback'] || mock_data[:releases][app][-2] && mock_data[:releases][app][-2]['name']
65
42
  with_mock_app(mock_data, app) do |app_data|
66
- if ['releases:basic', 'releases:advanced'].any? {|addon| get_mock_app_addon(mock_data, app, addon)}
67
- releases = if get_mock_app_addon(mock_data, app, 'releases:basic')
68
- mock_data[:releases][app][-2..-1]
69
- elsif get_mock_app_addon(mock_data, app, 'releases:advanced')
70
- mock_data[:releases][app]
71
- end
72
- if release_data = releases.detect {|release| release['name'] == release_name}
73
- if release_data['addons'] == mock_data[:releases][app].last['addons']
74
- version = mock_data[:releases][app].map {|release| release['name'][1..-1].to_i}.max || 0
75
- env = if get_mock_app(mock_data, app)['stack'] == 'cedar'
76
- {
77
- 'BUNDLE_WITHOUT' => 'development:test',
78
- 'DATABASE_URL' => 'postgres://username:password@ec2-123-123-123-123.compute-1.amazonaws.com/username',
79
- 'LANG' => 'en_US.UTF-8',
80
- 'RACK_ENV' => 'production',
81
- 'SHARED_DATABASE_URL' => 'postgres://username:password@ec2-123-123-123-123.compute-1.amazonaws.com/username'
82
- }
83
- else
84
- {}
85
- end
86
- mock_data[:releases][app] << {
87
- 'addons' => mock_data[:addons][app].map {|addon| addon['name']},
88
- 'commit' => nil,
89
- 'created_at' => timestamp,
90
- 'descr' => "Rollback to #{release_name}",
91
- 'env' => env,
92
- 'name' => "v#{version + 1}",
93
- 'pstable' => { 'web' => '' },
94
- 'user' => 'email@example.com'
95
- }
43
+ releases = mock_data[:releases][app]
44
+ if release_data = releases.detect {|release| release['name'] == release_name}
45
+ if release_data['addons'] == mock_data[:releases][app].last['addons']
46
+ add_mock_release(mock_data, app, {'descr' => "Rollback to #{release_name}"})
96
47
 
97
- {
98
- :body => release_data['name'],
99
- :status => 200
100
- }
101
- else
102
- {
103
- :body => Heroku::API::OkJson.encode({'error' => 'Cannot rollback to a release that had a different set of addons installed'}),
104
- :status => 422
105
- }
106
- end
48
+ {
49
+ :body => release_data['name'],
50
+ :status => 200
51
+ }
107
52
  else
108
53
  {
109
- :body => 'Record not found.',
110
- :status => 404
54
+ :body => Heroku::API::OkJson.encode({'error' => 'Cannot rollback to a release that had a different set of addons installed'}),
55
+ :status => 422
111
56
  }
112
57
  end
113
58
  else
114
59
  {
115
- :body => Heroku::API::OkJson.encode({'error' => 'Please install the Release Management add-on to access release history'}),
116
- :status => 422
60
+ :body => 'Record not found.',
61
+ :status => 404
117
62
  }
118
63
  end
119
64
  end
@@ -1,5 +1,5 @@
1
1
  module Heroku
2
2
  class API
3
- VERSION = "0.1.7"
3
+ VERSION = "0.1.8"
4
4
  end
5
5
  end