Variable topicPropertiesSchemaConst

topicPropertiesSchema: ZodObject<
    {
        cached: ZodOptional<ZodBoolean>;
        persistent: ZodOptional<ZodBoolean>;
        retained: ZodOptional<ZodBoolean>;
    },
    "strip",
    { cached?: boolean; persistent?: boolean; retained?: boolean },
    { cached?: boolean; persistent?: boolean; retained?: boolean },
> = ...

Schema for topic properties in the NT protocol.