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.
96 lines
2.5 KiB
96 lines
2.5 KiB
5 years ago
|
{
|
||
|
"swagger": "2.0",
|
||
|
"info": {
|
||
|
"title": "api.proto",
|
||
|
"version": ""
|
||
|
},
|
||
|
"schemes": [
|
||
|
"http",
|
||
|
"https"
|
||
|
],
|
||
|
"consumes": [
|
||
|
"application/json",
|
||
|
"multipart/form-data"
|
||
|
],
|
||
|
"produces": [
|
||
|
"application/json"
|
||
|
],
|
||
|
"paths": {
|
||
|
"/user.api.User/Info": {
|
||
|
"get": {
|
||
|
"summary": "/user.api.User/Info",
|
||
|
"responses": {
|
||
|
"200": {
|
||
|
"description": "A successful response.",
|
||
|
"schema": {
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"code": {
|
||
|
"type": "integer"
|
||
|
},
|
||
|
"message": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"data": {
|
||
|
"$ref": "#/definitions/.user.api.InfoReply"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"parameters": [
|
||
|
{
|
||
|
"name": "mid",
|
||
|
"in": "query",
|
||
|
"required": true,
|
||
|
"type": "integer"
|
||
|
}
|
||
|
],
|
||
|
"tags": [
|
||
|
"user.api.User"
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"definitions": {
|
||
|
".user.api.Info": {
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"mid": {
|
||
|
"type": "integer"
|
||
|
},
|
||
|
"name": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"sex": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"face": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"sign": {
|
||
|
"type": "string"
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
".user.api.InfoReply": {
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"info": {
|
||
|
"$ref": "#/definitions/.user.api.Info"
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
".user.api.UserReq": {
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"mid": {
|
||
|
"type": "integer"
|
||
|
}
|
||
|
},
|
||
|
"required": [
|
||
|
"mid"
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
}
|