Variable: FoundUsersSchema
ts
const FoundUsersSchema: ZodObject<{
header: ZodOptional<ZodString>;
total: ZodOptional<ZodNumber>;
users: ZodOptional<ZodArray<ZodObject<{
accountId: ZodOptional<ZodString>;
accountType: ZodOptional<ZodCustom<"unknown" | string & object | "atlassian" | "app" | "customer", "unknown" | string & object | "atlassian" | "app" | "customer">>;
avatarUrl: ZodOptional<ZodURL>;
displayName: ZodOptional<ZodString>;
html: ZodOptional<ZodString>;
}, $loose>>>;
}, $loose>;Defined in: src/cloud/models/foundUsers.ts:9
The list of users found in a search, including header text (Showing X of Y matching users) and total of matched users.