From b3c2a6b7ec72122b04f1699420a0cf4cfc3aeb5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Barna?= Date: Fri, 28 Oct 2016 03:25:48 +0200 Subject: [PATCH] Fix list indentation problems --- swagger/swagger.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/swagger/swagger.yaml b/swagger/swagger.yaml index 2adeab1..4c45b22 100644 --- a/swagger/swagger.yaml +++ b/swagger/swagger.yaml @@ -5,14 +5,14 @@ info: title: "Rubber Duck Booking Tool API" basePath: "/api/v1" consumes: -- "application/json" + - "application/json" produces: -- "application/json" + - "application/json" paths: - /ducks/: + /ducks: get: tags: - - "default_controller" + - "default_controller" description: "Get the list of all ducks" operationId: "controllers.default_controller.ducks_get" parameters: [] @@ -20,11 +20,11 @@ paths: 200: description: "An object which contains metadata and an array of ducks" schema: - type: "array" + type: array items: - $ref: "#/definitions/Duck" + $ref: '#/definitions/Duck' security: - - api_key: [] + - api_key: [] securityDefinitions: api_key: type: "apiKey"