Variable: TopicObjectSchema
const TopicObjectSchema: ZodObject<{
topic_name: ZodString;
topic_id: ZodString;
revision: ZodNumber;
severity: ZodOptional<ZodString>;
}, "passthrough", ZodTypeAny, objectOutputType<{
topic_name: ZodString;
topic_id: ZodString;
revision: ZodNumber;
severity: ZodOptional<ZodString>;
}, ZodTypeAny, "passthrough">, objectInputType<{
topic_name: ZodString;
topic_id: ZodString;
revision: ZodNumber;
severity: ZodOptional<ZodString>;
}, ZodTypeAny, "passthrough">>;
Defined in: src/models/mgmt-security-profile.ts:134
Zod schema for a topic object within a topic guardrail.