export type UserSchemaFieldType = | "text" | "number" | "boolean" | "date" | "float" | "datetime"; export type UserSchemaField = { key: string; label?: string; type?: UserSchemaFieldType; required?: boolean; adminOnly?: boolean; validation?: string; isLoginId?: boolean; indexed?: boolean; };