diff options
Diffstat (limited to 'src/server/api/openapi')
| -rw-r--r-- | src/server/api/openapi/schemas.ts | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/server/api/openapi/schemas.ts b/src/server/api/openapi/schemas.ts index 4f63c7aefd..cca789bf7a 100644 --- a/src/server/api/openapi/schemas.ts +++ b/src/server/api/openapi/schemas.ts @@ -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: { |