fix(backend): `alsoKnownAs`の誤った定義を修正 (#10725)

This commit is contained in:
okayurisotto 2023-04-29 19:24:33 +09:00 committed by GitHub
parent 8fb5457c01
commit e2d9c0efe2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -80,9 +80,14 @@ export const packedUserDetailedNotMeOnlySchema = {
},
alsoKnownAs: {
type: 'array',
format: 'uri',
nullable: true,
optional: false,
items: {
type: 'string',
format: 'uri',
nullable: false,
optional: false,
},
},
createdAt: {
type: 'string',