Skip to content

Instantly share code, notes, and snippets.

@eminence
Last active May 4, 2016 00:04
Show Gist options
  • Save eminence/3868b27d319259601df779c45547857d to your computer and use it in GitHub Desktop.
Save eminence/3868b27d319259601df779c45547857d to your computer and use it in GitHub Desktop.
# this is an example of the Uber API
# as a demonstration of an API spec in YAML
swagger: '2.0'
info:
title: Test API
description: Test API
version: "1.0.0"
paths:
/testAPI:
get:
produces:
- text/plain
- application/json
description: test API
responses:
200:
description: When all goes well
examples:
text/plain: "This is some example output"
application/json: {msg: "This is some example output"}
schema:
type: object
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment