1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
swagger: '2.0'
info:
title: 'Title'
version: '1.0'
paths:
'/':
get:
responses:
200:
description: OK response
schema:
$ref: '#/definitions/Response'
post:
parameters:
- in: body
schema:
$ref: '#/definitions/Request'
name: filter
responses:
200:
description: OK response
schema:
$ref: '#/definitions/Response'
definitions:
Response:
type: object
properties:
Server:
type: array
items:
$ref: 'definitions-3.yaml#/definitions/Server'
Request:
type: object
properties:
ServerStatus:
$ref: 'definitions-3.yaml#/definitions/ServerStatus'
|