Heroku Status API now includes the full_url attribute

Change effective on 04 April 2014

The Heroku Status API now includes full_url which points to the incident on the status site:

$ curl "https://status.heroku.com/api/v3/issues/1"
{
    "created_at": "2009-10-15T21:52:51Z",
    "full_url": "https://status.heroku.com/incidents/1",
    "href": "https://status.heroku.com/api/v3/issues/1",
    "id": 1,
    "resolved": true,
    "status_dev": "green",
    "status_prod": "green",
    "title": "Git timeout; Idled dyno spinup failure",
    "upcoming": false,
    "updated_at": "2012-06-22T23:41:10Z",
    "updates": [
        {
            "contents": "Git push and idled app service has been restored for all apps.\n\n\nA root cause analysis will be posted shortly.",
            "created_at": "2009-10-15T22:04:19Z",
            "id": 2,
            "incident_id": 1,
            "status_dev": "green",
            "status_prod": "green",
            "title": null,
            "update_type": "resolved",
            "updated_at": "2012-06-22T23:41:06Z"
        },
        {
            "contents": "We are currently experiencing two errors.\nFree apps that have idled out are not loading and git pushes are failing.\n\nThese share the same root cause, and ops is currently working on resolving the issue.\nWe expect to have this resolved very shortly.",
            "created_at": "2009-10-15T21:52:51Z",
            "id": 1,
            "incident_id": 1,
            "status_dev": "yellow",
            "status_prod": "yellow",
            "title": null,
            "update_type": "issue",
            "updated_at": "2012-06-22T23:41:06Z"
        }
    ]
}