Annotation Type Tag
Define tag objects on a method that implements an operation or on a class that contains operations. They will be gathered and stored in the root object of the OpenAPI document.
If the tag annotation definition is associated with a method that corresponds to an operation then the tag name will be added to the OpenAPI document and also be added to the operation tags.
Reference to a Tag can be created by setting the 'ref' attribute.
If the Tag annotation is specified on a class then each operation in the class will inherit the tag unless the operation specifies Tag(s). An operation can specify an empty Tag to not to be associated with any tag(s) inherited from the class.
This annotation is Repeatable.
If more than one tag is defined with the same name then only one tag with that name will appear in the OpenAPI document and the results are implementation dependent.
Note: If both Tag and
Tags annotations are specified on the same method or
class, then both tag definitions should be applied.
@Tag(name = "luggage", description = "Operations related to luggage handling.")
@GET
public Location getLuggage(LuggageID id) {
return getLuggageLocation(id);
}
@Tag(ref = "Bookings")
@GET
public Location getBookings() {
return Response.ok().entity(bookings.values()).build();
}
- See Also:
-
Optional Element Summary
Optional ElementsModifier and TypeOptional ElementDescriptionA short description for this tag.List of extensions to be added to theTagmodel corresponding to the containing annotation.Additional external documentation for this tag.The name of this tag.Reference value to a Tag object.
-
Element Details
-
name
String nameThe name of this tag. The name must be unique and is case sensitive. It is a REQUIRED property unless this is only a reference to a tag instance.- Returns:
- the name of this tag
- Default:
- ""
-
description
String descriptionA short description for this tag.- Returns:
- the description of this tag
- Default:
- ""
-
externalDocs
ExternalDocumentation externalDocsAdditional external documentation for this tag.- Returns:
- the external documentation for this tag
- Default:
- @org.eclipse.microprofile.openapi.annotations.ExternalDocumentation
-
ref
String refReference value to a Tag object.This property provides a reference to an object defined elsewhere. This property may be used with
description()but is mutually exclusive with all other properties. If properties other thandescriptionare defined in addition to therefproperty then the result is undefined.- Returns:
- reference to a tag
- Default:
- ""
-
extensions
Extension[] extensionsList of extensions to be added to theTagmodel corresponding to the containing annotation.- Returns:
- array of extensions
- Since:
- 3.1
- Default:
- {}
-