| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- {
- "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": {
- "mediaType": "application/json",
- "schema": {
- "type": "object",
- "properties": {
- "type": {
- "type": "string"
- },
- "color": {
- "type": "string"
- }
- }
- }
- }
- }
- }
- ],
- "responses": {
- "200": {
- "description": "Success"
- }
- }
- }
- }
- }
- }
|