Variable FIXED_WINDOW_FEED_INPUT_SCHEMAConst
FIXED_WINDOW_FEED_INPUT_SCHEMA: {
properties: {
limit: {
description: string;
maximum: number;
minimum: number;
type: string;
};
offset: { description: string; minimum: number; type: string };
startDate: { description: string; type: string };
timeframe: { description: string; enum: string[]; type: string };
};
type: "object";
} = ...
Type Declaration
properties: {
limit: {
description: string;
maximum: number;
minimum: number;
type: string;
};
offset: { description: string; minimum: number; type: string };
startDate: { description: string; type: string };
timeframe: { description: string; enum: string[]; type: string };
}
type: "object"
Shared MCP
tools/listinputSchema for fixed-window feed tools (Group A:get_documents_feed,get_plenary_documents_feed, etc.).The underlying EP API endpoints do not accept
timeframe/startDate/limit/offsetand always serve a server-defined default window (typically one month). For contract uniformity with the sliding-window feed tools (Group B), this schema still advertises those parameters — they are accepted by the Zod validator but silently ignored at the upstream call site. SeeFixedWindowFeedSchemainsrc/schemas/ep/feed.ts.