Created
October 21, 2014 03:30
-
-
Save JamesMessinger/cd7bacbd72c59a764c7f to your computer and use it in GitHub Desktop.
Demonstrating reusing a Swagger operation definition for multiple paths
This file contains 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: "1.0.0" | |
title: CORS demo | |
description: Demonstrating reusing an operation definition for multiple paths | |
definitions: | |
CORS: | |
summary: CORS Preflight request | |
tags: [CORS] | |
responses: | |
200: | |
description: Returns the CORS response headers | |
headers: | |
Access-Control-Allow-Origin: | |
type: string | |
Access-Control-Allow-Credentials: | |
type: boolean | |
Access-Control-Allow-Headers: | |
type: array | |
collectionFormat: csv | |
Access-Control-Allow-Methods: | |
type: array | |
collectionFormat: csv | |
Access-Control-Max-Age: | |
type: integer | |
paths: | |
/accounts: | |
options: | |
$ref: CORS | |
/products: | |
options: | |
$ref: CORS | |
/settings: | |
options: | |
$ref: CORS |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment