Variable MJAIAgentModalitySchemaConst
MJAIAgentModalitySchema: ZodObject<
{
__mj_CreatedAt: ZodDate;
__mj_UpdatedAt: ZodDate;
Agent: ZodNullable<ZodString>;
AgentID: ZodString;
Direction: ZodUnion<[ZodLiteral<"Input">, ZodLiteral<"Output">]>;
ID: ZodString;
IsAllowed: ZodBoolean;
MaxCountPerMessage: ZodNullable<ZodNumber>;
MaxSizeBytes: ZodNullable<ZodNumber>;
Modality: ZodString;
ModalityID: ZodString;
},
"strip",
ZodTypeAny,
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
Agent?: string;
AgentID?: string;
Direction?: "Input"
| "Output";
ID?: string;
IsAllowed?: boolean;
MaxCountPerMessage?: number;
MaxSizeBytes?: number;
Modality?: string;
ModalityID?: string;
},
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
Agent?: string;
AgentID?: string;
Direction?: "Input"
| "Output";
ID?: string;
IsAllowed?: boolean;
MaxCountPerMessage?: number;
MaxSizeBytes?: number;
Modality?: string;
ModalityID?: string;
},
> = ...
zod schema definition for the entity MJ: AI Agent Modalities