{ "openapi": "3.0.1", "info": { "title": "ordbok-cache", "version": "2020-02-17T12:44:25Z" }, "servers": [], "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": [] } ] } }, "/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": [] } ] } }, "/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": [] } ] } } }, "components": { "schemas": { "Empty": { "title": "Empty Schema", "type": "object" } }, "securitySchemes": { "api_key": { "type": "apiKey", "name": "x-api-key", "in": "header" } } } }