-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #603 from benjamin-confino/summary-in-info
Add summary attribute in info annotation
- Loading branch information
Showing
8 changed files
with
42 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -73,6 +73,7 @@ | |
info = @Info(title = "AirlinesRatingApp API", version = "1.0", | ||
description = "APIs for booking and managing air flights", | ||
termsOfService = "http://airlinesratingapp.com/terms", | ||
summary = "An API for an Airline application", | ||
contact = @Contact(name = "AirlinesRatingApp API Support", | ||
url = "http://exampleurl.com/contact", | ||
email = "[email protected]", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/** | ||
* Copyright (c) 2017 Contributors to the Eclipse Foundation | ||
* Copyright (c) 2017, 2024 Contributors to the Eclipse Foundation | ||
* <p> | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a | ||
* copy of the License at | ||
|
@@ -38,7 +38,8 @@ | |
url = "http://www.apache.org/licenses/LICENSE-2.0.html"), | ||
contact = @Contact(name = "PetStore API Support", | ||
url = "https://github.com/eclipse/microprofile-open-api", | ||
email = "[email protected]")), | ||
email = "[email protected]"), | ||
summary = "An API for a pet store"), | ||
externalDocs = @ExternalDocumentation(url = "http://swagger.io", | ||
description = "Find out more about our store"), | ||
tags = { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters