Skip to main content

Variable: GatewayChartRecordSchema

const GatewayChartRecordSchema: ZodObject<{
x: ZodString;
y: ZodNumber;
avg: ZodOptional<ZodNumber>;
}, "passthrough", ZodTypeAny, objectOutputType<{
x: ZodString;
y: ZodNumber;
avg: ZodOptional<ZodNumber>;
}, ZodTypeAny, "passthrough">, objectInputType<{
x: ZodString;
y: ZodNumber;
avg: ZodOptional<ZodNumber>;
}, ZodTypeAny, "passthrough">>;

Defined in: src/models/ai-gateway.ts:102

A {x, y} time-bucket, optionally carrying a bucket average.