Skip to content

Instantly share code, notes, and snippets.

@amakhrov
Created January 29, 2020 22:07
Show Gist options
  • Save amakhrov/117e1cdf65cef2308de45f3347cd3045 to your computer and use it in GitHub Desktop.
Save amakhrov/117e1cdf65cef2308de45f3347cd3045 to your computer and use it in GitHub Desktop.
swagger: '2.0'
info:
version: '1.0'
title: Example API
schemes:
- http
paths:
/lists:
get:
summary: Endpoint
responses:
200:
description: Success
schema:
type: array
items:
$ref: '#/definitions/List'
definitions:
List:
description: List of items
type: object
properties:
itemsCount:
description: Number of items in the list
type: number
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment