I have a Swagger spec that defines a HEAD operation:
head:
description: show flight exist or not.
parameters:
- name: flight_no
in: path
type: string
description: Flight_no
required: true
produces:
- application/json
- application/xml
responses:
200:
description: success response
schema:
type: array
items:
$ref: '#/definitions/Data'
'404':
description: flight does not exist
In Swagger UI v. 2, this HEAD operation has no "try it out" button. How can I add "try it out" for HEAD?