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