You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
646 B
31 lines
646 B
openapi: 3.0.0
|
|
info:
|
|
title: 'Testing annotations from bugreports'
|
|
version: 1.0.0
|
|
servers:
|
|
-
|
|
url: '{schema}://host.dev'
|
|
description: 'OpenApi parameters'
|
|
variables:
|
|
schema:
|
|
enum:
|
|
- https
|
|
- http
|
|
default: https
|
|
paths:
|
|
/api/endpoint:
|
|
get:
|
|
parameters:
|
|
-
|
|
name: filter
|
|
in: query
|
|
content:
|
|
application/json:
|
|
schema:
|
|
properties:
|
|
type: { type: string }
|
|
color: { type: string }
|
|
type: object
|
|
responses:
|
|
'200':
|
|
description: Success
|
|
|