Improve doc

This commit is contained in:
syuilo
2019-02-25 03:35:45 +09:00
parent 77676d18c8
commit 495aad6a2d
3 changed files with 34 additions and 1 deletions

View File

@@ -97,6 +97,28 @@ export const schemas = {
required: ['id', 'name', 'username', 'createdAt']
},
UserList: {
type: 'object',
properties: {
id: {
type: 'string',
format: 'id',
description: 'The unique identifier for this UserList.',
example: 'xxxxxxxxxxxxxxxxxxxxxxxx',
},
createdAt: {
type: 'string',
format: 'date-time',
description: 'The date that the UserList was created.'
},
title: {
type: 'string',
description: 'The name of the UserList.'
},
},
required: ['id', 'createdAt', 'title']
},
Note: {
type: 'object',
properties: {