tachybase_todo/packages/plugins/@nocobase/plugin-api-doc/src/server/swagger/base-swagger.ts

47 lines
917 B
TypeScript

export default {
openapi: '3.0.3',
info: {
title: 'TachyBase API documentation',
description: '',
contact: {
url: 'https://github.com/tachybase/tachybase/issues',
},
license: {
name: 'All packages are Apache 2.0 licensed.',
url: 'https://github.com/tachybase/tachybase#license',
},
},
components: {
securitySchemes: {
'api-key': {
type: 'http',
scheme: 'bearer',
},
},
schemas: {
error: {
type: 'object',
properties: {
errors: {
type: 'array',
items: {
type: 'object',
properties: {
message: {
description: '错误信息',
type: 'string',
},
},
},
},
},
},
},
},
security: [
{
'api-key': [],
},
],
};