Skip to content

Commit 3e8f858

Browse files
committed
updated links to spec (see OAI/OpenAPI-Specification#3548)
1 parent 26b19d3 commit 3e8f858

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+88
-88
lines changed

modules/swagger-annotations/src/main/java/io/swagger/v3/oas/annotations/ExternalDocumentation.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313

1414
/**
1515
* The annotation may be used at method level or as field of {@link Operation} to add a reference to an external
16-
* resource for extended documentation of an <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#operationObject">Operation (OpenAPI specification)</a>.
16+
* resource for extended documentation of an <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#operation-object">Operation (OpenAPI specification)</a>.
1717
* <p>It may also be used to add external documentation to {@link io.swagger.v3.oas.annotations.tags.Tag},
1818
* {@link io.swagger.v3.oas.annotations.headers.Header} or {@link io.swagger.v3.oas.annotations.media.Schema},
1919
* or as field of {@link OpenAPIDefinition}.</p>
2020
*
21-
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#externalDocumentationObject">External Documentation (OpenAPI specification)</a>
21+
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#external-documentation-object">External Documentation (OpenAPI specification)</a>
2222
* @see OpenAPIDefinition
2323
**/
2424
@Target({METHOD, TYPE, ANNOTATION_TYPE})

modules/swagger-annotations/src/main/java/io/swagger/v3/oas/annotations/OpenAPIDefinition.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* The annotation that may be used to populate OpenAPI Object fields info, tags, servers, security and externalDocs
2020
* If more than one class is annotated with {@link OpenAPIDefinition}, with the same fields defined, behaviour is inconsistent.
2121
*
22-
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#oasObject">OpenAPI (OpenAPI specification)</a>
22+
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#oas-object">OpenAPI (OpenAPI specification)</a>
2323
*/
2424
@Target({TYPE, PACKAGE, ANNOTATION_TYPE})
2525
@Retention(RetentionPolicy.RUNTIME)

modules/swagger-annotations/src/main/java/io/swagger/v3/oas/annotations/Operation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
* <li>hidden: @{@link Hidden}</li>
3939
* </ul>
4040
*
41-
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#operationObject">Operation (OpenAPI specification)</a>
41+
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#operation-object">Operation (OpenAPI specification)</a>
4242
**/
4343
@Target({METHOD, ANNOTATION_TYPE})
4444
@Retention(RetentionPolicy.RUNTIME)

modules/swagger-annotations/src/main/java/io/swagger/v3/oas/annotations/Parameter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
*
3131
* <p>For method parameters bound to the request body, see {@link io.swagger.v3.oas.annotations.parameters.RequestBody}</p>
3232
*
33-
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#parameterObject">Parameter (OpenAPI specification)</a>
33+
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#parameter-object">Parameter (OpenAPI specification)</a>
3434
* @see io.swagger.v3.oas.annotations.parameters.RequestBody
3535
* @see Operation
3636
* @see Schema

modules/swagger-annotations/src/main/java/io/swagger/v3/oas/annotations/Webhook.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
/**
1212
* The annotation may be used to define a method as an OpenAPI Webhook.
1313
*
14-
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.1.0/versions/3.1.0.md#oasWebhooks">Webhook (OpenAPI specification)</a>
14+
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.1.1/versions/3.1.1.md#oas-webhooks">Webhook (OpenAPI specification)</a>
1515
* @see io.swagger.v3.oas.annotations.OpenAPIDefinition
1616
**/
1717
@Target({METHOD, ANNOTATION_TYPE})

modules/swagger-annotations/src/main/java/io/swagger/v3/oas/annotations/callbacks/Callback.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
/**
1919
* The annotation may be used at method level to add one ore more callbacks to the operation definition.
2020
*
21-
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#callbackObject">Callback (OpenAPI specification)</a>
21+
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#callback-object">Callback (OpenAPI specification)</a>
2222
**/
2323
@Target({FIELD, METHOD, PARAMETER, TYPE, ANNOTATION_TYPE})
2424
@Retention(RetentionPolicy.RUNTIME)

modules/swagger-annotations/src/main/java/io/swagger/v3/oas/annotations/extensions/Extension.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
/**
1515
* An optionally named list of extension properties.
1616
*
17-
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#specificationExtensions">Specification extensions (OpenAPI specification)</a>
17+
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#specification-extensions">Specification extensions (OpenAPI specification)</a>
1818
*/
1919
@Target({FIELD, METHOD, PARAMETER, TYPE, ANNOTATION_TYPE})
2020
@Retention(RetentionPolicy.RUNTIME)

modules/swagger-annotations/src/main/java/io/swagger/v3/oas/annotations/headers/Header.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* encoding by defining it as field {@link io.swagger.v3.oas.annotations.responses.ApiResponse#headers()} or {@link io.swagger.v3.oas.annotations.media.Content#encoding()}.
1616
* <p>Please note that request headers are defined as Header {@link io.swagger.v3.oas.annotations.Parameter}.</p>
1717
*
18-
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#headerObject">Header (OpenAPI specification)</a>
18+
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#header-object">Header (OpenAPI specification)</a>
1919
* @see io.swagger.v3.oas.annotations.responses.ApiResponse
2020
* @see io.swagger.v3.oas.annotations.Parameter
2121
* @see io.swagger.v3.oas.annotations.media.Encoding

modules/swagger-annotations/src/main/java/io/swagger/v3/oas/annotations/info/Contact.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/**
1010
* The annotation may be used in {@link Info#contact()} to define a contact for the OpenAPI spec.
1111
*
12-
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#contactObject">Contact (OpenAPI specification)</a>
12+
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#contact-object">Contact (OpenAPI specification)</a>
1313
* @see io.swagger.v3.oas.annotations.OpenAPIDefinition
1414
* @see Info
1515
**/

modules/swagger-annotations/src/main/java/io/swagger/v3/oas/annotations/info/Info.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
/**
1313
* The annotation may be used in {@link io.swagger.v3.oas.annotations.OpenAPIDefinition#info()} to populate the Info section of the OpenAPI document.
1414
*
15-
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#infoObject">Info (OpenAPI specification)</a>
16-
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.1.0/versions/3.1.0.md#infoObject">Info (OpenAPI specification)</a>
15+
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#info-object">Info (OpenAPI specification)</a>
16+
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.1.1/versions/3.1.1.md#info-object">Info (OpenAPI specification)</a>
1717
* @see io.swagger.v3.oas.annotations.OpenAPIDefinition
1818
**/
1919
@Target({ElementType.ANNOTATION_TYPE})

modules/swagger-annotations/src/main/java/io/swagger/v3/oas/annotations/info/License.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
/**
1111
* The annotation may be used in {@link Info#license()} to define a license for the OpenAPI spec.
1212
*
13-
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#licenseObject">License (OpenAPI 3.0 pecification)</a>
14-
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.1.0/versions/3.1.0.md#licenseObject">License (OpenAPI 3.1 specification)</a>
13+
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#license-object">License (OpenAPI 3.0 pecification)</a>
14+
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.1.1/versions/3.1.1.md#license-object">License (OpenAPI 3.1 specification)</a>
1515
* @see io.swagger.v3.oas.annotations.OpenAPIDefinition
1616
* @see Info
1717
**/

modules/swagger-annotations/src/main/java/io/swagger/v3/oas/annotations/links/Link.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
/**
1313
* The annotation may be applied in {@link io.swagger.v3.oas.annotations.responses.ApiResponse#links()} to add OpenAPI links to a response.
1414
*
15-
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#linkObject">Link (OpenAPI specification)</a>
15+
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#link-object">Link (OpenAPI specification)</a>
1616
* @see io.swagger.v3.oas.annotations.responses.ApiResponse
1717
**/
1818
@Target({ElementType.ANNOTATION_TYPE})

modules/swagger-annotations/src/main/java/io/swagger/v3/oas/annotations/media/ArraySchema.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
* <p>The annotation {@link Schema} shall be used for non array elements; {@link ArraySchema} and {@link Schema} cannot
2626
* coexist</p>
2727
*
28-
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#schemaObject">Schema (OpenAPI specification)</a>
29-
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.1.0/versions/3.1.0.md#schemaObject">Schema (OpenAPI specification)</a>
28+
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#schema-object">Schema (OpenAPI specification)</a>
29+
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.1.1/versions/3.1.1.md#schema-object">Schema (OpenAPI specification)</a>
3030
* @see Schema
3131
**/
3232
@Target({FIELD, METHOD, PARAMETER, TYPE, ANNOTATION_TYPE})

modules/swagger-annotations/src/main/java/io/swagger/v3/oas/annotations/media/Content.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* JAX-RS annotations, element type and context as input to resolve the annotated element into an OpenAPI schema
1717
* definition for such element.</p>
1818
*
19-
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#exampleObject">Example (OpenAPI specification)</a>
19+
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#example-object">Example (OpenAPI specification)</a>
2020
* @see Schema
2121
* @see io.swagger.v3.oas.annotations.Parameter
2222
* @see io.swagger.v3.oas.annotations.responses.ApiResponse

modules/swagger-annotations/src/main/java/io/swagger/v3/oas/annotations/media/DiscriminatorMapping.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
*
1616
* <p>Use {@link Schema#discriminatorProperty()} to define a discriminator property.</p>
1717
*
18-
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#discriminatorObject">Discriminator (OpenAPI specification)</a>
19-
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.1.0/versions/3.1.0.md#discriminatorObject">Discriminator (OpenAPI specification)</a>
18+
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#discriminator-object">Discriminator (OpenAPI specification)</a>
19+
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.1.1/versions/3.1.1.md#discriminator-object">Discriminator (OpenAPI specification)</a>
2020
* @see Schema
2121
**/
2222
@Target({})

modules/swagger-annotations/src/main/java/io/swagger/v3/oas/annotations/media/Encoding.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* The annotation may be used to add encoding details to the definition of a parameter, request or response content,
1313
* by defining it as field {@link Content#encoding()}
1414
*
15-
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#encodingObject">Encoding (OpenAPI specification)</a>
15+
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#encoding-object">Encoding (OpenAPI specification)</a>
1616
* @see Content
1717
**/
1818
@Target({})

modules/swagger-annotations/src/main/java/io/swagger/v3/oas/annotations/media/ExampleObject.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* The annotation may be used to add one or more examples to the definition of a parameter, request or response content,
1313
* by defining it as field {@link io.swagger.v3.oas.annotations.Parameter#examples()} or {@link Content#examples()}
1414
*
15-
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#exampleObject">Example (OpenAPI specification)</a>
15+
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#example-object">Example (OpenAPI specification)</a>
1616
**/
1717
@Target({ElementType.ANNOTATION_TYPE})
1818
@Retention(RetentionPolicy.RUNTIME)

modules/swagger-annotations/src/main/java/io/swagger/v3/oas/annotations/media/Schema.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
* <p>The annotation {@link ArraySchema} shall be used for array elements; {@link ArraySchema} and {@link Schema} cannot
3131
* coexist</p>
3232
*
33-
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#schemaObject">Schema (OpenAPI specification)</a>
34-
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.1.0/versions/3.1.0.md#schemaObject">Schema (OpenAPI specification)</a>
33+
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#schema-object">Schema (OpenAPI specification)</a>
34+
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.1.1/versions/3.1.1.md#schema-object">Schema (OpenAPI specification)</a>
3535
* @see ArraySchema
3636
**/
3737
@Target({FIELD, METHOD, PARAMETER, TYPE, ANNOTATION_TYPE})

modules/swagger-annotations/src/main/java/io/swagger/v3/oas/annotations/parameters/RequestBody.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* The annotation may be used on a method parameter to define it as the Request Body of the operation, and/or to define
1717
* additional properties for such request body.
1818
*
19-
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#requestBodyObject">Request Body (OpenAPI specification)</a>
19+
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#request-body-object">Request Body (OpenAPI specification)</a>
2020
* @see io.swagger.v3.oas.annotations.Parameter
2121
* @see Content
2222
**/

modules/swagger-annotations/src/main/java/io/swagger/v3/oas/annotations/responses/ApiResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* <p>swagger-jaxrs2 reader engine considers this annotation along with method return type and context as input to
2323
* resolve the OpenAPI Operation responses.</p>
2424
*
25-
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#responseObject">Response (OpenAPI specification)</a>
25+
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#response-object">Response (OpenAPI specification)</a>
2626
* @see io.swagger.v3.oas.annotations.Operation
2727
**/
2828
@Target({METHOD, TYPE, ANNOTATION_TYPE})

modules/swagger-annotations/src/main/java/io/swagger/v3/oas/annotations/security/SecurityRequirement.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* single operation (when applied at method level) or for all operations of a class (when applied at class level).
1616
* <p>It can also be used in {@link io.swagger.v3.oas.annotations.OpenAPIDefinition#security()} to define spec level security.</p>
1717
*
18-
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#securityRequirementObject">Security Requirement (OpenAPI specification)</a>
18+
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#security-requirement-object">Security Requirement (OpenAPI specification)</a>
1919
* @see io.swagger.v3.oas.annotations.OpenAPIDefinition
2020
* @see io.swagger.v3.oas.annotations.Operation
2121
**/

modules/swagger-annotations/src/main/java/io/swagger/v3/oas/annotations/security/SecurityScheme.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
* The annotation may be used at class level (also on multiple classes) to add securitySchemes to spec
1818
* components section.
1919
*
20-
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#securitySchemeObject">Security Scheme (OpenAPI specification)</a>
21-
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#componentsObject">Components (OpenAPI specification)</a>
20+
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#security-scheme-object">Security Scheme (OpenAPI specification)</a>
21+
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#components-object">Components (OpenAPI specification)</a>
2222
**/
2323
@Target({TYPE, ANNOTATION_TYPE})
2424
@Retention(RetentionPolicy.RUNTIME)
@@ -48,7 +48,7 @@
4848

4949
/**
5050
* The name of the header or query parameter to be used. Applies to apiKey type.
51-
* Maps to "name" property of <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#securitySchemeObject">Security Scheme (OpenAPI specification)</a>
51+
* Maps to "name" property of <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#security-scheme-object">Security Scheme (OpenAPI specification)</a>
5252
*
5353
* @return String paramName
5454
**/

modules/swagger-annotations/src/main/java/io/swagger/v3/oas/annotations/servers/Server.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* single operation (when applied at method level) or for all operations of a class (when applied at class level).
1818
* <p>It can also be used in {@link io.swagger.v3.oas.annotations.OpenAPIDefinition#servers()} to define spec level servers.</p>
1919
*
20-
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#serverObject">Server (OpenAPI specification)</a>
20+
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#server-object">Server (OpenAPI specification)</a>
2121
* @see io.swagger.v3.oas.annotations.OpenAPIDefinition
2222
* @see io.swagger.v3.oas.annotations.Operation
2323
**/

modules/swagger-annotations/src/main/java/io/swagger/v3/oas/annotations/tags/Tag.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* if additional fields are also defined, like description or externalDocs, the Tag will also be added to openAPI.tags
2222
* field</p>
2323
*
24-
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#tagObject">Tag (OpenAPI specification)</a>
24+
* @see <a target="_new" href="https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#tag-object">Tag (OpenAPI specification)</a>
2525
* @see io.swagger.v3.oas.annotations.OpenAPIDefinition
2626
**/
2727
@Target({METHOD, TYPE, ANNOTATION_TYPE})

modules/swagger-models/src/main/java/io/swagger/v3/oas/models/Components.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
/**
1919
* Components
2020
*
21-
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#componentsObject"
22-
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.1.0/versions/3.1.0.md#componentsObject"
21+
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#components-object"
22+
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.1.1/versions/3.1.1.md#components-object"
2323
*/
2424

2525
public class Components {

modules/swagger-models/src/main/java/io/swagger/v3/oas/models/ExternalDocumentation.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
/**
88
* ExternalDocumentation
99
*
10-
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#externalDocumentationObject"
11-
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.1.0/versions/3.1.0.md#externalDocumentationObject"
10+
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#external-documentation-object"
11+
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.1.1/versions/3.1.1.md#external-documentation-object"
1212
*/
1313

1414
public class ExternalDocumentation {

modules/swagger-models/src/main/java/io/swagger/v3/oas/models/OpenAPI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* OpenAPI
2020
*
2121
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md"
22-
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.1.0/versions/3.1.0.md"
22+
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.1.1/versions/3.1.1.md"
2323
*/
2424

2525
public class OpenAPI {

modules/swagger-models/src/main/java/io/swagger/v3/oas/models/Operation.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
/**
1818
* Operation
1919
*
20-
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#operationObject"
21-
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.1.0/versions/3.1.0.md#operationObject"
20+
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#operation-object"
21+
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.1.1/versions/3.1.1.md#operation-object"
2222
*/
2323

2424
public class Operation {

modules/swagger-models/src/main/java/io/swagger/v3/oas/models/PathItem.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
/**
1313
* PathItem
1414
*
15-
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#pathItemObject"
16-
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.1.0/versions/3.1.0.md#pathItemObject"
15+
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#path-item-object"
16+
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.1.1/versions/3.1.1.md#path-item-object"
1717
*/
1818

1919
public class PathItem {

modules/swagger-models/src/main/java/io/swagger/v3/oas/models/Paths.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
/**
99
* Paths
1010
*
11-
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#pathsObject"
12-
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.1.0/versions/3.1.0.md#pathsObject"
11+
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.0.4/versions/3.0.4.md#paths-object"
12+
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.1.1/versions/3.1.1.md#paths-object"
1313
*/
1414

1515
public class Paths extends LinkedHashMap<String, PathItem> {

0 commit comments

Comments
 (0)