Last active
June 21, 2017 00:20
-
-
Save fehguy/9fcb6ea5b6b68f2ba2dbbfbe11d3896b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
swagger: '2.0' | |
info: | |
version: 0.0.0 | |
title: title | |
description: description | |
termsOfService: terms | |
license: | |
name: MIT | |
url: http://opensource.org/licenses/MIT | |
paths: | |
/test: | |
parameters: | |
- $ref: '#/parameters/myTimestamp' | |
get: | |
parameters: [] | |
responses: | |
default: | |
description: it works | |
put: | |
parameters: [] | |
responses: | |
default: | |
description: it works | |
/test2: | |
parameters: | |
- $ref: '#/parameters/myTimestamp' | |
get: | |
parameters: [] | |
responses: | |
default: | |
description: it works | |
put: | |
parameters: [] | |
responses: | |
default: | |
description: it works | |
parameters: | |
myTimestamp: | |
in: header | |
name: timestamp | |
type: string |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment