mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
33 lines
504 B
TypeScript
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;
|