swagger: removes the schema type for PodSpecGenerator $ref

When using a $ref, the type is ignored and it can confuse the openapi codegen
and make it fails with this error:

  attribute paths.'/libpod/pods/create'(post).[create].type is unexpected

This change removes the schema type attribute.

Signed-off-by: Tristan Cacqueray <tdecacqu@redhat.com>
This commit is contained in:
Tristan Cacqueray
2021-02-24 17:57:27 +00:00
parent dec06b1c3f
commit 1aa96ed2e2

View File

@ -36,7 +36,6 @@ func (s *APIServer) registerPodsHandlers(r *mux.Router) error {
// name: create // name: create
// description: attributes for creating a pod // description: attributes for creating a pod
// schema: // schema:
// type: object
// $ref: "#/definitions/PodSpecGenerator" // $ref: "#/definitions/PodSpecGenerator"
// responses: // responses:
// 200: // 200: