Variable PredictionPayloadSchemaConst

PredictionPayloadSchema: ZodObject<{
    useCase: ZodObject<{
        uuid: ZodString;
    }, $strip>;
    context: ZodRecord<ZodString, ZodString>;
    actions: ZodArray<ZodRecord<ZodString, ZodString>>;
    no_trace: ZodOptional<ZodBoolean>;
}, $strip> = ...

zod schema for prediction payload validation

validates prediction request structure. ensures useCase uuid is non-empty and actions array is provided. automatically validated when calling ranking().