Variable sandboxKeySchemaConst
sandboxKeySchema: ZodObject<
{
created_at: ZodOptional<ZodString>;
expires_at: ZodOptional<ZodNullable<ZodString>>;
full_key: ZodOptional<ZodString>;
id: ZodString;
key_hint: ZodOptional<ZodNullable<ZodString>>;
key_value: ZodOptional<ZodNullable<ZodString>>;
last_used_at: ZodOptional<ZodNullable<ZodString>>;
status: ZodString;
type: ZodString;
},
"strip",
ZodTypeAny,
{
created_at?: string;
expires_at?: string
| null;
full_key?: string;
id: string;
key_hint?: string | null;
key_value?: string | null;
last_used_at?: string | null;
status: string;
type: string;
},
{
created_at?: string;
expires_at?: string
| null;
full_key?: string;
id: string;
key_hint?: string | null;
key_value?: string | null;
last_used_at?: string | null;
status: string;
type: string;
},
> = ...
Runtime validator for SandboxKey.