1 Star 3 Fork 0

BlockShip / Kratos-Blog

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
openapi.yaml 5.35 KB
一键复制 编辑 原始数据 按行查看 历史
BlockShip 提交于 2024-03-08 16:28 . 添加网关
# Generated with protoc-gen-openapi
# https://github.com/google/gnostic/tree/master/cmd/protoc-gen-openapi
openapi: 3.0.3
info:
title: TagService API
version: 0.0.1
paths:
/api/addTag:
post:
tags:
- TagService
operationId: TagService_CreateTag
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CreateTagRequest'
required: true
responses:
"200":
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/CreateTagReply'
default:
description: Default error response
content:
application/json:
schema:
$ref: '#/components/schemas/Status'
/api/deleteTag/{id}:
delete:
tags:
- TagService
operationId: TagService_DeleteTag
parameters:
- name: id
in: path
required: true
schema:
type: integer
format: uint32
responses:
"200":
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/DeleteTagReply'
default:
description: Default error response
content:
application/json:
schema:
$ref: '#/components/schemas/Status'
/api/getAllTag:
get:
tags:
- TagService
operationId: TagService_ListTag
responses:
"200":
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/ListTagReply'
default:
description: Default error response
content:
application/json:
schema:
$ref: '#/components/schemas/Status'
components:
schemas:
CommonReply:
type: object
properties:
code:
type: string
result:
type: string
CreateTagReply:
type: object
properties:
common:
$ref: '#/components/schemas/CommonReply'
CreateTagRequest:
type: object
properties:
data:
$ref: '#/components/schemas/TagData'
DeleteTagReply:
type: object
properties:
common:
$ref: '#/components/schemas/CommonReply'
GoogleProtobufAny:
type: object
properties:
'@type':
type: string
description: The type of the serialized message.
additionalProperties: true
description: Contains an arbitrary serialized message along with a @type that describes the type of the serialized message.
ListTagReply:
type: object
properties:
common:
$ref: '#/components/schemas/CommonReply'
data:
type: array
items:
$ref: '#/components/schemas/TagData'
Status:
type: object
properties:
code:
type: integer
description: The status code, which should be an enum value of [google.rpc.Code][google.rpc.Code].
format: int32
message:
type: string
description: A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the [google.rpc.Status.details][google.rpc.Status.details] field, or localized by the client.
details:
type: array
items:
$ref: '#/components/schemas/GoogleProtobufAny'
description: A list of messages that carry the error details. There is a common set of message types for APIs to use.
description: 'The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors).'
TagData:
type: object
properties:
id:
type: integer
format: uint32
tagName:
type: string
tags:
- name: TagService
Go
1
https://gitee.com/morning-ljn/kratos-blog.git
git@gitee.com:morning-ljn/kratos-blog.git
morning-ljn
kratos-blog
Kratos-Blog
master

搜索帮助