{ "openapi": "3.0.1", "info": { "title": "ordbok-cache", "version": "2020-02-17T12:44:25Z" }, "servers": [ { "url": "/api" } ], "paths": { "/article/{dict_id}/{art_id}": { "get": { "parameters": [ { "name": "dict_id", "in": "path", "required": true, "schema": { "type": "string" } }, { "name": "art_id", "in": "path", "required": true, "schema": { "type": "string" } } ], "security": [ { "api_key": [] } ], "responses": { "200": { "description": "bla bla", "content": { "application/json": { "schema": { "type": "object" } } } } } } }, "/article/{dict_id}/search": { "get": { "parameters": [ { "name": "dict_id", "in": "path", "required": true, "schema": { "type": "string" } }, { "name": "q", "in": "query", "required": true, "schema": { "type": "string" } } ], "security": [ { "api_key": [] } ], "responses": { "200": { "description": "bla bla", "content": { "application/json": { "schema": { "type": "object" } } } } } } }, "/article/{dict_id}/suggest": { "get": { "parameters": [ { "name": "dict_id", "in": "path", "required": true, "schema": { "type": "string" } }, { "name": "q", "in": "query", "required": true, "schema": { "type": "string" } } ], "security": [ { "api_key": [] } ], "responses": { "200": { "description": "bla bla", "content": { "application/json": { "schema": { "type": "object" } } } } } } } }, "components": { "schemas": { }, "securitySchemes": { "api_key": { "type": "apiKey", "name": "x-api-key", "in": "header" } } } }