Variable trajectorySchemaConst
trajectorySchema: ZodObject<
{
created_at: ZodOptional<ZodString>;
file: ZodOptional<ZodString>;
id: ZodString;
messages: ZodOptional<
ZodArray<
ZodRecord<ZodString, ZodType<{} | null, ZodTypeDef, {} | null>>,
"many",
>,
>;
org: ZodOptional<ZodNullable<ZodString>>;
sandbox: ZodOptional<ZodNullable<ZodString>>;
team: ZodOptional<ZodNullable<ZodString>>;
updated_at: ZodOptional<ZodString>;
},
"strip",
ZodTypeAny,
{
created_at?: string;
file?: string;
id: string;
messages?: Record<string, {} | null>[];
org?: string | null;
sandbox?: string | null;
team?: string | null;
updated_at?: string;
},
{
created_at?: string;
file?: string;
id: string;
messages?: Record<string, {} | null>[];
org?: string | null;
sandbox?: string | null;
team?: string | null;
updated_at?: string;
},
> = ...
Runtime validator for Trajectory.