ntcore-ts-client
    Preparing search index...

    Variable topicSchemaConst

    topicSchema: ZodObject<
        {
            id: ZodNumber;
            name: ZodString;
            properties: ZodObject<
                {
                    cached: ZodOptional<ZodBoolean>;
                    persistent: ZodOptional<ZodBoolean>;
                    retained: ZodOptional<ZodBoolean>;
                },
                "strip",
                ZodTypeAny,
                { cached?: boolean; persistent?: boolean; retained?: boolean },
                { cached?: boolean; persistent?: boolean; retained?: boolean },
            >;
            type: ZodUnion<
                [
                    ZodLiteral<"boolean">,
                    ZodLiteral<"double">,
                    ZodLiteral<"int">,
                    ZodLiteral<"float">,
                    ZodLiteral<"string">,
                    ZodLiteral<"json">,
                    ZodLiteral<"raw">,
                ],
            >;
        },
        "strip",
        ZodTypeAny,
        {
            id: number;
            name: string;
            properties: { cached?: boolean; persistent?: boolean; retained?: boolean };
            type:
                | "string"
                | "boolean"
                | "float"
                | "double"
                | "int"
                | "json"
                | "raw"
                | "rpc"
                | "msgpack"
                | "protobuf"
                | "boolean[]"
                | "double[]"
                | "int[]"
                | "float[]"
                | "string[]";
        },
        {
            id: number;
            name: string;
            properties: { cached?: boolean; persistent?: boolean; retained?: boolean };
            type:
                | "string"
                | "boolean"
                | "float"
                | "double"
                | "int"
                | "json"
                | "raw"
                | "rpc"
                | "msgpack"
                | "protobuf"
                | "boolean[]"
                | "double[]"
                | "int[]"
                | "float[]"
                | "string[]";
        },
    > = ...

    Schema for a topic in the NT protocol.