| title |
Required. The title of the application. |
// @title Swagger Example API |
| version |
Required. Provides the version of the application API. |
// @version 1.0 |
| description |
A short description of the application. |
// @description This is a sample server celler server. |
| termsOfService |
The Terms of Service for the API. |
// @termsOfService http://swagger.io/terms/ |
| contact.name |
The contact information for the exposed API. |
// @contact.name API Support |
| contact.url |
The URL pointing to the contact information. MUST be in the format of a URL. |
// @contact.url http://www.swagger.io/support |
| contact.email |
The email address of the contact person/organization. MUST be in the format of an email address. |
// @contact.email support@swagger.io |
| license.name |
Required. The license name used for the API. |
// @license.name Apache 2.0 |
| license.url |
A URL to the license used for the API. MUST be in the format of a URL. |
// @license.url http://www.apache.org/licenses/LICENSE-2.0.html |
| host |
The host (name or ip) serving the API. |
// @host localhost:8080 |
| BasePath |
The base path on which the API is served. |
// @BasePath /api/v1 |