From cc17fc634f2fe119ac122d22d81f2fb16f1e4217 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Thu, 27 Oct 2016 20:47:28 +0200 Subject: [PATCH] Fix Swagger file for the connexion-based SDK --- swagger/swagger.yaml | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/swagger/swagger.yaml b/swagger/swagger.yaml index b1e7680..f026d8b 100644 --- a/swagger/swagger.yaml +++ b/swagger/swagger.yaml @@ -1,21 +1,29 @@ +--- swagger: "2.0" info: version: "0.0.0" title: "Rubber Duck Booking Tool API" -basePath: /api/v1 +basePath: "/api/v1" consumes: - - application/json +- "application/json" produces: - - application/json -securityDefinitions: - api_key: - type: apiKey - name: token - in: header +- "application/json" paths: /ducks/: get: + tags: + - "default_controller" description: "Get the list of all ducks" + operationId: "controllers.default_controller.ducks_get" + parameters: [] responses: - "200": + 200: description: "An object which contains metadata and an array of ducks" + security: + - api_key: [] +securityDefinitions: + api_key: + type: "apiKey" + name: "token" + in: "header" +definitions: {}