123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- {
- "swagger": "2.0",
- "info": {
- "title": "go-common api",
- "description": "api",
- "version": "1.0",
- "contact": {
- "email": "lintanghui@bilibili.com"
- },
- "license": {
- "name": "Apache 2.0",
- "url": "http://www.apache.org/licenses/LICENSE-2.0.html"
- }
- },
- "paths": {
- "/x/riot-search/fav/aids": {
- "get": {
- "operationId": "/x/riot-search/fav/aids",
- "parameters": [
- {
- "in": "query",
- "name": "ids",
- "description": "数组,按逗号分隔",
- "type": "array"
- },
- {
- "in": "query",
- "name": "keyword",
- "required": true,
- "type": "string"
- },
- {
- "in": "query",
- "name": "pn",
- "description": " 最小值 1",
- "type": "integer",
- "format": "int64"
- },
- {
- "in": "query",
- "name": "ps",
- "description": " 最小值 0",
- "type": "integer",
- "format": "int64"
- }
- ],
- "responses": {
- "200": {
- "description": "服务成功响应内容",
- "schema": {
- "type": "object",
- "properties": {
- "code": {
- "description": "错误码描述",
- "type": "integer"
- },
- "data": {
- "$ref": "#/definitions/IDsResp",
- "type": "object"
- },
- "message": {
- "description": "错误码文本描述",
- "type": "string"
- },
- "ttl": {
- "description": "客户端限速时间",
- "type": "integer",
- "format": "int64"
- }
- }
- }
- }
- }
- }
- },
- "/x/riot-search/fav/contents": {
- "get": {
- "operationId": "/x/riot-search/fav/contents",
- "parameters": [
- {
- "in": "query",
- "name": "pn",
- "description": " 最小值 1",
- "type": "integer",
- "format": "int64"
- },
- {
- "in": "query",
- "name": "ps",
- "description": " 最小值 0",
- "type": "integer",
- "format": "int64"
- },
- {
- "in": "query",
- "name": "ids",
- "description": "数组,按逗号分隔",
- "type": "array"
- },
- {
- "in": "query",
- "name": "keyword",
- "required": true,
- "type": "string"
- }
- ],
- "responses": {
- "200": {
- "description": "服务成功响应内容",
- "schema": {
- "type": "object",
- "properties": {
- "code": {
- "description": "错误码描述",
- "type": "integer"
- },
- "data": {
- "$ref": "#/definitions/DocumentsResp",
- "type": "object"
- },
- "message": {
- "description": "错误码文本描述",
- "type": "string"
- },
- "ttl": {
- "description": "客户端限速时间",
- "type": "integer",
- "format": "int64"
- }
- }
- }
- }
- }
- }
- }
- },
- "definitions": {
- "Document": {
- "title": "Document",
- "description": "Document id and content",
- "type": "object",
- "properties": {
- "Content": {
- "type": "string"
- },
- "ID": {
- "type": "integer",
- "format": "int64"
- }
- }
- },
- "DocumentsResp": {
- "title": "DocumentsResp",
- "description": "DocumentsResp resp of documents",
- "type": "object",
- "properties": {
- "Documents": {
- "type": "array",
- "items": {
- "$ref": "#/definitions/Document",
- "type": "object"
- }
- },
- "Page": {
- "$ref": "#/definitions/Page",
- "type": "object"
- },
- "Tokens": {
- "type": "array",
- "items": {
- "type": "string"
- }
- }
- }
- },
- "IDsResp": {
- "title": "IDsResp",
- "description": "IDsResp resp of ids",
- "type": "object",
- "properties": {
- "IDs": {
- "type": "array",
- "items": {
- "type": "integer",
- "format": "int64"
- }
- },
- "Page": {
- "$ref": "#/definitions/Page",
- "type": "object"
- },
- "Tokens": {
- "type": "array",
- "items": {
- "type": "string"
- }
- }
- }
- },
- "Page": {
- "title": "Page",
- "description": "Page Pager",
- "type": "object",
- "properties": {
- "PageNum": {
- "type": "integer",
- "format": "int64"
- },
- "PageSize": {
- "type": "integer",
- "format": "int64"
- },
- "Total": {
- "type": "integer",
- "format": "int64"
- }
- }
- }
- }
- }
|