Files
reflector/www/app/api/schemas/$UserInfo.ts

33 lines
504 B
TypeScript

export const $UserInfo = {
properties: {
sub: {
type: "string",
isRequired: true,
},
email: {
type: "any-of",
contains: [
{
type: "string",
},
{
type: "null",
},
],
isRequired: true,
},
email_verified: {
type: "any-of",
contains: [
{
type: "boolean",
},
{
type: "null",
},
],
isRequired: true,
},
},
} as const;