Swagger 1.2 had a top level file that listed the API roots
and descriptions for them
```
"apis" : [ { "description" : "Operations about pets",
"path" : "/pet"
},
{ "description" : "Operations about user",
"path" : "/user"
},
{ "description" : "Operations about store",
"path" : "/store"
}
],
```

Swagger 2.0 does not have this. I can provide a description for the API in the info section
but I cannot group resources as above. Also, Swagger 2.0 does not allow
a description in a path so the top level swagger UI is pretty void of commentary.
so the spec
```
{
"swagger": "2.0",
"info": {
"title": "Where are the descriptions?",
"version": "1"
},
"basePath": "/sample",
"schemes": [ "http" ],
"paths": {
"/foos": {
"get": {
"description": "get foos",
"produces": [
"application/json",
"application/xml"
],
"responses": {
"200": {
"description": "links to the resource collections in this API"
}
}
}
},
"/foos/{id}": {
"get": {
"description": "get a foo",
"produces": [
"application/json",
"application/xml"
],
"responses": {
"200": {
"description": "links to the resource collections in this API"
}
}
}
}
}
}
```
yields the barren

(I can expand operations to see the description but I'd rather see it, or a title, here).
Is this a known/reported bug in the spec? (I could not find it)