See: Description
| Annotation Type | Description | 
|---|---|
| Components | Describes the Components object that holds various reusable objects for different aspects of the OpenAPI Specification (OAS). | 
| ExternalDocumentation | This annotation allows referencing an external resource for extended documentation. | 
| OpenAPIDefinition | OpenAPI | 
| Operation | Describes a single API operation on a path. | 
Example of usage:
   @GET
   @Path("/findByStatus")
   @Operation(summary = "Finds Pets by status",
            description = "Multiple status values can be provided with comma separated strings")
  public Response findPetsByStatus(...) { ... }