Fix list indentation problems

This commit is contained in:
Gábor Barna 2016-10-28 03:25:48 +02:00
parent b29df6fa25
commit b3c2a6b7ec
1 changed files with 7 additions and 7 deletions

View File

@ -5,14 +5,14 @@ info:
title: "Rubber Duck Booking Tool API" title: "Rubber Duck Booking Tool API"
basePath: "/api/v1" basePath: "/api/v1"
consumes: consumes:
- "application/json" - "application/json"
produces: produces:
- "application/json" - "application/json"
paths: paths:
/ducks/: /ducks:
get: get:
tags: tags:
- "default_controller" - "default_controller"
description: "Get the list of all ducks" description: "Get the list of all ducks"
operationId: "controllers.default_controller.ducks_get" operationId: "controllers.default_controller.ducks_get"
parameters: [] parameters: []
@ -20,11 +20,11 @@ paths:
200: 200:
description: "An object which contains metadata and an array of ducks" description: "An object which contains metadata and an array of ducks"
schema: schema:
type: "array" type: array
items: items:
$ref: "#/definitions/Duck" $ref: '#/definitions/Duck'
security: security:
- api_key: [] - api_key: []
securityDefinitions: securityDefinitions:
api_key: api_key:
type: "apiKey" type: "apiKey"