Skip to content

Instantly share code, notes, and snippets.

@JamesMessinger
Created October 21, 2014 03:30
Show Gist options
  • Save JamesMessinger/cd7bacbd72c59a764c7f to your computer and use it in GitHub Desktop.
Save JamesMessinger/cd7bacbd72c59a764c7f to your computer and use it in GitHub Desktop.
Demonstrating reusing a Swagger operation definition for multiple paths
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